From bc74425872704ad955b37de18639ec831a245761 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 28 Jul 2016 16:02:51 -0700 Subject: Revert "Merge branch '1.10RC' of https://github.com/redmatrix/hubzilla into 1.10RC_merge" This reverts commit 35f17acb388f68745068d6a60e12c7b777b92282, reversing changes made to 58cf5f310d89026fb526e201c301075725044e48. --- Zotlabs/Access/PermissionLimits.php | 36 - Zotlabs/Access/PermissionRoles.php | 215 - Zotlabs/Access/Permissions.php | 116 - Zotlabs/Daemon/Onepoll.php | 4 +- Zotlabs/Lib/AbConfig.php | 2 +- Zotlabs/Lib/Cache.php | 5 - Zotlabs/Lib/PConfig.php | 17 +- Zotlabs/Lib/PermissionDescription.php | 17 +- Zotlabs/Module/Acl.php | 54 +- Zotlabs/Module/Connedit.php | 89 +- Zotlabs/Module/Editpost.php | 4 +- Zotlabs/Module/Editwebpage.php | 4 +- Zotlabs/Module/File_upload.php | 40 - Zotlabs/Module/Follow.php | 5 +- Zotlabs/Module/Id.php | 319 + Zotlabs/Module/Import.php | 9 - Zotlabs/Module/Item.php | 12 +- Zotlabs/Module/Like.php | 31 +- Zotlabs/Module/Mail.php | 12 +- Zotlabs/Module/Manage.php | 4 +- Zotlabs/Module/Openid.php | 198 + Zotlabs/Module/Probe.php | 2 + Zotlabs/Module/Profiles.php | 4 +- Zotlabs/Module/Ratingsearch.php | 4 +- Zotlabs/Module/Rmagic.php | 13 + Zotlabs/Module/Settings.php | 58 +- Zotlabs/Storage/BasicAuth.php | 2 +- Zotlabs/Storage/Browser.php | 24 +- Zotlabs/Web/Router.php | 1 - Zotlabs/Web/WebServer.php | 2 +- boot.php | 71 +- include/api.php | 110 +- include/api_auth.php | 2 - include/attach.php | 1 - include/channel.php | 107 +- include/config.php | 1 + include/connections.php | 10 +- include/conversation.php | 6 +- include/follow.php | 48 +- include/import.php | 45 +- include/items.php | 39 +- include/oembed.php | 11 - include/perm_upgrade.php | 236 - include/permissions.php | 519 +- include/photos.php | 2 +- include/security.php | 41 +- include/text.php | 49 +- include/widgets.php | 11 +- include/zot.php | 192 +- install/schema_mysql.sql | 1 - install/schema_postgres.sql | 1 - install/update.php | 29 +- library/readmore.js/README.md | 22 +- .../hubzilla-custom-fix-webkit-browsers.patch | 13 - library/readmore.js/readmore.js | 28 +- util/hmessages.po | 3470 +++-- util/po2php.php | 4 +- vendor/sabre/dav/lib/DAV/Browser/Plugin.php | 6 +- view/ca/hmessages.po | 13904 +++++++++--------- view/ca/hstrings.php | 2082 ++- view/css/conversation.css | 6 - view/css/mod_cloud.css | 6 - view/de/hmessages.po | 13894 +++++++++--------- view/de/hstrings.php | 2080 ++- view/es-es/hmessages.po | 13906 +++++++++---------- view/es-es/hstrings.php | 2080 ++- view/fr/hmessages.po | 13862 +++++++++--------- view/fr/hstrings.php | 2078 ++- view/it/hmessages.po | 12230 ++++++++-------- view/it/hstrings.php | 2148 ++- view/js/main.js | 4 +- view/js/mod_cloud.js | 190 - view/nb-no/hmessages.po | 12244 ++++++++-------- view/nb-no/hstrings.php | 2058 ++- view/nl/hmessages.po | 13898 +++++++++--------- view/nl/hstrings.php | 2078 ++- view/theme/redbasic/css/style.css | 3 +- view/tpl/cloud_actionspanel.tpl | 32 +- view/tpl/cloud_directory.tpl | 2 +- view/tpl/jot-header.tpl | 82 +- 80 files changed, 56386 insertions(+), 58859 deletions(-) delete mode 100644 Zotlabs/Access/PermissionLimits.php delete mode 100644 Zotlabs/Access/PermissionRoles.php delete mode 100644 Zotlabs/Access/Permissions.php delete mode 100644 Zotlabs/Module/File_upload.php create mode 100644 Zotlabs/Module/Id.php create mode 100644 Zotlabs/Module/Openid.php delete mode 100644 include/perm_upgrade.php delete mode 100644 library/readmore.js/hubzilla-custom-fix-webkit-browsers.patch delete mode 100644 view/js/mod_cloud.js 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 @@ - $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 @@ - [ - '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 @@ - 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/Acl.php b/Zotlabs/Module/Acl.php index 03dc6c5d3..76a001fdd 100644 --- a/Zotlabs/Module/Acl.php +++ b/Zotlabs/Module/Acl.php @@ -58,23 +58,7 @@ class Acl extends \Zotlabs\Web\Controller { if( (! local_channel()) && (! ($type == 'x' || $type == 'c'))) killme(); - - $permitted = []; - - if(in_array($type, [ 'm', 'a', 'c' ])) { - - // These queries require permission checking. We'll create a simple array of xchan_hash for those with - // the requisite permissions which we can check against. - - $x = q("select xchan from abconfig where chan = %d and cat = 'their_perms' and k = '%s' and v = 1", - intval(local_channel()), - dbesc(($type === 'm') ? 'post_mail' : 'tag_deliver') - ); - - $permitted = ids_to_array($x,'xchan'); - } - - + if($search) { $sql_extra = " AND `name` LIKE " . protect_sprintf( "'%" . dbesc($search) . "%'" ) . " "; $sql_extra2 = "AND ( xchan_name LIKE " . protect_sprintf( "'%" . dbesc($search) . "%'" ) . " OR xchan_addr LIKE " . protect_sprintf( "'%" . dbesc($search) . ((strpos($search,'@') === false) ? "%@%'" : "%'")) . ") "; @@ -103,13 +87,13 @@ class Acl extends \Zotlabs\Web\Controller { if($type == '' || $type == 'g') { - $r = q("SELECT groups.id, groups.hash, groups.gname - FROM groups,group_member - WHERE groups.deleted = 0 AND groups.uid = %d - AND group_member.gid=groups.id + $r = q("SELECT `groups`.`id`, `groups`.`hash`, `groups`.`gname` + FROM `groups`,`group_member` + WHERE `groups`.`deleted` = 0 AND `groups`.`uid` = %d + AND `group_member`.`gid`=`groups`.`id` $sql_extra - GROUP BY groups.id - ORDER BY groups.gname + GROUP BY `groups`.`id` + ORDER BY `groups`.`gname` LIMIT %d OFFSET %d", intval(local_channel()), intval($count), @@ -172,7 +156,7 @@ class Acl extends \Zotlabs\Web\Controller { } - $r = q("SELECT abook_id as id, xchan_hash as hash, xchan_name as name, xchan_photo_s as micro, xchan_url as url, xchan_addr as nick, abook_their_perms, xchan_pubforum, abook_flags, abook_self + $r = q("SELECT abook_id as id, xchan_hash as hash, xchan_name as name, xchan_photo_s as micro, xchan_url as url, xchan_addr as nick, abook_their_perms, abook_flags, abook_self FROM abook left join xchan on abook_xchan = xchan_hash WHERE (abook_channel = %d $extra_channels_sql) AND abook_blocked = 0 and abook_pending = 0 and xchan_deleted = 0 $sql_extra2 order by $order_extra2 xchan_name asc" , intval(local_channel()) @@ -237,24 +221,16 @@ class Acl extends \Zotlabs\Web\Controller { } } elseif($type == 'm') { - - $r = array(); - $z = q("SELECT xchan_hash as hash, xchan_name as name, xchan_addr as nick, xchan_photo_s as micro, xchan_url as url + + $r = q("SELECT xchan_hash as hash, xchan_name as name, xchan_addr as nick, xchan_photo_s as micro, xchan_url as url FROM abook left join xchan on abook_xchan = xchan_hash - WHERE abook_channel = %d + WHERE abook_channel = %d and ( (abook_their_perms = null) or (abook_their_perms & %d )>0) and xchan_deleted = 0 $sql_extra3 - ORDER BY xchan_name ASC ", - intval(local_channel()) + ORDER BY `xchan_name` ASC ", + intval(local_channel()), + intval(PERMS_W_MAIL) ); - if($z) { - foreach($z as $zz) { - if(in_array($zz['id'],$permitted)) { - $r[] = $zz; - } - } - } - } elseif($type == 'a') { @@ -298,7 +274,7 @@ class Acl extends \Zotlabs\Web\Controller { if(strpos($g['hash'],'/') && $type != 'a') continue; - if(in_array($g['hash'],$permitted) && $type == 'c' && (! $noforums)) { + if(($g['abook_their_perms'] & PERMS_W_TAGWALL) && $type == 'c' && (! $noforums)) { $contacts[] = array( "type" => "c", "photo" => "images/twopeople.png", diff --git a/Zotlabs/Module/Connedit.php b/Zotlabs/Module/Connedit.php index 93ee30999..7db4950b1 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; if(! $is_self) { @@ -209,25 +194,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), @@ -248,13 +227,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) { @@ -395,9 +371,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')); @@ -678,8 +654,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'))); @@ -695,32 +670,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 a55f81101..be4803a07 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/File_upload.php b/Zotlabs/Module/File_upload.php deleted file mode 100644 index 999b241f1..000000000 --- a/Zotlabs/Module/File_upload.php +++ /dev/null @@ -1,40 +0,0 @@ - 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 @@ + 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) { + * ?> + *
+ * + * Login:
+ * Password:
+ * + *
+ * '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 .= '
' + . '' + . '' + . '' + . "$realm wishes to authenticate you."; + if($attributes['required'] || $attributes['optional']) { + $o .= " It also requests following information (required fields marked with *):" + . ''; + } + $o .= '
' + . ' ' + . ' ' + . ' ' + . '
'; + + \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 170349509..1ca37d646 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 @@ +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 .= '
';
 			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']) 
-							? '' . translate_scope(map_scope(\Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_profile'))) . '' 
+							? '' . translate_scope(map_scope($channel['channel_r_profile'])) . '' 
 							: '' . t('Edit visibility') . '')
 					));
 				}
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..26b0c46a6 100644
--- a/Zotlabs/Module/Rmagic.php
+++ b/Zotlabs/Module/Rmagic.php
@@ -2,6 +2,7 @@
 namespace Zotlabs\Module;
 
 
+
 class Rmagic extends \Zotlabs\Web\Controller {
 
 	function init() {
@@ -31,6 +32,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.').'

'. t('The error message was:').' '.$e->getMessage()); + } + // if they're still here... notice( t('Authentication failed.') . EOL); return; diff --git a/Zotlabs/Module/Settings.php b/Zotlabs/Module/Settings.php index af3a25c60..b1258e049 100644 --- a/Zotlabs/Module/Settings.php +++ b/Zotlabs/Module/Settings.php @@ -21,7 +21,10 @@ class Settings extends \Zotlabs\Web\Controller { // We are setting these values - don't use the argc(), argv() functions here \App::$argc = 2; \App::$argv[] = 'channel'; - } + } + + + } @@ -35,7 +38,7 @@ class Settings extends \Zotlabs\Web\Controller { $channel = \App::get_channel(); - // logger('mod_settings: ' . print_r($_REQUEST,true)); + logger('mod_settings: ' . print_r($_REQUEST,true)); if((argc() > 1) && (argv(1) === 'oauth') && x($_POST,'remove')){ @@ -360,10 +363,10 @@ class Settings extends \Zotlabs\Web\Controller { intval(local_channel()) ); - $global_perms = \Zotlabs\Access\Permissions::Perms(); + $global_perms = get_perms(); foreach($global_perms as $k => $v) { - \Zotlabs\Access\PermissionLimits::Set(local_channel(),$k,intval($_POST[$k])); + $set_perms .= ', ' . $v[0] . ' = ' . intval($_POST[$k]) . ' '; } $acl = new \Zotlabs\Access\AccessList($channel); $acl->set_from_array($_POST); @@ -379,7 +382,7 @@ class Settings extends \Zotlabs\Web\Controller { ); } else { - $role_permissions = \Zotlabs\Access\PermissionRoles::role_perms($_POST['permissions_role']); + $role_permissions = get_role_perms($_POST['permissions_role']); if(! $role_permissions) { notice('Permissions category could not be found.'); return; @@ -419,25 +422,20 @@ class Settings extends \Zotlabs\Web\Controller { ); } - $x = \Zotlabs\Access\Permissions::FilledPerms($role_permissions['perms_connect']); - foreach($x as $k => $v) { - set_abconfig(local_channel(),$channel['channel_hash'],'my_perms',$k, $v); - if($role_permissions['perms_auto']) { - set_pconfig(local_channel(),'autoperms',$k,$v); - } - else { - del_pconfig(local_channel(),'autoperms',$k); + $r = q("update abook set abook_my_perms = %d where abook_channel = %d and abook_self = 1", + intval((array_key_exists('perms_accept',$role_permissions)) ? $role_permissions['perms_accept'] : 0), + intval(local_channel()) + ); + set_pconfig(local_channel(),'system','autoperms',(($role_permissions['perms_auto']) ? intval($role_permissions['perms_accept']) : 0)); + + foreach($role_permissions as $p => $v) { + if(strpos($p,'channel_') !== false) { + $set_perms .= ', ' . $p . ' = ' . intval($v) . ' '; } - } - - if($role_permissions['limits']) { - foreach($role_permissions['limits'] as $k => $v) { - \Zotlabs\Access\PermissionLimits::Set(local_channel(),$k,$v); + if($p === 'directory_publish') { + $publish = intval($v); } } - if(array_key_exists('directory_publish',$role_permissions)) { - $publish = intval($role_permissions['directory_publish']); - } } set_pconfig(local_channel(),'system','hide_online_status',$hide_presence); @@ -965,7 +963,11 @@ class Settings extends \Zotlabs\Web\Controller { return $o; } - + + + + + if(argv(1) === 'channel') { require_once('include/acl_selectors.php'); @@ -982,8 +984,9 @@ class Settings extends \Zotlabs\Web\Controller { $channel = \App::get_channel(); - $global_perms = \Zotlabs\Access\Permissions::Perms(); - + + $global_perms = get_perms(); + $permiss = array(); $perm_opts = array( @@ -997,18 +1000,19 @@ class Settings extends \Zotlabs\Web\Controller { array( t('Anybody on the internet'), PERMS_PUBLIC) ); - $limits = \Zotlabs\Access\PermissionLimits::Get(local_channel()); foreach($global_perms as $k => $perm) { $options = array(); foreach($perm_opts as $opt) { + if((! $perm[2]) && $opt[1] == PERMS_PUBLIC) + continue; $options[$opt[1]] = $opt[0]; } - $permiss[] = array($k,$perm,$limits[$k],'',$options); + $permiss[] = array($k,$perm[3],$channel[$perm[0]],$perm[4],$options); } - //logger('permiss: ' . print_r($permiss,true)); + // logger('permiss: ' . print_r($permiss,true)); 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/Storage/Browser.php b/Zotlabs/Storage/Browser.php index 93c55bd4c..713d75108 100644 --- a/Zotlabs/Storage/Browser.php +++ b/Zotlabs/Storage/Browser.php @@ -274,22 +274,6 @@ class Browser extends DAV\Browser\Plugin { // SimpleCollection, we won't need to show the panel either. if (get_class($node) === 'Sabre\\DAV\\SimpleCollection') return; - require_once('include/acl_selectors.php'); - - $aclselect = null; - $lockstate = ''; - - if($this->auth-owner_id) { - $channel = channelx_by_n($this->auth->owner_id); - if($channel) { - $acl = new \Zotlabs\Access\AccessList($channel); - $channel_acl = $acl->get(); - $lockstate = (($acl->is_private()) ? 'lock' : 'unlock'); - - $aclselect = ((local_channel() == $this->auth->owner_id) ? populate_acl($channel_acl,false, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_storage')) : ''); - - } - } // Storage and quota for the account (all channels of the owner of this directory)! $limit = engr_units_to_bytes(service_class_fetch($owner, 'attach_upload_limit')); @@ -309,6 +293,7 @@ class Browser extends DAV\Browser\Plugin { userReadableSize($limit), round($used / $limit, 1) * 100); } + // prepare quota for template $quota = array(); $quota['used'] = $used; @@ -321,12 +306,7 @@ class Browser extends DAV\Browser\Plugin { '$folder_submit' => t('Create'), '$upload_header' => t('Upload file'), '$upload_submit' => t('Upload'), - '$quota' => $quota, - '$channick' => $this->auth->owner_nick, - '$aclselect' => $aclselect, - '$lockstate' => $lockstate, - '$return_url' => \App::$cmd, - '$dragdroptext' => t('Drop files here to immediately upload') + '$quota' => $quota )); } 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 a6cc23c9f..7974ce9ed 100755 --- a/boot.php +++ b/boot.php @@ -44,10 +44,10 @@ require_once('include/account.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '1.11' ); +define ( 'STD_VERSION', '1.10RC' ); define ( 'ZOT_REVISION', '1.1' ); -define ( 'DB_UPDATE_VERSION', 1181 ); +define ( 'DB_UPDATE_VERSION', 1180 ); /** @@ -765,7 +765,6 @@ class App { public static $pdl = null; // Comanche page description private static $perms = null; // observer permissions private static $widgets = array(); // widgets for this page - public static $config = array(); // config cache public static $session = null; public static $groups; @@ -775,6 +774,7 @@ class App { public static $plugins_admin; public static $module_loaded = false; public static $query_string; + public static $config; // config cache public static $page; public static $profile; public static $user; @@ -1551,9 +1551,6 @@ function check_config(&$a) { load_hooks(); - - check_for_new_perms(); - check_cron_broken(); } @@ -2443,67 +2440,6 @@ function cert_bad_email() { } -function check_for_new_perms() { - - $pregistered = get_config('system','perms'); - $pcurrent = array_keys(\Zotlabs\Access\Permissions::Perms()); - - if(! $pregistered) { - set_config('system','perms',$pcurrent); - return; - } - - $found_new_perm = false; - - foreach($pcurrent as $p) { - if(! in_array($p,$pregistered)) { - $found_new_perm = true; - // for all channels - $c = q("select channel_id from channel where true"); - if($c) { - foreach($c as $cc) { - // get the permission role - $r = q("select v from pconfig where uid = %d and cat = 'system' and k = 'permissions_role'", - intval($cc['uid']) - ); - if($r) { - // get a list of connections - $x = q("select abook_xchan from abook where abook_channel = %d and abook_self = 0", - intval($cc['uid']) - ); - // get the permissions role details - $rp = \Zotlabs\Access\PermissionRoles::role_perms($r[0]['v']); - if($rp) { - // set the channel limits if appropriate or 0 - if(array_key_exists('limits',$rp) && array_key_exists($p,$rp['limits'])) { - \Zotlabs\Access\PermissionLimits::Set($cc['uid'],$p,$rp['limits'][$p]); - } - else { - \Zotlabs\Access\PermissionLimits::Set($cc['uid'],$p,0); - } - - $set = ((array_key_exists('perms_connect',$rp) && array_key_exists($p,$rp['perms_connect'])) ? true : false); - // foreach connection set to the perms_connect value - if($x) { - foreach($x as $xx) { - set_abconfig($cc['uid'],$xx['abook_xchan'],'my_perms',$p,intval($set)); - } - } - } - } - } - } - } - } - - // We should probably call perms_refresh here, but this should get pushed in 24 hours and there is no urgency - if($found_new_perm) - set_config('system','perms',$pcurrent); - -} - - - /** * @brief Send warnings every 3-5 days if cron is not running. */ @@ -2513,7 +2449,6 @@ function check_cron_broken() { if((! $d) || ($d < datetime_convert('UTC','UTC','now - 4 hours'))) { Zotlabs\Daemon\Master::Summon(array('Cron')); - set_config('system','lastcron',datetime_convert()); } $t = get_config('system','lastcroncheck'); diff --git a/include/api.php b/include/api.php index f52b03240..df6aba957 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 7123d59fe..b3ddfee88 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 88dd818e6..8e0747f25 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 @@ -510,8 +497,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()]; } @@ -533,7 +519,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); } @@ -1567,11 +1552,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; } @@ -1643,13 +1626,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 9f55820cc..ed4526a09 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 1efca37f3..957dbf8e9 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 42c902a0a..889b50eb1 100644 --- a/include/import.php +++ b/include/import.php @@ -1,7 +1,6 @@ $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/items.php b/include/items.php index 178fb30d6..373090d41 100755 --- a/include/items.php +++ b/include/items.php @@ -183,7 +183,7 @@ function is_item_normal($item) { * This function examines the comment_policy attached to an item and decides if the current observer has * sufficient privileges to comment. This will normally be called on a remote site where perm_is_allowed() * will not be suitable because the post owner does not have a local channel_id. - * Generally we should look at the item - in particular the author['abook_flags'] and see if ABOOK_FLAG_SELF is set. + * Generally we should look at the item - in particular the author['book_flags'] and see if ABOOK_FLAG_SELF is set. * If it is, you should be able to use perm_is_allowed( ... 'post_comments'), and if it isn't you need to call * can_comment_on_post() * We also check the comments_closed date/time on the item if this is set. @@ -224,7 +224,8 @@ function can_comment_on_post($observer_xchan, $item) { case 'contacts': case 'authenticated': case '': - if(array_key_exists('owner',$item) && get_abconfig($item['uid'],$item['owner']['abook_xchan'],'their_perms','post_comments')) { + if(array_key_exists('owner',$item)) { + if(($item['owner']['abook_xchan']) && ($item['owner']['abook_their_perms'] & PERMS_W_COMMENT)) return true; } break; @@ -385,7 +386,7 @@ function post_activity_item($arr) { return $ret; } - $arr['public_policy'] = ((x($_REQUEST,'public_policy')) ? escape_tags($_REQUEST['public_policy']) : map_scope(\Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_stream'),true)); + $arr['public_policy'] = ((x($_REQUEST,'public_policy')) ? escape_tags($_REQUEST['public_policy']) : map_scope($channel['channel_r_stream'],true)); if($arr['public_policy']) $arr['item_private'] = 1; @@ -421,7 +422,7 @@ function post_activity_item($arr) { $arr['deny_cid'] = ((x($arr,'deny_cid')) ? $arr['deny_cid'] : $channel['channel_deny_cid']); $arr['deny_gid'] = ((x($arr,'deny_gid')) ? $arr['deny_gid'] : $channel['channel_deny_gid']); - $arr['comment_policy'] = map_scope(\Zotlabs\Access/PermissionLimits::Get($channel['channel_id'],'post_comments')); + $arr['comment_policy'] = map_scope($channel['channel_w_comment']); if ((! $arr['plink']) && (intval($arr['item_thread_top']))) { $arr['plink'] = z_root() . '/channel/' . $channel['channel_address'] . '/?f=&mid=' . $arr['mid']; @@ -970,12 +971,12 @@ function encode_item($item,$mirror = false) { // logger('encode_item: ' . print_r($item,true)); - $r = q("select channel_id from channel where channel_id = %d limit 1", + $r = q("select channel_r_stream, channel_w_comment from channel where channel_id = %d limit 1", intval($item['uid']) ); if($r) - $comment_scope = \Zotlabs\Access\PermissionLimits::Get($item['uid'],'post_comments'); + $comment_scope = $r[0]['channel_w_comment']; else $comment_scope = 0; @@ -989,9 +990,9 @@ function encode_item($item,$mirror = false) { if(array_key_exists('item_obscured',$item) && intval($item['item_obscured'])) { 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 we're trying to backup an item so that it's recoverable or for export/imprt, @@ -1061,11 +1062,11 @@ function encode_item($item,$mirror = false) { $x['owner'] = encode_item_xchan($item['owner']); $x['author'] = encode_item_xchan($item['author']); if($item['obj']) - $x['object'] = json_decode($item['obj'],true); + $x['object'] = json_decode_plus($item['obj']); if($item['target']) - $x['target'] = json_decode($item['target'],true); + $x['target'] = json_decode_plus($item['target']); if($item['attach']) - $x['attach'] = json_decode($item['attach'],true); + $x['attach'] = json_decode_plus($item['attach']); if($y = encode_item_flags($item)) $x['flags'] = $y; @@ -1381,7 +1382,7 @@ function encode_mail($item,$extended = false) { $x['to'] = encode_item_xchan($item['to']); if($item['attach']) - $x['attach'] = json_decode($item['attach'],true); + $x['attach'] = json_decode_plus($item['attach']); $x['flags'] = array(); @@ -2389,7 +2390,7 @@ function tag_deliver($uid, $item_id) { if(($item['obj_type'] == "") || ($item['obj_type'] !== ACTIVITY_OBJ_PERSON) || (! $item['obj'])) $poke_notify = false; - $obj = json_decode($item['obj'],true); + $obj = json_decode_plus($item['obj']); if($obj) { if($obj['id'] !== $u[0]['channel_hash']) $poke_notify = false; @@ -2426,14 +2427,14 @@ function tag_deliver($uid, $item_id) { if(($item['owner_xchan'] === $u[0]['channel_hash']) && (! get_pconfig($u[0]['channel_id'],'system','blocktags'))) { logger('tag_deliver: community tag recipient: ' . $u[0]['channel_name']); - $j_tgt = json_decode($item['target'],true); + $j_tgt = json_decode_plus($item['target']); if($j_tgt && $j_tgt['id']) { $p = q("select * from item where mid = '%s' and uid = %d limit 1", dbesc($j_tgt['id']), intval($u[0]['channel_id']) ); if($p) { - $j_obj = json_decode($item['obj'],true); + $j_obj = json_decode_plus($item['obj']); logger('tag_deliver: tag object: ' . print_r($j_obj,true), LOGGER_DATA); if($j_obj && $j_obj['id'] && $j_obj['title']) { if(is_array($j_obj['link'])) @@ -2518,7 +2519,7 @@ function tag_deliver($uid, $item_id) { if(intval($item['item_obscured'])) { $key = get_config('system','prvkey'); if($item['body']) - $body = crypto_unencapsulate(json_decode($item['body'],true),$key); + $body = crypto_unencapsulate(json_decode_plus($item['body']),$key); } else $body = $item['body']; @@ -2761,7 +2762,7 @@ function start_delivery_chain($channel, $item, $item_id, $parent) { $private = (($channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 1 : 0); - $new_public_policy = map_scope(\Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_stream'),true); + $new_public_policy = map_scope($channel['channel_r_stream'],true); if((! $private) && $new_public_policy) $private = 1; @@ -2806,7 +2807,7 @@ function start_delivery_chain($channel, $item, $item_id, $parent) { dbesc($channel['channel_deny_gid']), intval($private), dbesc($new_public_policy), - dbesc(map_scope(\Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'post_comments'))), + dbesc(map_scope($channel['channel_w_comment'])), dbesc($title), dbesc($body), intval($item_wall), @@ -2855,7 +2856,7 @@ function check_item_source($uid, $item) { if(! $x) return false; - if(! get_abconfig($uid,$item['owner_xchan'],'their_perms','republish')) + if(! ($x[0]['abook_their_perms'] & PERMS_A_REPUBLISH)) return false; if($item['item_private'] && (! intval($x[0]['abook_feed']))) diff --git a/include/oembed.php b/include/oembed.php index fe3a3c33c..fe068278e 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -215,17 +215,6 @@ function oembed_fetch_url($embedurl){ if($j->html != $orig) { logger('oembed html was purified. original: ' . $orig . ' purified: ' . $j->html, LOGGER_DEBUG, LOG_INFO); } - - $orig_len = trim(mb_strlen($orig)); - $new_len = trim(mb_strlen($j->html)); - if(! $new_len) - $j->type = 'error'; - elseif($orig_len) { - $ratio = $new_len / $orig_len; - if($ratio < 0.8) - $j->type = 'error'; - } - } } 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 @@ - $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/permissions.php b/include/permissions.php index 638bedb24..19242d29f 100644 --- a/include/permissions.php +++ b/include/permissions.php @@ -67,7 +67,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { if($api) return get_all_api_perms($uid,$api); - $global_perms = \Zotlabs\Access\Permissions::Perms(); + $global_perms = get_perms(); // Save lots of individual lookups @@ -81,13 +81,11 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { $ret = array(); - $abperms = (($uid && $observer_xchan) ? load_abconfig($uid,$observer_xchan,'my_perms') : array()); - foreach($global_perms as $perm_name => $permission) { // First find out what the channel owner declared permissions to be. - $channel_perm = \Zotlabs\Access\PermissionLimits::Get($uid,$perm_name); + $channel_perm = $permission[0]; if(! $channel_checked) { $r = q("select * from channel where channel_id = %d limit 1", @@ -107,7 +105,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // These take priority over all other settings. if($observer_xchan) { - if($channel_perm & PERMS_AUTHED) { + if($r[0][$channel_perm] & PERMS_AUTHED) { $ret[$perm_name] = true; continue; } @@ -138,10 +136,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // Check if this is a write permission and they are being ignored // This flag is only visible internally. - $blocked_anon_perms = \Zotlabs\Access\Permissions::BlockedAnonPerms(); - - - if(($x) && ($internal_use) && in_array($perm_name,$blocked_anon_perms) && intval($x[0]['abook_ignored'])) { + if(($x) && ($internal_use) && (! $global_perms[$perm_name][2]) && intval($x[0]['abook_ignored'])) { $ret[$perm_name] = false; continue; } @@ -159,7 +154,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // if you've moved elsewhere, you will only have read only access if(($observer_xchan) && ($r[0]['channel_hash'] === $observer_xchan)) { - if($r[0]['channel_moved'] && (in_array($perm_name,$blocked_anon_perms))) + if($r[0]['channel_moved'] && (! $permission[2])) $ret[$perm_name] = false; else $ret[$perm_name] = true; @@ -168,7 +163,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // Anybody at all (that wasn't blocked or ignored). They have permission. - if($channel_perm & PERMS_PUBLIC) { + if($r[0][$channel_perm] & PERMS_PUBLIC) { $ret[$perm_name] = true; continue; } @@ -183,7 +178,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // If we're still here, we have an observer, check the network. - if($channel_perm & PERMS_NETWORK) { + if($r[0][$channel_perm] & PERMS_NETWORK) { if(($x && $x[0]['xchan_network'] === 'zot') || ($y && $y[0]['xchan_network'] === 'zot')) { $ret[$perm_name] = true; continue; @@ -192,7 +187,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // If PERMS_SITE is specified, find out if they've got an account on this hub - if($channel_perm & PERMS_SITE) { + if($r[0][$channel_perm] & PERMS_SITE) { if(! $onsite_checked) { $c = q("select channel_hash from channel where channel_hash = '%s' limit 1", dbesc($observer_xchan) @@ -219,7 +214,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // They are in your address book, but haven't been approved - if($channel_perm & PERMS_PENDING) { + if($r[0][$channel_perm] & PERMS_PENDING) { $ret[$perm_name] = true; continue; } @@ -231,21 +226,16 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) { // They're a contact, so they have permission - if($channel_perm & PERMS_CONTACTS) { + if($r[0][$channel_perm] & PERMS_CONTACTS) { $ret[$perm_name] = true; continue; } // Permission granted to certain channels. Let's see if the observer is one of them - if($channel_perm & PERMS_SPECIFIC) { - if($abperms) { - foreach($abperms as $ab) { - if(($ab['cat'] == 'my_perms') && ($ab['k'] == $perm_name)) { - $ret[$perm_name] = (intval($ab['v']) ? true : false); - break; - } - } + if($r[0][$channel_perm] & PERMS_SPECIFIC) { + if(($x[0]['abook_my_perms'] & $global_perms[$perm_name][1])) { + $ret[$perm_name] = true; continue; } } @@ -294,23 +284,21 @@ function perm_is_allowed($uid, $observer_xchan, $permission) { if($arr['result']) return true; - $global_perms = \Zotlabs\Access\Permissions::Perms(); + $global_perms = get_perms(); // First find out what the channel owner declared permissions to be. - $channel_perm = \Zotlabs\Access\PermissionLimits::Get($uid,$permission); + $channel_perm = $global_perms[$permission][0]; - $r = q("select channel_pageflags, channel_moved, channel_hash from channel where channel_id = %d limit 1", + $r = q("select %s, channel_pageflags, channel_moved, channel_hash from channel where channel_id = %d limit 1", + dbesc($channel_perm), intval($uid) ); if(! $r) return false; - - $blocked_anon_perms = \Zotlabs\Access\Permissions::BlockedAnonPerms(); - if($observer_xchan) { - if($channel_perm & PERMS_AUTHED) + if($r[0][$channel_perm] & PERMS_AUTHED) return true; $x = q("select abook_my_perms, abook_blocked, abook_ignored, abook_pending, xchan_network from abook left join xchan on abook_xchan = xchan_hash @@ -324,7 +312,7 @@ function perm_is_allowed($uid, $observer_xchan, $permission) { if(($x) && intval($x[0]['abook_blocked'])) return false; - if(($x) && in_array($permission,$blocked_anon_perms) && intval($x[0]['abook_ignored'])) + if(($x) && (! $global_perms[$permission][2]) && intval($x[0]['abook_ignored'])) return false; if(! $x) { @@ -333,9 +321,7 @@ function perm_is_allowed($uid, $observer_xchan, $permission) { dbesc($observer_xchan) ); } - $abperms = load_abconfig($uid,$observer_xchan,'my_perms'); } - // system is blocked to anybody who is not authenticated @@ -347,13 +333,13 @@ function perm_is_allowed($uid, $observer_xchan, $permission) { // in which case you will have read_only access if($r[0]['channel_hash'] === $observer_xchan) { - if($r[0]['channel_moved'] && (in_array($permission,$blocked_anon_perms))) + if($r[0]['channel_moved'] && (! $global_perms[$permission][2])) return false; else return true; } - if($channel_perm & PERMS_PUBLIC) + if($r[0][$channel_perm] & PERMS_PUBLIC) return true; // If it's an unauthenticated observer, we only need to see if PERMS_PUBLIC is set @@ -364,14 +350,14 @@ function perm_is_allowed($uid, $observer_xchan, $permission) { // If we're still here, we have an observer, check the network. - if($channel_perm & PERMS_NETWORK) { + if($r[0][$channel_perm] & PERMS_NETWORK) { if (($x && $x[0]['xchan_network'] === 'zot') || ($y && $y[0]['xchan_network'] === 'zot')) return true; } // If PERMS_SITE is specified, find out if they've got an account on this hub - if($channel_perm & PERMS_SITE) { + if($r[0][$channel_perm] & PERMS_SITE) { $c = q("select channel_hash from channel where channel_hash = '%s' limit 1", dbesc($observer_xchan) ); @@ -390,7 +376,7 @@ function perm_is_allowed($uid, $observer_xchan, $permission) { // They are in your address book, but haven't been approved - if($channel_perm & PERMS_PENDING) { + if($r[0][$channel_perm] & PERMS_PENDING) { return true; } @@ -400,20 +386,15 @@ function perm_is_allowed($uid, $observer_xchan, $permission) { // They're a contact, so they have permission - if($channel_perm & PERMS_CONTACTS) { + if($r[0][$channel_perm] & PERMS_CONTACTS) { return true; } // Permission granted to certain channels. Let's see if the observer is one of them - if(($r) && ($channel_perm & PERMS_SPECIFIC)) { - if($abperms) { - foreach($abperms as $ab) { - if($ab['cat'] == 'my_perms' && $ab['k'] == $permission) { - return ((intval($ab['v'])) ? true : false); - } - } - } + if(($r) && $r[0][$channel_perm] & PERMS_SPECIFIC) { + if($x[0]['abook_my_perms'] & $global_perms[$permission][1]) + return true; } // No permissions allowed. @@ -579,28 +560,28 @@ function get_role_perms($role) { $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'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|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_A_REPUBLISH|PERMS_W_LIKE; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|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_A_REPUBLISH|PERMS_W_LIKE; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_NETWORK; break; @@ -609,29 +590,28 @@ function get_role_perms($role) { $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'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; - + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|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; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|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; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_SPECIFIC; break; @@ -640,28 +620,28 @@ function get_role_perms($role) { $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'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_SPECIFIC, - 'view_storage' => PERMS_SPECIFIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|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; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|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; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_SPECIFIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_SPECIFIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_SPECIFIC; break; @@ -670,28 +650,28 @@ function get_role_perms($role) { $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'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE|PERMS_W_TAGWALL; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE|PERMS_W_TAGWALL; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_NETWORK; break; @@ -700,28 +680,28 @@ function get_role_perms($role) { $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'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|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|PERMS_W_TAGWALL; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|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|PERMS_W_TAGWALL; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_SPECIFIC; break; @@ -730,29 +710,28 @@ function get_role_perms($role) { $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'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_SPECIFIC, - 'view_contacts' => PERMS_SPECIFIC, - 'view_storage' => PERMS_SPECIFIC, - 'view_pages' => PERMS_SPECIFIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|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; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILEPERMS_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; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_SPECIFIC; + $ret['channel_r_abook'] = PERMS_SPECIFIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_SPECIFIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_SPECIFIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_SPECIFIC; break; @@ -761,29 +740,28 @@ function get_role_perms($role) { $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'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_NETWORK; + $ret['channel_w_like'] = PERMS_NETWORK; break; @@ -792,28 +770,28 @@ function get_role_perms($role) { $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'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_W_LIKE; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_W_LIKE; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_NETWORK; break; @@ -822,29 +800,26 @@ function get_role_perms($role) { $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'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_R_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_NETWORK; break; @@ -853,30 +828,28 @@ function get_role_perms($role) { $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'] = [ - 'view_stream' => PERMS_PUBLIC, - 'view_profile' => PERMS_PUBLIC, - 'view_contacts' => PERMS_PUBLIC, - 'view_storage' => PERMS_PUBLIC, - 'view_pages' => PERMS_PUBLIC, - 'send_stream' => PERMS_SPECIFIC, - 'post_wall' => PERMS_SPECIFIC, - 'post_comments' => PERMS_SPECIFIC, - 'post_mail' => PERMS_SPECIFIC, - 'post_like' => PERMS_SPECIFIC, - 'tag_deliver' => PERMS_SPECIFIC, - 'chat' => PERMS_SPECIFIC, - 'write_storage' => PERMS_SPECIFIC, - 'write_pages' => PERMS_SPECIFIC, - 'republish' => PERMS_SPECIFIC, - 'delegate' => PERMS_SPECIFIC - ]; - + $ret['perms_follow'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_W_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE|PERMS_W_TAGWALL; + $ret['perms_accept'] = PERMS_R_STREAM|PERMS_R_PROFILE|PERMS_R_ABOOK + |PERMS_W_STREAM|PERMS_W_WALL|PERMS_W_COMMENT|PERMS_W_MAIL|PERMS_W_CHAT + |PERMS_R_STORAGE|PERMS_W_STORAGE|PERMS_R_PAGES|PERMS_A_REPUBLISH|PERMS_W_LIKE|PERMS_W_TAGWALL; + $ret['channel_r_stream'] = PERMS_PUBLIC; + $ret['channel_r_profile'] = PERMS_PUBLIC; + $ret['channel_r_abook'] = PERMS_PUBLIC; + $ret['channel_w_stream'] = PERMS_SPECIFIC; + $ret['channel_w_wall'] = PERMS_SPECIFIC; + $ret['channel_w_tagwall'] = PERMS_SPECIFIC; + $ret['channel_w_comment'] = PERMS_SPECIFIC; + $ret['channel_w_mail'] = PERMS_SPECIFIC; + $ret['channel_w_chat'] = PERMS_SPECIFIC; + $ret['channel_a_delegate'] = PERMS_SPECIFIC; + $ret['channel_r_storage'] = PERMS_PUBLIC; + $ret['channel_w_storage'] = PERMS_SPECIFIC; + $ret['channel_r_pages'] = PERMS_PUBLIC; + $ret['channel_w_pages'] = PERMS_SPECIFIC; + $ret['channel_a_republish'] = PERMS_SPECIFIC; + $ret['channel_w_like'] = PERMS_NETWORK; break; 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 c67a1b400..2107ed819 100644 --- a/include/security.php +++ b/include/security.php @@ -128,7 +128,6 @@ function atoken_xchan($atoken) { * * @return bool|array false or channel record of the new channel */ - function change_channel($change_channel) { $ret = false; @@ -478,19 +477,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 = ''; @@ -516,21 +510,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 1eec2ba0a..d4d151f2e 100644 --- a/include/text.php +++ b/include/text.php @@ -1284,9 +1284,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']), @@ -1309,7 +1309,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) { @@ -2212,12 +2212,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(); @@ -2608,33 +2616,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 3516e82da..da73657f5 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -1356,14 +1356,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/include/zot.php b/include/zot.php index 73d9ef950..45347ef22 100644 --- a/include/zot.php +++ b/include/zot.php @@ -12,7 +12,6 @@ require_once('include/crypto.php'); require_once('include/items.php'); require_once('include/hubloc.php'); require_once('include/queue_fn.php'); -require_once('include/perm_upgrade.php'); /** @@ -389,7 +388,10 @@ function zot_refresh($them, $channel = null, $force = false) { if(! $x['success']) return false; + $their_perms = 0; + if($channel) { + $global_perms = get_perms(); if($j['permissions']['data']) { $permissions = crypto_unencapsulate(array( 'data' => $j['permissions']['data'], @@ -406,10 +408,15 @@ function zot_refresh($them, $channel = null, $force = false) { $connected_set = false; if($permissions && is_array($permissions)) { - $old_read_stream_perm = get_abconfig($channel['channel_id'],$x['hash'],'their_perms','view_stream'); - foreach($permissions as $k => $v) { - set_abconfig($channel['channel_id'],$x['hash'],'their_perms',$k,$v); + // The connected permission means you are in their address book + if($k === 'connected') { + $connected_set = intval($v); + continue; + } + if(($v) && (array_key_exists($k,$global_perms))) { + $their_perms = $their_perms | intval($global_perms[$k][1]); + } } } @@ -436,19 +443,36 @@ function zot_refresh($them, $channel = null, $force = false) { if(substr($r[0]['abook_dob'],5) == substr($next_birthday,5)) $next_birthday = $r[0]['abook_dob']; - $y = q("update abook set abook_dob = '%s' + $current_abook_connected = (intval($r[0]['abook_unconnected']) ? 0 : 1); + + $y = q("update abook set abook_their_perms = %d, abook_dob = '%s' where abook_xchan = '%s' and abook_channel = %d and abook_self = 0 ", + intval($their_perms), dbescdate($next_birthday), dbesc($x['hash']), intval($channel['channel_id']) ); +// if(($connected_set === 0 || $connected_set === 1) && ($connected_set !== $current_abook_unconnected)) { + + // if they are in your address book but you aren't in theirs, and/or this does not + // match your current connected state setting, toggle it. + /** @FIXME uncoverted to postgres */ + /** @FIXME when this was enabled, all contacts became unconnected. Currently disabled intentionally */ +// $y1 = q("update abook set abook_unconnected = 1 +// where abook_xchan = '%s' and abook_channel = %d +// and abook_self = 0 limit 1", +// dbesc($x['hash']), +// intval($channel['channel_id']) +// ); +// } + if(! $y) logger('abook update failed'); else { // if we were just granted read stream permission and didn't have it before, try to pull in some posts - if((! $old_read_stream_perm) && (intval($permissions['view_stream']))) + if((! ($r[0]['abook_their_perms'] & PERMS_R_STREAM)) && ($their_perms & PERMS_R_STREAM)) Zotlabs\Daemon\Master::Summon(array('Onepoll',$r[0]['abook_id'])); } } @@ -456,29 +480,15 @@ function zot_refresh($them, $channel = null, $force = false) { // new connection - $my_perms = null; - $role = get_pconfig($channel['channel_id'],'system','permissions_role'); if($role) { - $xx = \Zotlabs\Access\PermissionRoles::role_perms($role); - if($xx['perms_auto']) { - $default_perms = $xx['perms_connect']; - $my_perms = \Zotlabs\Access\Permissions::FilledPerms($default_perms); - } - } - - if(! $my_perms) { - $m = \Zotlabs\Access\Permissions::FilledAutoperms($channel['channel_id']); - if($m) { - $my_perms = $m; - } + $xx = get_role_perms($role); + if($xx['perms_auto']) + $default_perms = $xx['perms_accept']; } + if(! $default_perms) + $default_perms = intval(get_pconfig($channel['channel_id'],'system','autoperms')); - if($my_perms) { - foreach($my_perms as $k => $v) { - set_abconfig($channel['channel_id'],$x['hash'],'my_perms',$k,$v); - } - } // Keep original perms to check if we need to notify them $previous_perms = get_all_perms($channel['channel_id'],$x['hash']); @@ -488,11 +498,13 @@ function zot_refresh($them, $channel = null, $force = false) { if($closeness === false) $closeness = 80; - $y = q("insert into abook ( abook_account, abook_channel, abook_closeness, abook_xchan, abook_created, abook_updated, abook_dob, abook_pending ) values ( %d, %d, %d, '%s', '%s', '%s', '%s', %d )", + $y = q("insert into abook ( abook_account, abook_channel, abook_closeness, abook_xchan, abook_their_perms, abook_my_perms, abook_created, abook_updated, abook_dob, abook_pending ) values ( %d, %d, %d, '%s', %d, %d, '%s', '%s', '%s', %d )", intval($channel['channel_account_id']), intval($channel['channel_id']), intval($closeness), dbesc($x['hash']), + intval($their_perms), + intval($default_perms), dbesc(datetime_convert()), dbesc(datetime_convert()), dbesc($next_birthday), @@ -511,7 +523,7 @@ function zot_refresh($them, $channel = null, $force = false) { ); if($new_connection) { - if(! \Zotlabs\Access\Permissions::PermsCompare($new_perms,$previous_perms)) + if($new_perms != $previous_perms) Zotlabs\Daemon\Master::Summon(array('Notifier','permission_create',$new_connection[0]['abook_id'])); Zotlabs\Lib\Enotify::submit(array( 'type' => NOTIFY_INTRO, @@ -520,9 +532,9 @@ function zot_refresh($them, $channel = null, $force = false) { 'link' => z_root() . '/connedit/' . $new_connection[0]['abook_id'], )); - if(intval($permissions['view_stream'])) { - if(intval(get_pconfig($channel['channel_id'],'perm_limits','send_stream') & PERMS_PENDING) - || (! intval($new_connection[0]['abook_pending']))) + if($their_perms & PERMS_R_STREAM) { + if(($channel['channel_w_stream'] & PERMS_PENDING) + || (! intval($new_connection[0]['abook_pending'])) ) Zotlabs\Daemon\Master::Summon(array('Onepoll',$new_connection[0]['abook_id'])); } @@ -1359,8 +1371,8 @@ function public_recips($msg) { if($msg['message']['type'] === 'activity') { if(! get_config('system','disable_discover_tab')) $include_sys = true; - $perm = 'send_stream'; - + $col = 'channel_w_stream'; + $field = PERMS_W_STREAM; if(array_key_exists('flags',$msg['message']) && in_array('thread_parent', $msg['message']['flags'])) { // check mention recipient permissions on top level posts only $check_mentions = true; @@ -1392,30 +1404,65 @@ function public_recips($msg) { // contains the tag. we'll solve that further below. if($msg['notify']['sender']['guid_sig'] != $msg['message']['owner']['guid_sig']) { - $perm = 'post_comments'; + $col = 'channel_w_comment'; + $field = PERMS_W_COMMENT; } } } - elseif($msg['message']['type'] === 'mail') - $perm = 'post_mail'; + elseif($msg['message']['type'] === 'mail') { + $col = 'channel_w_mail'; + $field = PERMS_W_MAIL; + } - $r = array(); - - $c = q("select channel_id, channel_hash from channel where channel_removed = 0"); - if($c) { - foreach($c as $cc) { - if(perm_is_allowed($cc['channel_id'],$msg['notify']['sender']['hash'],$perm)) { - $r[] = [ 'hash' => $cc['channel_hash'] ]; - } - } + if(! $col) + return NULL; + + $col = dbesc($col); + + // First find those channels who are accepting posts from anybody, or at least + // something greater than just their connections. + + if($msg['notify']['sender']['url'] === z_root()) { + $sql = " where (( " . $col . " & " . intval(PERMS_NETWORK) . " ) > 0 + or ( " . $col . " & " . intval(PERMS_SITE) . " ) > 0 + or ( " . $col . " & " . intval(PERMS_PUBLIC) . ") > 0 + or ( " . $col . " & " . intval(PERMS_AUTHED) . ") > 0 ) "; + } else { + $sql = " where ( " . $col . " = " . intval(PERMS_NETWORK) . " + or " . $col . " = " . intval(PERMS_PUBLIC) . " + or " . $col . " = " . intval(PERMS_AUTHED) . " ) "; } - // logger('message: ' . print_r($msg['message'],true)); + $r = q("select channel_hash as hash from channel $sql or channel_hash = '%s' + and channel_removed = 0 ", + dbesc($msg['notify']['sender']['hash']) + ); + + if(! $r) + $r = array(); + + // Now we have to get a bit dirty. Find every channel that has the sender in their connections (abook) + // and is allowing this sender at least at a high level. + + $x = q("select channel_hash as hash from channel left join abook on abook_channel = channel_id + where abook_xchan = '%s' and channel_removed = 0 + and (( " . $col . " = " . intval(PERMS_SPECIFIC) . " and ( abook_my_perms & " . intval($field) . " ) > 0 ) + OR " . $col . " = " . intval(PERMS_PENDING) . " + OR ( " . $col . " = " . intval(PERMS_CONTACTS) . " and abook_pending = 0 )) ", + dbesc($msg['notify']['sender']['hash']) + ); + + if(! $x) + $x = array(); + + $r = array_merge($r,$x); + + //logger('message: ' . print_r($msg['message'],true)); if($include_sys && array_key_exists('public_scope',$msg['message']) && $msg['message']['public_scope'] === 'public') { $sys = get_sys_channel(); if($sys) - $r[] = [ 'hash' => $sys['channel_hash'] ]; + $r[] = array('hash' => $sys['channel_hash']); } // look for any public mentions on this site @@ -1896,9 +1943,9 @@ function remove_community_tag($sender, $arr, $uid) { $i = $r[0]; if($i['target']) - $i['target'] = json_decode($i['target'],true); + $i['target'] = json_decode_plus($i['target']); if($i['object']) - $i['object'] = json_decode($i['object'],true); + $i['object'] = json_decode_plus($i['object']); if(! ($i['target'] && $i['object'])) { logger('remove_community_tag: no target/object'); @@ -2951,14 +2998,6 @@ function build_sync_packet($uid = 0, $packet = null, $groups_changed = false) { $channel = $r[0]; - translate_channel_perms_outbound($channel); - if($packet && array_key_exists('abook',$packet) && $packet['abook']) { - for($x = 0; $x < count($packet['abook']); $x ++) { - translate_abook_perms_outbound($packet['abook'][$x]); - } - } - - if(intval($channel['channel_removed'])) return; @@ -3082,8 +3121,7 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { require_once('include/import.php'); - /** @FIXME this will sync red structures (channel, pconfig and abook). - Eventually we need to make this application agnostic. */ + /** @FIXME this will sync red structures (channel, pconfig and abook). Eventually we need to make this application agnostic. */ $result = array(); @@ -3156,8 +3194,6 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { if(array_key_exists('channel',$arr) && is_array($arr['channel']) && count($arr['channel'])) { - translate_channel_perms_inbound($arr['channel']); - if(array_key_exists('channel_pageflags',$arr['channel']) && intval($arr['channel']['channel_pageflags'])) { // These flags cannot be sync'd. // remove the bits from the incoming flags. @@ -3171,15 +3207,7 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { } - $disallowed = [ - 'channel_id', 'channel_account_id', 'channel_primary', 'channel_prvkey', - 'channel_address', 'channel_notifyflags', 'channel_removed', 'channel_deleted', - 'channel_system', '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' - ]; + $disallowed = array('channel_id','channel_account_id','channel_primary','channel_prvkey', 'channel_address', 'channel_notifyflags', 'channel_removed', 'channel_deleted', 'channel_system'); $clean = array(); foreach($arr['channel'] as $k => $v) { @@ -3215,8 +3243,6 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { foreach($arr['abook'] as $abook) { - - $abconfig = null; if(array_key_exists('abconfig',$abook) && is_array($abook['abconfig']) && count($abook['abconfig'])) @@ -3311,12 +3337,6 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { } } - // This will set abconfig vars if the sender is using old-style fixed permissions - // using the raw abook record as passed to us. New-style permissions will fall through - // and be set using abconfig - - translate_abook_perms_inbound($channel,$abook); - if($abconfig) { // @fixme does not handle sync of del_abconfig foreach($abconfig as $abc) { @@ -3782,21 +3802,11 @@ function zotinfo($arr) { } else { // check if it has characteristics of a public forum based on custom permissions. - $t = q("select * from abconfig where abconfig.cat = 'my_perms' and abconfig.chan = %d and abconfig.xchan = '%s' and abconfig.k in ('tag_deliver', 'send_stream') ", - intval($e['channel_id']), - intval($e['channel_hash']) + $t = q("select abook_my_perms from abook where abook_channel = %d and abook_self = 1 limit 1", + intval($e['channel_id']) ); - $ch = 0; - if($t) { - foreach($t as $tt) { - if($tt['k'] == 'tag_deliver' && $tt['v'] == 1) - $ch ++; - if($tt['k'] == 'send_stream' && $tt['v'] == 0) - $ch ++; - } - if($ch == 2) - $public_forum = true; - } + if(($t) && (($t[0]['abook_my_perms'] & PERMS_W_TAGWALL) && (! ($t[0]['abook_my_perms'] & PERMS_W_STREAM)))) + $public_forum = true; } 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..1a770d4ff 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', 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 @@ -``` - -Or, using Webpack or Browserify: - -```javascript -require('readmore-js'); + ``` @@ -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/util/hmessages.po b/util/hmessages.po index 5dd687799..b076aadf8 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-22 00:02-0700\n" +"POT-Creation-Date: 2016-07-15 00:02-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,156 +17,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:904 -msgid "Social Networking" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:904 -msgid "Social - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:904 -msgid "Social - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:904 -msgid "Social - Private" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:905 -msgid "Community Forum" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:905 -msgid "Forum - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:905 -msgid "Forum - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:905 -msgid "Forum - Private" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:906 -msgid "Feed Republish" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:906 -msgid "Feed - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:906 -msgid "Feed - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:907 -msgid "Special Purpose" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:907 -msgid "Special - Celebrity/Soapbox" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:907 -msgid "Special - Group Repository" -msgstr "" - -#: ../../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 "" - -#: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:908 -msgid "Custom/Expert Mode" -msgstr "" - -#: ../../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 "" - -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "" - -#: ../../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 "" - -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "" - -#: ../../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 "" - -#: ../../Zotlabs/Access/Permissions.php:45 -msgid "Can administer my channel" -msgstr "" - #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2613 msgid "Collection" msgstr "" @@ -193,8 +48,8 @@ msgstr "" #: ../../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/Lib/Apps.php:565 ../../include/widgets.php:1594 +#: ../../include/conversation.php:1035 msgid "Unknown" msgstr "" @@ -223,13 +78,13 @@ msgstr "" #: ../../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/Embedphotos.php:159 ../../include/widgets.php:1607 msgid "Upload" msgstr "" #: ../../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:627 +#: ../../Zotlabs/Module/Settings.php:653 #: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "" @@ -256,22 +111,22 @@ msgstr "" #: ../../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/Settings.php:687 ../../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 +#: ../../include/page_widgets.php:39 ../../include/channel.php:961 +#: ../../include/channel.php:965 ../../include/menu.php:108 msgid "Edit" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:578 #: ../../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/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/Settings.php:688 ../../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" @@ -301,15 +156,15 @@ msgstr "" #: ../../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/Like.php:284 ../../Zotlabs/Module/Import_items.php:114 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 +#: ../../include/items.php:385 msgid "Permission denied" msgstr "" #: ../../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/Connedit.php:366 ../../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 @@ -330,10 +185,10 @@ msgstr "" #: ../../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/Item.php:211 ../../Zotlabs/Module/Item.php:219 +#: ../../Zotlabs/Module/Item.php:1067 ../../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/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:15 ../../Zotlabs/Module/Channel.php:104 @@ -350,7 +205,7 @@ msgstr "" #: ../../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:626 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Settings.php:607 ../../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 @@ -359,13 +214,13 @@ msgstr "" #: ../../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 +#: ../../include/photos.php:27 ../../include/items.php:3449 +#: ../../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 msgid "Permission denied." msgstr "" @@ -397,7 +252,7 @@ msgstr "" #: ../../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 +#: ../../include/channel.php:861 msgid "Requested profile is not available." msgstr "" @@ -421,19 +276,19 @@ msgstr "" msgid "Could not locate selected profile." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../Zotlabs/Module/Connedit.php:229 msgid "Failed to update connection record." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:660 #: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 #: ../../Zotlabs/Module/Events.php:468 #: ../../Zotlabs/Module/Filestorage.php:156 @@ -442,15 +297,15 @@ msgstr "" #: ../../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/Admin.php:459 ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Settings.php:616 ../../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:1708 msgid "No" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 +#: ../../Zotlabs/Module/Connedit.php:379 ../../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 @@ -458,285 +313,285 @@ msgstr "" #: ../../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/Admin.php:461 ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Settings.php:616 ../../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:1708 msgid "Yes" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../Zotlabs/Module/Connedit.php:411 msgid "Could not access address book record." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:455 +#: ../../Zotlabs/Module/Connedit.php:431 msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../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:446 ../../Zotlabs/Module/Connedit.php:455 +#: ../../Zotlabs/Module/Connedit.php:464 ../../Zotlabs/Module/Connedit.php:473 +#: ../../Zotlabs/Module/Connedit.php:486 msgid "Unable to set address book parameters." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:509 msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 +#: ../../Zotlabs/Module/Connedit.php:525 ../../Zotlabs/Lib/Apps.php:221 #: ../../include/nav.php:86 ../../include/conversation.php:957 msgid "View Profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:528 #, php-format msgid "View %s's profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:532 msgid "Refresh Permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:535 msgid "Fetch updated permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:539 msgid "Recent Activity" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:542 msgid "View recent posts and comments" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:546 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:546 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../Zotlabs/Module/Connedit.php:549 msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:574 +#: ../../Zotlabs/Module/Connedit.php:550 msgid "This connection is blocked!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:554 msgid "Unignore" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:554 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../Zotlabs/Module/Connedit.php:557 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:582 +#: ../../Zotlabs/Module/Connedit.php:558 msgid "This connection is ignored!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:562 msgid "Unarchive" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:562 msgid "Archive" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../Zotlabs/Module/Connedit.php:565 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:590 +#: ../../Zotlabs/Module/Connedit.php:566 msgid "This connection is archived!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:570 msgid "Unhide" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:570 msgid "Hide" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:573 msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:574 msgid "This connection is hidden!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:581 msgid "Delete this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:596 ../../include/widgets.php:493 msgid "Me" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:597 ../../include/widgets.php:494 msgid "Family" msgstr "" -#: ../../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:598 ../../Zotlabs/Module/Settings.php:377 +#: ../../Zotlabs/Module/Settings.php:381 ../../Zotlabs/Module/Settings.php:382 +#: ../../Zotlabs/Module/Settings.php:385 ../../Zotlabs/Module/Settings.php:396 +#: ../../include/widgets.php:495 ../../include/channel.php:389 +#: ../../include/channel.php:390 ../../include/channel.php:397 +#: ../../include/selectors.php:123 msgid "Friends" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:599 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:624 +#: ../../Zotlabs/Module/Connedit.php:600 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:660 msgid "Approve this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:660 msgid "Accept connection to allow communication" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:668 msgid "Set Profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:671 msgid "Set Affinity & Profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:704 msgid "none" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:708 ../../include/widgets.php:623 msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:708 ../../include/items.php:3936 #, php-format msgid "Connection: %s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:709 msgid "Apply these permissions automatically" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:709 msgid "Connection requests will be approved without your interaction" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "This connection's primary address is" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:712 msgid "Available locations:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:757 +#: ../../Zotlabs/Module/Connedit.php:716 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:717 msgid "Connection Tools" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:720 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:721 msgid "Slide to adjust your rating" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 +#: ../../Zotlabs/Module/Connedit.php:722 ../../Zotlabs/Module/Connedit.php:727 msgid "Optionally explain your rating" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:724 msgid "Custom Filter" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:725 msgid "Only import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:725 ../../Zotlabs/Module/Connedit.php:726 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:726 msgid "Do not import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:728 msgid "This information is public!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:733 msgid "Connection Pending Approval" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:736 msgid "inherited" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:737 ../../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/Profiles.php:687 ../../Zotlabs/Module/Import.php:551 #: ../../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/Mail.php:378 ../../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/Rate.php:170 ../../Zotlabs/Module/Settings.php:625 +#: ../../Zotlabs/Module/Settings.php:738 ../../Zotlabs/Module/Settings.php:779 +#: ../../Zotlabs/Module/Settings.php:805 ../../Zotlabs/Module/Settings.php:828 +#: ../../Zotlabs/Module/Settings.php:916 +#: ../../Zotlabs/Module/Settings.php:1108 ../../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 @@ -745,33 +600,33 @@ msgstr "" msgid "Submit" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Connedit.php:738 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Their Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:741 msgid "My Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:743 msgid "Individual Permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:744 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher priority than " "individual settings. You can not change those settings here." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:745 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher priority than " @@ -779,7 +634,7 @@ msgid "" "any impact unless the inherited setting changes." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:746 msgid "Last update:" msgstr "" @@ -793,7 +648,7 @@ msgstr "" #: ../../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 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3370 msgid "Item not found." msgstr "" @@ -815,7 +670,7 @@ msgstr "" #: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 #: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 +#: ../../include/network.php:2203 ../../boot.php:1706 msgid "Email" msgstr "" @@ -913,11 +768,11 @@ msgstr "" msgid "Homepage: " msgstr "" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1208 msgid "Age:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1051 #: ../../include/event.php:52 ../../include/event.php:84 #: ../../include/bb2diaspora.php:507 msgid "Location:" @@ -927,18 +782,18 @@ msgstr "" msgid "Description:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1224 msgid "Hometown:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1232 msgid "About:" msgstr "" #: ../../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/channel.php:1036 +#: ../../include/conversation.php:959 ../../include/connections.php:78 msgid "Connect" msgstr "" @@ -1082,9 +937,9 @@ msgstr "" msgid "Event not found." msgstr "" -#: ../../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 +#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 +#: ../../include/conversation.php:123 ../../include/text.php:1924 msgid "event" msgstr "" @@ -1289,8 +1144,8 @@ msgid "Photos" msgstr "" #: ../../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/Admin.php:1406 ../../Zotlabs/Module/Settings.php:626 +#: ../../Zotlabs/Module/Settings.php:652 ../../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 @@ -1326,8 +1181,8 @@ 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:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/widgets.php:201 +#: ../../include/text.php:926 ../../include/text.php:938 msgid "Save" msgstr "" @@ -1451,8 +1306,8 @@ msgstr "" #: ../../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 +#: ../../include/acl_selectors.php:274 ../../include/text.php:925 +#: ../../include/text.php:937 msgid "Search" msgstr "" @@ -1494,30 +1349,30 @@ msgstr "" msgid "Unable to process image." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4284 msgid "female" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4285 #, php-format msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4286 msgid "male" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4287 #, php-format msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4289 #, php-format msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1708 msgid "cover photo" msgstr "" @@ -1544,7 +1399,7 @@ msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:361 #: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings.php:1080 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "or" msgstr "" @@ -1644,19 +1499,19 @@ msgstr "" msgid "Bookmark this room" msgstr "" -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 +#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1181 msgid "Please enter a link URL:" msgstr "" -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 -#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 +#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 #: ../../include/conversation.php:1271 msgid "Encrypt text" msgstr "" #: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 +#: ../../Zotlabs/Module/Mail.php:252 ../../Zotlabs/Module/Mail.php:377 #: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 msgid "Insert web link" msgstr "" @@ -1802,7 +1657,7 @@ msgid "Could not create privacy group." msgstr "" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 +#: ../../include/items.php:3903 msgid "Privacy group not found." msgstr "" @@ -1949,11 +1804,11 @@ msgstr "" msgid "Activate the Firefox $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Acl.php:312 +#: ../../Zotlabs/Module/Acl.php:288 msgid "network" msgstr "" -#: ../../Zotlabs/Module/Acl.php:322 +#: ../../Zotlabs/Module/Acl.php:298 msgid "RSS" msgstr "" @@ -2001,7 +1856,7 @@ msgstr "" msgid "Notify your contacts about this file" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2248 msgid "Layouts" msgstr "" @@ -2070,62 +1925,62 @@ msgstr "" msgid "Previous action reversed." msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 #: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 #: ../../include/text.php:1921 msgid "photo" msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 #: ../../include/conversation.php:148 ../../include/text.php:1927 msgid "status" msgstr "" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../Zotlabs/Module/Like.php:424 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:425 +#: ../../Zotlabs/Module/Like.php:426 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:427 +#: ../../Zotlabs/Module/Like.php:428 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:429 +#: ../../Zotlabs/Module/Like.php:430 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Like.php:432 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:433 +#: ../../Zotlabs/Module/Like.php:434 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "" -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "" @@ -2220,7 +2075,7 @@ msgid "View this profile" msgstr "" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 +#: ../../include/channel.php:983 msgid "Edit visibility" msgstr "" @@ -2232,7 +2087,7 @@ msgstr "" msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:954 msgid "Change profile photo" msgstr "" @@ -2252,8 +2107,8 @@ msgstr "" msgid "Add profile things" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1541 msgid "Personal" msgstr "" @@ -2393,89 +2248,89 @@ msgstr "" msgid "My other channels" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:979 msgid "Profile Image" msgstr "" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 +#: ../../include/channel.php:961 msgid "Edit Profiles" msgstr "" -#: ../../Zotlabs/Module/Import.php:33 +#: ../../Zotlabs/Module/Import.php:32 #, php-format msgid "Your service plan only allows %d channels." msgstr "" -#: ../../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 "" -#: ../../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 "" -#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import.php:100 #: ../../Zotlabs/Module/Import_items.php:72 msgid "Imported file is empty." msgstr "" -#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import.php:122 #: ../../Zotlabs/Module/Import_items.php:88 #, php-format msgid "Warning: Database versions differ by %1$d updates." msgstr "" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +#: ../../Zotlabs/Module/Import.php:152 ../../include/import.php:86 msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../Zotlabs/Module/Import.php:163 +#: ../../Zotlabs/Module/Import.php:162 msgid "No channel. Import failed." msgstr "" -#: ../../Zotlabs/Module/Import.php:520 +#: ../../Zotlabs/Module/Import.php:511 #: ../../include/Import/import_diaspora.php:142 msgid "Import completed." msgstr "" -#: ../../Zotlabs/Module/Import.php:542 +#: ../../Zotlabs/Module/Import.php:533 msgid "You must be logged in to use this feature." msgstr "" -#: ../../Zotlabs/Module/Import.php:547 +#: ../../Zotlabs/Module/Import.php:538 msgid "Import Channel" msgstr "" -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Import.php:539 msgid "" "Use this form to import an existing channel from a different server/hub. You " "may retrieve the channel identity from the old server/hub via the network or " "provide an export file." msgstr "" -#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import.php:540 #: ../../Zotlabs/Module/Import_items.php:121 msgid "File to Upload" msgstr "" -#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import.php:541 msgid "Or provide the old server/hub details" msgstr "" -#: ../../Zotlabs/Module/Import.php:551 +#: ../../Zotlabs/Module/Import.php:542 msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../Zotlabs/Module/Import.php:552 +#: ../../Zotlabs/Module/Import.php:543 msgid "Your old login email address" msgstr "" -#: ../../Zotlabs/Module/Import.php:553 +#: ../../Zotlabs/Module/Import.php:544 msgid "Your old login password" msgstr "" -#: ../../Zotlabs/Module/Import.php:554 +#: ../../Zotlabs/Module/Import.php:545 msgid "" "For either option, please choose whether to make this hub your new primary " "address, or whether your old location should continue this role. You will be " @@ -2483,27 +2338,27 @@ msgid "" "location for files, photos, and media." msgstr "" -#: ../../Zotlabs/Module/Import.php:555 +#: ../../Zotlabs/Module/Import.php:546 msgid "Make this hub my primary location" msgstr "" -#: ../../Zotlabs/Module/Import.php:556 +#: ../../Zotlabs/Module/Import.php:547 msgid "" "Import existing posts if possible (experimental - limited by available memory" msgstr "" -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Module/Import.php:548 msgid "" "This process may take several minutes to complete. Please submit the form " "only once and leave this page open until finished." msgstr "" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 #: ../../Zotlabs/Module/Siteinfo.php:48 msgid "$Projectname" msgstr "" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Home.php:79 #, php-format msgid "Welcome to %s" msgstr "" @@ -2512,32 +2367,32 @@ msgstr "" msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Item.php:432 +#: ../../Zotlabs/Module/Item.php:428 msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Item.php:472 +#: ../../Zotlabs/Module/Item.php:468 msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../Zotlabs/Module/Item.php:856 +#: ../../Zotlabs/Module/Item.php:852 msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Item.php:989 +#: ../../Zotlabs/Module/Item.php:985 msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Item.php:1242 +#: ../../Zotlabs/Module/Item.php:1238 msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Item.php:1249 +#: ../../Zotlabs/Module/Item.php:1245 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Item.php:1256 +#: ../../Zotlabs/Module/Item.php:1252 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "" @@ -2632,12 +2487,12 @@ msgid "Show Oldest First" msgstr "" #: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1588 msgid "View Photo" msgstr "" #: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1605 msgid "Edit Album" msgstr "" @@ -2776,7 +2631,7 @@ msgid "View all" msgstr "" #: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 +#: ../../include/taxonomy.php:403 ../../include/channel.php:1183 #: ../../include/conversation.php:1762 msgctxt "noun" msgid "Like" @@ -2828,11 +2683,11 @@ msgstr "" msgid "Recent Photos" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:75 +#: ../../Zotlabs/Module/Lockview.php:61 msgid "Remote privacy information not available." msgstr "" -#: ../../Zotlabs/Module/Lockview.php:96 +#: ../../Zotlabs/Module/Lockview.php:82 msgid "Visible to:" msgstr "" @@ -2889,7 +2744,7 @@ msgstr "" msgid "Enter email addresses, one per line:" msgstr "" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 msgid "Your message:" msgstr "" @@ -2985,87 +2840,87 @@ msgstr "" msgid "Cannot verify requested channel." msgstr "" -#: ../../Zotlabs/Module/Mail.php:70 +#: ../../Zotlabs/Module/Mail.php:78 msgid "Selected channel has private message restrictions. Send failed." msgstr "" -#: ../../Zotlabs/Module/Mail.php:135 +#: ../../Zotlabs/Module/Mail.php:143 msgid "Messages" msgstr "" -#: ../../Zotlabs/Module/Mail.php:170 +#: ../../Zotlabs/Module/Mail.php:178 msgid "Message recalled." msgstr "" -#: ../../Zotlabs/Module/Mail.php:183 +#: ../../Zotlabs/Module/Mail.php:191 msgid "Conversation removed." msgstr "" -#: ../../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 "" -#: ../../Zotlabs/Module/Mail.php:226 +#: ../../Zotlabs/Module/Mail.php:234 msgid "Requested channel is not in this network" msgstr "" -#: ../../Zotlabs/Module/Mail.php:234 +#: ../../Zotlabs/Module/Mail.php:242 msgid "Send Private Message" msgstr "" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 msgid "To:" msgstr "" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 msgid "Subject:" msgstr "" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 #: ../../include/conversation.php:1231 msgid "Attach file" msgstr "" -#: ../../Zotlabs/Module/Mail.php:245 +#: ../../Zotlabs/Module/Mail.php:253 msgid "Send" msgstr "" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 #: ../../include/conversation.php:1266 msgid "Set expiration date" msgstr "" -#: ../../Zotlabs/Module/Mail.php:332 +#: ../../Zotlabs/Module/Mail.php:340 msgid "Delete message" msgstr "" -#: ../../Zotlabs/Module/Mail.php:333 +#: ../../Zotlabs/Module/Mail.php:341 msgid "Delivery report" msgstr "" -#: ../../Zotlabs/Module/Mail.php:334 +#: ../../Zotlabs/Module/Mail.php:342 msgid "Recall message" msgstr "" -#: ../../Zotlabs/Module/Mail.php:336 +#: ../../Zotlabs/Module/Mail.php:344 msgid "Message has been recalled." msgstr "" -#: ../../Zotlabs/Module/Mail.php:353 +#: ../../Zotlabs/Module/Mail.php:361 msgid "Delete Conversation" msgstr "" -#: ../../Zotlabs/Module/Mail.php:355 +#: ../../Zotlabs/Module/Mail.php:363 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "" -#: ../../Zotlabs/Module/Mail.php:359 +#: ../../Zotlabs/Module/Mail.php:367 msgid "Send Reply" msgstr "" -#: ../../Zotlabs/Module/Mail.php:364 +#: ../../Zotlabs/Module/Mail.php:372 #, php-format msgid "Your message for %s (%s):" msgstr "" @@ -3151,7 +3006,7 @@ msgstr "" msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2247 msgid "Menus" msgstr "" @@ -3382,7 +3237,7 @@ msgid "Menu Item Permissions" msgstr "" #: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 +#: ../../Zotlabs/Module/Settings.php:1142 msgid "(click to open/close)" msgstr "" @@ -3567,11 +3422,11 @@ msgstr "" msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2837 msgid "Default" msgstr "" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:872 msgid "mobile" msgstr "" @@ -3603,7 +3458,7 @@ msgstr "" msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1471 msgid "Site" msgstr "" @@ -3890,12 +3745,12 @@ msgid "0 for no expiration of imported content" msgstr "" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:796 msgid "Off" msgstr "" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:796 msgid "On" msgstr "" @@ -3952,7 +3807,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1474 msgid "Security" msgstr "" @@ -4119,7 +3974,7 @@ msgid "Account '%s' unblocked" msgstr "" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1472 msgid "Accounts" msgstr "" @@ -4225,7 +4080,7 @@ msgstr "" msgid "Channel '%s' code disallowed" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1473 msgid "Channels" msgstr "" @@ -4284,7 +4139,7 @@ msgid "Enable" msgstr "" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1476 msgid "Plugins" msgstr "" @@ -4293,8 +4148,8 @@ msgid "Toggle" msgstr "" #: ../../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:216 ../../include/widgets.php:647 +#: ../../include/nav.php:210 msgid "Settings" msgstr "" @@ -4366,8 +4221,8 @@ msgstr "" msgid "Install a New Plugin Repository" msgstr "" -#: ../../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:75 +#: ../../Zotlabs/Module/Settings.php:651 ../../Zotlabs/Lib/Apps.php:334 msgid "Update" msgstr "" @@ -4384,7 +4239,7 @@ msgid "Screenshot" msgstr "" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1477 msgid "Themes" msgstr "" @@ -4400,8 +4255,8 @@ msgstr "" msgid "Log settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1498 +#: ../../include/widgets.php:1508 msgid "Logs" msgstr "" @@ -4467,7 +4322,7 @@ msgstr "" msgid "Edit Profile Field" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1479 msgid "Profile Fields" msgstr "" @@ -4624,7 +4479,7 @@ msgstr "" msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:252 msgid "Login failed." msgstr "" @@ -4636,7 +4491,7 @@ msgstr "" msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1275 msgid "Profile" msgstr "" @@ -4663,7 +4518,7 @@ msgid "" "to correctly use this feature." msgstr "" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 #, php-format msgid "Fetching URL returns error: %1$s" msgstr "" @@ -4809,7 +4664,7 @@ msgstr "" msgid "Block Name" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2246 msgid "Blocks" msgstr "" @@ -4850,8 +4705,8 @@ msgstr "" msgid "Description: " msgstr "" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:165 msgid "Apps" msgstr "" @@ -4992,79 +4847,79 @@ msgstr "" msgid "Please login." msgstr "" -#: ../../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 "" -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "" -#: ../../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 "" -#: ../../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 "" -#: ../../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 "" -#: ../../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 "" -#: ../../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 "" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:740 msgid "Remove Account" msgstr "" -#: ../../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 "" -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This channel will be completely removed from the network. " msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "Remove this channel and all its clones from the network" msgstr "" -#: ../../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 "" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1198 msgid "Remove Channel" msgstr "" @@ -5140,651 +4995,628 @@ msgstr "" msgid "No service class restrictions found." msgstr "" -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:67 msgid "Name is required" msgstr "" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:71 msgid "Key and Secret are required" msgstr "" -#: ../../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 +#: ../../Zotlabs/Module/Settings.php:154 msgid "Token saved." msgstr "" -#: ../../Zotlabs/Module/Settings.php:274 +#: ../../Zotlabs/Module/Settings.php:260 msgid "Not valid email." msgstr "" -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../Zotlabs/Module/Settings.php:263 msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../Zotlabs/Module/Settings.php:286 +#: ../../Zotlabs/Module/Settings.php:272 msgid "System failure storing new email. Please try again." msgstr "" -#: ../../Zotlabs/Module/Settings.php:303 +#: ../../Zotlabs/Module/Settings.php:289 msgid "Password verification failed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../Zotlabs/Module/Settings.php:296 msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Settings.php:314 +#: ../../Zotlabs/Module/Settings.php:300 msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Settings.php:328 +#: ../../Zotlabs/Module/Settings.php:314 msgid "Password changed." msgstr "" -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../Zotlabs/Module/Settings.php:316 msgid "Password update failed. Please try again." msgstr "" -#: ../../Zotlabs/Module/Settings.php:579 +#: ../../Zotlabs/Module/Settings.php:560 msgid "Settings updated." msgstr "" -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Settings.php:624 ../../Zotlabs/Module/Settings.php:650 +#: ../../Zotlabs/Module/Settings.php:686 msgid "Add application" msgstr "" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:627 msgid "Name of application" msgstr "" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 +#: ../../Zotlabs/Module/Settings.php:628 ../../Zotlabs/Module/Settings.php:654 msgid "Consumer Key" msgstr "" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 +#: ../../Zotlabs/Module/Settings.php:628 ../../Zotlabs/Module/Settings.php:629 msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 +#: ../../Zotlabs/Module/Settings.php:629 ../../Zotlabs/Module/Settings.php:655 msgid "Consumer Secret" msgstr "" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 +#: ../../Zotlabs/Module/Settings.php:630 ../../Zotlabs/Module/Settings.php:656 msgid "Redirect" msgstr "" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../Zotlabs/Module/Settings.php:630 msgid "" "Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:631 ../../Zotlabs/Module/Settings.php:657 msgid "Icon url" msgstr "" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Settings.php:631 ../../Zotlabs/Module/Sources.php:112 #: ../../Zotlabs/Module/Sources.php:147 msgid "Optional" msgstr "" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:642 msgid "Application not found." msgstr "" -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:685 msgid "Connected Apps" msgstr "" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:689 msgid "Client key starts with" msgstr "" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:690 msgid "No name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:691 msgid "Remove authorization" msgstr "" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Settings.php:704 msgid "No feature settings configured" msgstr "" -#: ../../Zotlabs/Module/Settings.php:730 +#: ../../Zotlabs/Module/Settings.php:711 msgid "Feature/Addon Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:734 msgid "Account Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:735 msgid "Current Password" msgstr "" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:736 msgid "Enter New Password" msgstr "" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:737 msgid "Confirm New Password" msgstr "" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:737 msgid "Leave password fields blank unless changing" msgstr "" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:739 +#: ../../Zotlabs/Module/Settings.php:1115 msgid "Email Address:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../Zotlabs/Module/Settings.php:741 msgid "Remove this account including all its channels" msgstr "" -#: ../../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 dropbox 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 +#: ../../Zotlabs/Module/Settings.php:773 ../../include/widgets.php:614 msgid "Guest Access Tokens" msgstr "" -#: ../../Zotlabs/Module/Settings.php:803 +#: ../../Zotlabs/Module/Settings.php:776 msgid "Login Name" msgstr "" -#: ../../Zotlabs/Module/Settings.php:804 +#: ../../Zotlabs/Module/Settings.php:777 msgid "Login Password" msgstr "" -#: ../../Zotlabs/Module/Settings.php:805 +#: ../../Zotlabs/Module/Settings.php:778 msgid "Expires (yyyy-mm-dd)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:830 +#: ../../Zotlabs/Module/Settings.php:803 msgid "Additional Features" msgstr "" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:827 msgid "Connector Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../Zotlabs/Module/Settings.php:866 msgid "No special theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:869 #, php-format msgid "%s - (Experimental)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:911 msgid "Display Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:912 msgid "Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:913 msgid "Custom Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:914 msgid "Content Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:920 msgid "Display Theme:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:921 msgid "Mobile Theme:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:922 msgid "Preload images before rendering the page" msgstr "" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:922 msgid "" "The subjective page load time will be longer but the page will be ready when " "displayed" msgstr "" -#: ../../Zotlabs/Module/Settings.php:950 +#: ../../Zotlabs/Module/Settings.php:923 msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:924 msgid "Update browser every xx seconds" msgstr "" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:924 msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:925 msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:925 msgid "Maximum of 100 items" msgstr "" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:926 msgid "Show emoticons (smilies) as images" msgstr "" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../Zotlabs/Module/Settings.php:927 msgid "Link post titles to source" msgstr "" -#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:928 msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:958 +#: ../../Zotlabs/Module/Settings.php:931 msgid "Use blog/list mode on channel page" msgstr "" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:931 ../../Zotlabs/Module/Settings.php:932 msgid "(comments displayed separately)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:932 msgid "Use blog/list mode on grid page" msgstr "" -#: ../../Zotlabs/Module/Settings.php:960 +#: ../../Zotlabs/Module/Settings.php:933 msgid "Channel page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:933 ../../Zotlabs/Module/Settings.php:934 msgid "click to expand content exceeding this height" msgstr "" -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:934 msgid "Grid page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:968 msgid "Nobody except yourself" msgstr "" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:969 msgid "Only those you specifically allow" msgstr "" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:970 msgid "Approved connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:971 msgid "Any connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:972 msgid "Anybody on this website" msgstr "" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:973 msgid "Anybody in this network" msgstr "" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:974 msgid "Anybody authenticated" msgstr "" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:975 msgid "Anybody on the internet" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../Zotlabs/Module/Settings.php:1050 msgid "Publish your default profile in the network directory" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1076 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:1064 msgid "Your channel address is" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "Channel Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1113 msgid "Basic Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1114 ../../include/channel.php:1165 msgid "Full Name:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1116 msgid "Your Timezone:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1117 msgid "Default Post Location:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1117 msgid "Geographical location to display on your posts" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1118 msgid "Use Browser Location:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "Adult Content" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1122 msgid "Security and Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Hide my online presence" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1129 msgid "Simple Privacy Settings:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Settings.php:1130 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1152 +#: ../../Zotlabs/Module/Settings.php:1131 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1153 +#: ../../Zotlabs/Module/Settings.php:1132 msgid "Private - default private, never open or public" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1154 +#: ../../Zotlabs/Module/Settings.php:1133 msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1135 msgid "Allow others to tag your posts" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1135 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1158 +#: ../../Zotlabs/Module/Settings.php:1137 msgid "Advanced Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "Expire other channel content after this many days" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1139 #, php-format msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1139 msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1140 msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1140 msgid "May reduce spam activity" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1141 msgid "Default Post and Publish Permissions" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../Zotlabs/Module/Settings.php:1143 msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1146 msgid "Channel permissions category:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1152 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1152 msgid "Useful to reduce spamming" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1155 msgid "Notification Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1156 msgid "By default post a status message when:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1157 msgid "accepting a friend request" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1158 msgid "joining a forum/community" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1159 msgid "making an interesting profile change" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1160 msgid "Send a notification email when:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1161 msgid "You receive a connection request" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1162 msgid "Your connections are confirmed" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../Zotlabs/Module/Settings.php:1163 msgid "Someone writes on your profile wall" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1164 msgid "Someone writes a followup comment" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1165 msgid "You receive a private message" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1166 msgid "You receive a friend suggestion" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1167 msgid "You are tagged in a post" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../Zotlabs/Module/Settings.php:1168 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1171 msgid "Show visual notifications including:" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1173 msgid "Unseen grid activity" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1174 msgid "Unseen channel activity" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1175 msgid "Unseen private messages" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1196 -#: ../../Zotlabs/Module/Settings.php:1201 -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1175 +#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1182 msgid "Recommended" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1176 msgid "Upcoming events" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1177 msgid "Events today" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1178 msgid "Upcoming birthdays" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1178 msgid "Not available in all themes" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1179 msgid "System (personal) notifications" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1180 msgid "System info messages" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1181 msgid "System critical alerts" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1182 msgid "New connections" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1183 msgid "System Registrations" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1184 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1186 msgid "Notify me of events this many days in advance" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1186 msgid "Must be greater than 0" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../Zotlabs/Module/Settings.php:1188 msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1210 +#: ../../Zotlabs/Module/Settings.php:1189 msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1192 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1214 +#: ../../Zotlabs/Module/Settings.php:1193 msgid "Miscellaneous Settings" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1194 msgid "Default photo upload folder" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1215 -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1195 msgid "%Y - current year, %m - current month" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1195 msgid "Default file upload folder" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1218 +#: ../../Zotlabs/Module/Settings.php:1197 msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1199 msgid "Remove this channel." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1200 msgid "Firefox Share $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1201 msgid "Start calendar week on monday" msgstr "" @@ -6303,8 +6135,8 @@ msgstr "" msgid "*" msgstr "" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:639 +#: ../../include/features.php:72 msgid "Channel Sources" msgstr "" @@ -6841,7 +6673,7 @@ msgstr "" msgid "Invite" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1475 msgid "Features" msgstr "" @@ -7034,61 +6866,61 @@ msgstr "" msgid "Visible to your default audience" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../Zotlabs/Lib/PermissionDescription.php:115 #: ../../include/acl_selectors.php:266 msgid "Only me" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:107 +#: ../../Zotlabs/Lib/PermissionDescription.php:116 msgid "Public" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:108 +#: ../../Zotlabs/Lib/PermissionDescription.php:117 msgid "Anybody in the $Projectname network" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#: ../../Zotlabs/Lib/PermissionDescription.php:118 #, php-format msgid "Any account on %s" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#: ../../Zotlabs/Lib/PermissionDescription.php:119 msgid "Any of my connections" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:111 +#: ../../Zotlabs/Lib/PermissionDescription.php:120 msgid "Only connections I specifically allow" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:112 +#: ../../Zotlabs/Lib/PermissionDescription.php:121 msgid "Anybody authenticated (could include visitors from other networks)" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:113 +#: ../../Zotlabs/Lib/PermissionDescription.php:122 msgid "Any connections including those who haven't yet been approved" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:152 +#: ../../Zotlabs/Lib/PermissionDescription.php:161 msgid "" "This is your default setting for the audience of your normal stream, and " "posts." msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 +#: ../../Zotlabs/Lib/PermissionDescription.php:162 msgid "" "This is your default setting for who can view your default channel profile" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:154 +#: ../../Zotlabs/Lib/PermissionDescription.php:163 msgid "This is your default setting for who can view your connections" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:155 +#: ../../Zotlabs/Lib/PermissionDescription.php:164 msgid "" "This is your default setting for who can view your file storage and photos" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:156 +#: ../../Zotlabs/Lib/PermissionDescription.php:165 msgid "This is your default setting for the audience of your webpages" msgstr "" @@ -7096,7 +6928,7 @@ msgstr "" msgid "No username found in import file." msgstr "" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 msgid "Unable to create a unique channel address. Import failed." msgstr "" @@ -7105,35 +6937,262 @@ msgstr "" msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" +#: ../../include/widgets.php:46 ../../include/widgets.php:429 +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/contact_widgets.php:91 +msgid "Categories" msgstr "" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "" +#: ../../include/widgets.php:103 +msgid "System" +msgstr "" -#: ../../include/photos.php:259 -msgid "Photo storage failed." +#: ../../include/widgets.php:106 +msgid "New App" msgstr "" -#: ../../include/photos.php:299 -msgid "a new photo" +#: ../../include/widgets.php:154 +msgid "Suggestions" msgstr "" -#: ../../include/photos.php:303 +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "" + +#: ../../include/widgets.php:175 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" +#: ../../include/widgets.php:181 +msgid "Add New Connection" msgstr "" -#: ../../include/photos.php:510 -msgid "Upload New Photos" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "" + +#: ../../include/widgets.php:281 ../../include/features.php:85 +msgid "Saved Searches" +msgstr "" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "" + +#: ../../include/widgets.php:310 ../../include/features.php:99 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "" + +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" +msgstr "" + +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" +msgstr "" + +#: ../../include/widgets.php:662 +msgid "Combined View" +msgstr "" + +#: ../../include/widgets.php:667 ../../include/nav.php:198 +msgid "Inbox" +msgstr "" + +#: ../../include/widgets.php:672 ../../include/nav.php:199 +msgid "Outbox" +msgstr "" + +#: ../../include/widgets.php:677 ../../include/nav.php:200 +msgid "New Message" +msgstr "" + +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" +msgstr "" + +#: ../../include/widgets.php:698 +msgid "Received Messages" +msgstr "" + +#: ../../include/widgets.php:702 +msgid "Sent Messages" +msgstr "" + +#: ../../include/widgets.php:716 +msgid "No messages." +msgstr "" + +#: ../../include/widgets.php:734 +msgid "Delete conversation" +msgstr "" + +#: ../../include/widgets.php:760 +msgid "Events Tools" +msgstr "" + +#: ../../include/widgets.php:761 +msgid "Export Calendar" +msgstr "" + +#: ../../include/widgets.php:762 +msgid "Import Calendar" +msgstr "" + +#: ../../include/widgets.php:836 ../../include/conversation.php:1677 +#: ../../include/conversation.php:1680 +msgid "Chatrooms" +msgstr "" + +#: ../../include/widgets.php:840 +msgid "Overview" +msgstr "" + +#: ../../include/widgets.php:847 +msgid "Chat Members" +msgstr "" + +#: ../../include/widgets.php:869 +msgid "Wiki List" +msgstr "" + +#: ../../include/widgets.php:907 +msgid "Wiki Pages" +msgstr "" + +#: ../../include/widgets.php:942 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../include/widgets.php:965 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 +msgid "photo/image" +msgstr "" + +#: ../../include/widgets.php:1166 +msgid "Click to show more" +msgstr "" + +#: ../../include/widgets.php:1317 +msgid "Rating Tools" +msgstr "" + +#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 +msgid "Rate Me" +msgstr "" + +#: ../../include/widgets.php:1326 +msgid "View Ratings" +msgstr "" + +#: ../../include/widgets.php:1405 +msgid "Forums" +msgstr "" + +#: ../../include/widgets.php:1434 +msgid "Tasks" +msgstr "" + +#: ../../include/widgets.php:1443 +msgid "Documentation" +msgstr "" + +#: ../../include/widgets.php:1445 +msgid "Project/Site Information" +msgstr "" + +#: ../../include/widgets.php:1446 +msgid "For Members" +msgstr "" + +#: ../../include/widgets.php:1447 +msgid "For Administrators" +msgstr "" + +#: ../../include/widgets.php:1448 +msgid "For Developers" +msgstr "" + +#: ../../include/widgets.php:1472 ../../include/widgets.php:1510 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../include/widgets.php:1478 +msgid "Inspect queue" +msgstr "" + +#: ../../include/widgets.php:1480 +msgid "DB updates" +msgstr "" + +#: ../../include/widgets.php:1505 ../../include/nav.php:218 +msgid "Admin" +msgstr "" + +#: ../../include/widgets.php:1506 +msgid "Plugin Features" msgstr "" #: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 @@ -7160,7 +7219,7 @@ msgstr "" msgid "Manage/Edit profiles" msgstr "" -#: ../../include/nav.php:90 ../../include/channel.php:980 +#: ../../include/nav.php:90 ../../include/channel.php:965 msgid "Edit Profile" msgstr "" @@ -7277,18 +7336,6 @@ msgstr "" msgid "Mark all private messages seen" msgstr "" -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "" - #: ../../include/nav.php:203 msgid "Event Calendar" msgstr "" @@ -7309,10 +7356,6 @@ msgstr "" msgid "Account/Channel Settings" msgstr "" -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "" - #: ../../include/nav.php:218 msgid "Site Setup and Configuration" msgstr "" @@ -7382,6 +7425,14 @@ msgstr "" msgid "MySpace" msgstr "" +#: ../../include/oembed.php:325 +msgid "Embedded content" +msgstr "" + +#: ../../include/oembed.php:334 +msgid "Embedding disabled" +msgstr "" + #: ../../include/page_widgets.php:7 msgid "New Page" msgstr "" @@ -7390,12 +7441,37 @@ msgstr "" msgid "Title" msgstr "" -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "" - +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "" + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "" + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "" + +#: ../../include/photos.php:506 ../../include/conversation.php:1650 +msgid "Photo Albums" +msgstr "" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "" + #: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 msgid "Tags" msgstr "" @@ -7428,612 +7504,360 @@ msgstr "" msgid "dislikes" msgstr "" -#: ../../include/channel.php:33 +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "" + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "" + +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "" + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "" + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "" + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "" + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "" + +#: ../../include/channel.php:32 msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/channel.php:67 +#: ../../include/channel.php:66 msgid "Empty name" msgstr "" -#: ../../include/channel.php:70 +#: ../../include/channel.php:69 msgid "Name too long" msgstr "" -#: ../../include/channel.php:181 +#: ../../include/channel.php:180 msgid "No account identifier" msgstr "" -#: ../../include/channel.php:193 +#: ../../include/channel.php:192 msgid "Nickname is required." msgstr "" -#: ../../include/channel.php:207 +#: ../../include/channel.php:206 msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/channel.php:212 +#: ../../include/channel.php:211 msgid "" "Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/channel.php:272 +#: ../../include/channel.php:287 msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/channel.php:341 +#: ../../include/channel.php:345 msgid "Default Profile" msgstr "" -#: ../../include/channel.php:830 +#: ../../include/channel.php:815 msgid "Requested channel is not available." msgstr "" -#: ../../include/channel.php:977 +#: ../../include/channel.php:962 msgid "Create New Profile" msgstr "" -#: ../../include/channel.php:997 +#: ../../include/channel.php:982 msgid "Visible to everybody" msgstr "" -#: ../../include/channel.php:1070 ../../include/channel.php:1182 +#: ../../include/channel.php:1055 ../../include/channel.php:1167 msgid "Gender:" msgstr "" -#: ../../include/channel.php:1071 ../../include/channel.php:1226 +#: ../../include/channel.php:1056 ../../include/channel.php:1211 msgid "Status:" msgstr "" -#: ../../include/channel.php:1072 ../../include/channel.php:1237 +#: ../../include/channel.php:1057 ../../include/channel.php:1222 msgid "Homepage:" msgstr "" -#: ../../include/channel.php:1073 +#: ../../include/channel.php:1058 msgid "Online Now" msgstr "" -#: ../../include/channel.php:1187 +#: ../../include/channel.php:1172 msgid "Like this channel" msgstr "" -#: ../../include/channel.php:1211 +#: ../../include/channel.php:1196 msgid "j F, Y" msgstr "" -#: ../../include/channel.php:1212 +#: ../../include/channel.php:1197 msgid "j F" msgstr "" -#: ../../include/channel.php:1219 +#: ../../include/channel.php:1204 msgid "Birthday:" msgstr "" -#: ../../include/channel.php:1232 +#: ../../include/channel.php:1217 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/channel.php:1235 +#: ../../include/channel.php:1220 msgid "Sexual Preference:" msgstr "" -#: ../../include/channel.php:1241 +#: ../../include/channel.php:1226 msgid "Tags:" msgstr "" -#: ../../include/channel.php:1243 +#: ../../include/channel.php:1228 msgid "Political Views:" msgstr "" -#: ../../include/channel.php:1245 +#: ../../include/channel.php:1230 msgid "Religion:" msgstr "" -#: ../../include/channel.php:1249 +#: ../../include/channel.php:1234 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/channel.php:1251 +#: ../../include/channel.php:1236 msgid "Likes:" msgstr "" -#: ../../include/channel.php:1253 +#: ../../include/channel.php:1238 msgid "Dislikes:" msgstr "" -#: ../../include/channel.php:1255 +#: ../../include/channel.php:1240 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/channel.php:1257 +#: ../../include/channel.php:1242 msgid "My other channels:" msgstr "" -#: ../../include/channel.php:1259 +#: ../../include/channel.php:1244 msgid "Musical interests:" msgstr "" -#: ../../include/channel.php:1261 +#: ../../include/channel.php:1246 msgid "Books, literature:" msgstr "" -#: ../../include/channel.php:1263 +#: ../../include/channel.php:1248 msgid "Television:" msgstr "" -#: ../../include/channel.php:1265 +#: ../../include/channel.php:1250 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/channel.php:1267 +#: ../../include/channel.php:1252 msgid "Love/Romance:" msgstr "" -#: ../../include/channel.php:1269 +#: ../../include/channel.php:1254 msgid "Work/employment:" msgstr "" -#: ../../include/channel.php:1271 +#: ../../include/channel.php:1256 msgid "School/education:" msgstr "" -#: ../../include/channel.php:1292 +#: ../../include/channel.php:1277 msgid "Like this thing" msgstr "" -#: ../../include/connections.php:95 -msgid "New window" +#: ../../include/selectors.php:30 +msgid "Frequently" msgstr "" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/selectors.php:31 +msgid "Hourly" msgstr "" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" +#: ../../include/selectors.php:32 +msgid "Twice daily" msgstr "" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" +#: ../../include/selectors.php:33 +msgid "Daily" msgstr "" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" +#: ../../include/selectors.php:34 +msgid "Weekly" msgstr "" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" +#: ../../include/selectors.php:35 +msgid "Monthly" msgstr "" -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" +#: ../../include/selectors.php:49 +msgid "Currently Male" msgstr "" -#: ../../include/conversation.php:713 -msgid "Categories:" +#: ../../include/selectors.php:49 +msgid "Currently Female" msgstr "" -#: ../../include/conversation.php:714 -msgid "Filed under:" +#: ../../include/selectors.php:49 +msgid "Mostly Male" msgstr "" -#: ../../include/conversation.php:741 -msgid "View in context" +#: ../../include/selectors.php:49 +msgid "Mostly Female" msgstr "" -#: ../../include/conversation.php:850 -msgid "remove" +#: ../../include/selectors.php:49 +msgid "Transgender" msgstr "" -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" +#: ../../include/selectors.php:49 +msgid "Intersex" msgstr "" -#: ../../include/conversation.php:951 -msgid "View Source" +#: ../../include/selectors.php:49 +msgid "Transsexual" msgstr "" -#: ../../include/conversation.php:952 -msgid "Follow Thread" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" msgstr "" -#: ../../include/conversation.php:953 -msgid "Unfollow Thread" +#: ../../include/selectors.php:49 +msgid "Neuter" msgstr "" -#: ../../include/conversation.php:958 -msgid "Activity/Posts" +#: ../../include/selectors.php:49 +msgid "Non-specific" msgstr "" -#: ../../include/conversation.php:960 -msgid "Edit Connection" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" msgstr "" -#: ../../include/conversation.php:961 -msgid "Message" +#: ../../include/selectors.php:49 +msgid "Undecided" msgstr "" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s likes this." +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" msgstr "" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s doesn't like this." +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" msgstr "" -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1084 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1090 -msgid "and" +#: ../../include/selectors.php:85 +msgid "Gay" msgstr "" -#: ../../include/conversation.php:1093 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s like this." +#: ../../include/selectors.php:85 +msgid "Lesbian" msgstr "" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s don't like this." +#: ../../include/selectors.php:85 +msgid "No Preference" msgstr "" -#: ../../include/conversation.php:1133 -msgid "Set your location" +#: ../../include/selectors.php:85 +msgid "Bisexual" msgstr "" -#: ../../include/conversation.php:1134 -msgid "Clear browser location" +#: ../../include/selectors.php:85 +msgid "Autosexual" msgstr "" -#: ../../include/conversation.php:1182 -msgid "Tag term:" +#: ../../include/selectors.php:85 +msgid "Abstinent" msgstr "" -#: ../../include/conversation.php:1183 -msgid "Where are you right now?" +#: ../../include/selectors.php:85 +msgid "Virgin" msgstr "" -#: ../../include/conversation.php:1221 -msgid "Page link name" +#: ../../include/selectors.php:85 +msgid "Deviant" msgstr "" -#: ../../include/conversation.php:1224 -msgid "Post as" +#: ../../include/selectors.php:85 +msgid "Fetish" msgstr "" -#: ../../include/conversation.php:1238 -msgid "Toggle voting" +#: ../../include/selectors.php:85 +msgid "Oodles" msgstr "" -#: ../../include/conversation.php:1246 -msgid "Categories (optional, comma-separated list)" +#: ../../include/selectors.php:85 +msgid "Nonsexual" msgstr "" -#: ../../include/conversation.php:1269 -msgid "Set publish date" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" msgstr "" -#: ../../include/conversation.php:1518 -msgid "Discover" +#: ../../include/selectors.php:123 +msgid "Lonely" msgstr "" -#: ../../include/conversation.php:1521 -msgid "Imported public streams" +#: ../../include/selectors.php:123 +msgid "Available" msgstr "" -#: ../../include/conversation.php:1526 -msgid "Commented Order" +#: ../../include/selectors.php:123 +msgid "Unavailable" msgstr "" -#: ../../include/conversation.php:1529 -msgid "Sort by Comment Date" +#: ../../include/selectors.php:123 +msgid "Has crush" msgstr "" -#: ../../include/conversation.php:1533 -msgid "Posted Order" +#: ../../include/selectors.php:123 +msgid "Infatuated" msgstr "" -#: ../../include/conversation.php:1536 -msgid "Sort by Post Date" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" msgstr "" -#: ../../include/conversation.php:1544 -msgid "Posts that mention or involve you" +#: ../../include/selectors.php:123 +msgid "Unfaithful" msgstr "" -#: ../../include/conversation.php:1553 -msgid "Activity Stream - by date" +#: ../../include/selectors.php:123 +msgid "Sex Addict" msgstr "" -#: ../../include/conversation.php:1559 -msgid "Starred" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" msgstr "" -#: ../../include/conversation.php:1562 -msgid "Favourite Posts" +#: ../../include/selectors.php:123 +msgid "Casual" msgstr "" -#: ../../include/conversation.php:1569 -msgid "Spam" -msgstr "" - -#: ../../include/conversation.php:1572 -msgid "Posts flagged as SPAM" -msgstr "" - -#: ../../include/conversation.php:1629 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../include/conversation.php:1638 -msgid "About" -msgstr "" - -#: ../../include/conversation.php:1641 -msgid "Profile Details" -msgstr "" - -#: ../../include/conversation.php:1657 -msgid "Files and Storage" -msgstr "" - -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "" - -#: ../../include/conversation.php:1693 -msgid "Saved Bookmarks" -msgstr "" - -#: ../../include/conversation.php:1703 -msgid "Manage Webpages" -msgstr "" - -#: ../../include/conversation.php:1768 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1771 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1774 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1777 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1780 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "" - -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Engaged" +#: ../../include/selectors.php:123 +msgid "Engaged" msgstr "" #: ../../include/selectors.php:123 ../../include/selectors.php:140 @@ -8108,364 +7932,459 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/security.php:109 -msgid "guest:" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" msgstr "" -#: ../../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." +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" msgstr "" -#: ../../include/text.php:404 -msgid "prev" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." msgstr "" -#: ../../include/text.php:406 -msgid "first" +#: ../../include/event.php:1012 +msgid "Not specified" msgstr "" -#: ../../include/text.php:435 -msgid "last" +#: ../../include/event.php:1013 +msgid "Needs Action" msgstr "" -#: ../../include/text.php:438 -msgid "next" +#: ../../include/event.php:1014 +msgid "Completed" msgstr "" -#: ../../include/text.php:448 -msgid "older" +#: ../../include/event.php:1015 +msgid "In Process" msgstr "" -#: ../../include/text.php:450 -msgid "newer" +#: ../../include/event.php:1016 +msgid "Cancelled" msgstr "" -#: ../../include/text.php:843 -msgid "No connections" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" msgstr "" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" +#: ../../include/datetime.php:135 +msgid "Birthday" msgstr "" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" +#: ../../include/datetime.php:137 +msgid "Age: " msgstr "" -#: ../../include/text.php:1019 -msgid "ping" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/text.php:1019 -msgid "pinged" +#: ../../include/datetime.php:272 ../../boot.php:2486 +msgid "never" msgstr "" -#: ../../include/text.php:1020 -msgid "prod" +#: ../../include/datetime.php:278 +msgid "less than a second ago" msgstr "" -#: ../../include/text.php:1020 -msgid "prodded" +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" msgstr "" -#: ../../include/text.php:1021 -msgid "slap" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" msgstr "" -#: ../../include/text.php:1021 -msgid "slapped" +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" msgstr "" -#: ../../include/text.php:1022 -msgid "finger" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../include/text.php:1022 -msgid "fingered" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: ../../include/text.php:1023 -msgid "rebuff" +#: ../../include/conversation.php:243 ../../include/text.php:1013 +#: ../../include/text.php:1018 +msgid "poked" msgstr "" -#: ../../include/text.php:1023 -msgid "rebuffed" +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" msgstr "" -#: ../../include/text.php:1035 -msgid "happy" +#: ../../include/conversation.php:713 +msgid "Categories:" msgstr "" -#: ../../include/text.php:1036 -msgid "sad" +#: ../../include/conversation.php:714 +msgid "Filed under:" msgstr "" -#: ../../include/text.php:1037 -msgid "mellow" +#: ../../include/conversation.php:741 +msgid "View in context" msgstr "" -#: ../../include/text.php:1038 -msgid "tired" +#: ../../include/conversation.php:850 +msgid "remove" msgstr "" -#: ../../include/text.php:1039 -msgid "perky" +#: ../../include/conversation.php:855 +msgid "Delete Selected Items" msgstr "" -#: ../../include/text.php:1040 -msgid "angry" +#: ../../include/conversation.php:951 +msgid "View Source" msgstr "" -#: ../../include/text.php:1041 -msgid "stupefied" +#: ../../include/conversation.php:952 +msgid "Follow Thread" msgstr "" -#: ../../include/text.php:1042 -msgid "puzzled" +#: ../../include/conversation.php:953 +msgid "Unfollow Thread" msgstr "" -#: ../../include/text.php:1043 -msgid "interested" +#: ../../include/conversation.php:958 +msgid "Activity/Posts" msgstr "" -#: ../../include/text.php:1044 -msgid "bitter" +#: ../../include/conversation.php:960 +msgid "Edit Connection" msgstr "" -#: ../../include/text.php:1045 -msgid "cheerful" +#: ../../include/conversation.php:961 +msgid "Message" msgstr "" -#: ../../include/text.php:1046 -msgid "alive" +#: ../../include/conversation.php:1078 +#, php-format +msgid "%s likes this." msgstr "" -#: ../../include/text.php:1047 -msgid "annoyed" +#: ../../include/conversation.php:1078 +#, php-format +msgid "%s doesn't like this." msgstr "" -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "" +#: ../../include/conversation.php:1082 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "" +#: ../../include/conversation.php:1084 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1050 -msgid "disturbed" +#: ../../include/conversation.php:1090 +msgid "and" msgstr "" -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "" +#: ../../include/conversation.php:1093 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1052 -msgid "depressed" +#: ../../include/conversation.php:1094 +#, php-format +msgid "%s like this." msgstr "" -#: ../../include/text.php:1053 -msgid "motivated" +#: ../../include/conversation.php:1094 +#, php-format +msgid "%s don't like this." msgstr "" -#: ../../include/text.php:1054 -msgid "relaxed" +#: ../../include/conversation.php:1133 +msgid "Set your location" msgstr "" -#: ../../include/text.php:1055 -msgid "surprised" +#: ../../include/conversation.php:1134 +msgid "Clear browser location" msgstr "" -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" +#: ../../include/conversation.php:1182 +msgid "Tag term:" msgstr "" -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" +#: ../../include/conversation.php:1183 +msgid "Where are you right now?" msgstr "" -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" +#: ../../include/conversation.php:1221 +msgid "Page link name" msgstr "" -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" +#: ../../include/conversation.php:1224 +msgid "Post as" msgstr "" -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" +#: ../../include/conversation.php:1238 +msgid "Toggle voting" msgstr "" -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" +#: ../../include/conversation.php:1246 +msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" +#: ../../include/conversation.php:1269 +msgid "Set publish date" msgstr "" -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" +#: ../../include/conversation.php:1518 +msgid "Discover" msgstr "" -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" +#: ../../include/conversation.php:1521 +msgid "Imported public streams" msgstr "" -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" +#: ../../include/conversation.php:1526 +msgid "Commented Order" msgstr "" -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" +#: ../../include/conversation.php:1529 +msgid "Sort by Comment Date" msgstr "" -#: ../../include/text.php:1241 -msgid "May" +#: ../../include/conversation.php:1533 +msgid "Posted Order" msgstr "" -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" +#: ../../include/conversation.php:1536 +msgid "Sort by Post Date" msgstr "" -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" +#: ../../include/conversation.php:1544 +msgid "Posts that mention or involve you" msgstr "" -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" +#: ../../include/conversation.php:1553 +msgid "Activity Stream - by date" msgstr "" -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" +#: ../../include/conversation.php:1559 +msgid "Starred" msgstr "" -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" +#: ../../include/conversation.php:1562 +msgid "Favourite Posts" msgstr "" -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" +#: ../../include/conversation.php:1569 +msgid "Spam" msgstr "" -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" +#: ../../include/conversation.php:1572 +msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" +#: ../../include/conversation.php:1629 +msgid "Status Messages and Posts" msgstr "" -#: ../../include/text.php:1324 -msgid "unknown" +#: ../../include/conversation.php:1638 +msgid "About" msgstr "" -#: ../../include/text.php:1360 -msgid "remove category" +#: ../../include/conversation.php:1641 +msgid "Profile Details" msgstr "" -#: ../../include/text.php:1437 -msgid "remove from file" +#: ../../include/conversation.php:1657 +msgid "Files and Storage" msgstr "" -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" +#: ../../include/conversation.php:1693 +msgid "Saved Bookmarks" msgstr "" -#: ../../include/text.php:1742 -msgid "Page layout" +#: ../../include/conversation.php:1703 +msgid "Manage Webpages" msgstr "" -#: ../../include/text.php:1742 -msgid "You can create your own with the layouts tool" -msgstr "" +#: ../../include/conversation.php:1768 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "" +#: ../../include/conversation.php:1771 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "" +#: ../../include/conversation.php:1774 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1934 -msgid "activity" -msgstr "" +#: ../../include/conversation.php:1777 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1780 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "" +#: ../../include/conversation.php:1783 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:2241 -msgid "Pages" +#: ../../include/items.php:898 ../../include/items.php:943 +msgid "(Unknown)" msgstr "" -#: ../../include/auth.php:147 -msgid "Logged out." +#: ../../include/items.php:1142 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/auth.php:274 -msgid "Failed authentication" +#: ../../include/items.php:1144 +msgid "Visible to you only." msgstr "" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" +#: ../../include/items.php:1146 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" +#: ../../include/items.php:1148 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/items.php:1150 +#, php-format +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" +#: ../../include/items.php:1152 +msgid "Visible to all connections." msgstr "" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" +#: ../../include/items.php:1154 +msgid "Visible to approved connections." msgstr "" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/items.php:1156 +msgid "Visible to specific connections." msgstr "" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/items.php:3919 +msgid "Privacy group is empty." msgstr "" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" +#: ../../include/items.php:3926 +#, php-format +msgid "Privacy group: %s" msgstr "" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" +#: ../../include/items.php:3938 +msgid "Connection not found." msgstr "" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" +#: ../../include/items.php:4291 +msgid "profile photo" msgstr "" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/connections.php:95 +msgid "New window" msgstr "" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/permissions.php:46 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" msgstr "" #: ../../include/features.php:48 @@ -8639,684 +8558,485 @@ msgid "" "minutes in between submissions." msgstr "" -#: ../../include/features.php:82 -msgid "Network and Stream Filtering" -msgstr "" - -#: ../../include/features.php:83 -msgid "Search by Date" -msgstr "" - -#: ../../include/features.php:83 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../include/features.php:84 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "" - -#: ../../include/features.php:84 -msgid "Enable management and selection of privacy groups" -msgstr "" - -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "" - -#: ../../include/features.php:85 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:86 -msgid "Network Personal Tab" -msgstr "" - -#: ../../include/features.php:86 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:87 -msgid "Network New Tab" -msgstr "" - -#: ../../include/features.php:87 -msgid "Enable tab to display all new Network activity" -msgstr "" - -#: ../../include/features.php:88 -msgid "Affinity Tool" -msgstr "" - -#: ../../include/features.php:88 -msgid "Filter stream activity by depth of relationships" -msgstr "" - -#: ../../include/features.php:89 -msgid "Connection Filtering" -msgstr "" - -#: ../../include/features.php:89 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "" - -#: ../../include/features.php:90 -msgid "Show channel suggestions" -msgstr "" - -#: ../../include/features.php:95 -msgid "Post/Comment Tools" -msgstr "" - -#: ../../include/features.php:96 -msgid "Community Tagging" -msgstr "" - -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:97 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:97 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:98 -msgid "Emoji Reactions" -msgstr "" - -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "" - -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "" - -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:100 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:101 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:101 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/features.php:102 -msgid "Tag Cloud" -msgstr "" - -#: ../../include/features.php:102 -msgid "Provide a personal tag cloud on your channel page" -msgstr "" - -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "" - -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "" - -#: ../../include/group.php:289 -msgid "edit" -msgstr "" - -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "" - -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "" - -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "" - -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "" - -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "" - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" +#: ../../include/features.php:82 +msgid "Network and Stream Filtering" msgstr "" -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." +#: ../../include/features.php:83 +msgid "Search by Date" msgstr "" -#: ../../include/account.php:68 -msgid "An invitation is required." +#: ../../include/features.php:83 +msgid "Ability to select posts by date ranges" msgstr "" -#: ../../include/account.php:72 -msgid "Invitation could not be verified." +#: ../../include/features.php:84 ../../include/group.php:311 +msgid "Privacy Groups" msgstr "" -#: ../../include/account.php:122 -msgid "Please enter the required information." +#: ../../include/features.php:84 +msgid "Enable management and selection of privacy groups" msgstr "" -#: ../../include/account.php:189 -msgid "Failed to store account information." +#: ../../include/features.php:85 +msgid "Save search terms for re-use" msgstr "" -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" +#: ../../include/features.php:86 +msgid "Network Personal Tab" msgstr "" -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" +#: ../../include/features.php:86 +msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/account.php:339 -msgid "your registration password" +#: ../../include/features.php:87 +msgid "Network New Tab" msgstr "" -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" +#: ../../include/features.php:87 +msgid "Enable tab to display all new Network activity" msgstr "" -#: ../../include/account.php:414 -msgid "Account approved." +#: ../../include/features.php:88 +msgid "Affinity Tool" msgstr "" -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" +#: ../../include/features.php:88 +msgid "Filter stream activity by depth of relationships" msgstr "" -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." +#: ../../include/features.php:89 +msgid "Connection Filtering" msgstr "" -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../include/features.php:89 +msgid "Filter incoming posts from connections based on keywords/content" msgstr "" -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." +#: ../../include/features.php:90 +msgid "Show channel suggestions" msgstr "" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." +#: ../../include/features.php:95 +msgid "Post/Comment Tools" msgstr "" -#: ../../include/follow.php:32 -msgid "Channel location missing." +#: ../../include/features.php:96 +msgid "Community Tagging" msgstr "" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." +#: ../../include/features.php:96 +msgid "Ability to tag existing posts" msgstr "" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." +#: ../../include/features.php:97 +msgid "Post Categories" msgstr "" -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." +#: ../../include/features.php:97 +msgid "Add categories to your posts" msgstr "" -#: ../../include/follow.php:171 -msgid "Channel discovery failed." +#: ../../include/features.php:98 +msgid "Emoji Reactions" msgstr "" -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." +#: ../../include/features.php:98 +msgid "Add emoji reaction ability to posts" msgstr "" -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." +#: ../../include/features.php:99 +msgid "Ability to file posts under folders" msgstr "" -#: ../../include/attach.php:499 -msgid "No source file." +#: ../../include/features.php:100 +msgid "Dislike Posts" msgstr "" -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" +#: ../../include/features.php:100 +msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" +#: ../../include/features.php:101 +msgid "Star Posts" msgstr "" -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../include/features.php:101 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/attach.php:688 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +#: ../../include/features.php:102 +msgid "Tag Cloud" msgstr "" -#: ../../include/attach.php:846 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/features.php:102 +msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/attach.php:859 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" msgstr "" -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" +#: ../../include/group.php:289 +msgid "edit" msgstr "" -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" +#: ../../include/group.php:312 +msgid "Edit group" msgstr "" -#: ../../include/attach.php:1025 -msgid "Path not found." +#: ../../include/group.php:313 +msgid "Add privacy group" msgstr "" -#: ../../include/attach.php:1083 -msgid "mkdir failed." +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" msgstr "" -#: ../../include/attach.php:1087 -msgid "database storage failed." +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/attach.php:1135 -msgid "Empty path" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" msgstr "" -#: ../../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" +#: ../../include/permissions.php:28 +msgid "Can view my connections" msgstr "" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" msgstr "" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " +#: ../../include/permissions.php:30 +msgid "Can view my webpages" msgstr "" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" msgstr "" -#: ../../include/bbcode.php:346 -msgid "spoiler" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" msgstr "" -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" msgstr "" -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/items.php:1143 -msgid "Visible to you only." +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" msgstr "" -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" msgstr "" -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" msgstr "" -#: ../../include/items.php:1151 -msgid "Visible to all connections." +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/items.php:1153 -msgid "Visible to approved connections." +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" msgstr "" -#: ../../include/items.php:1155 -msgid "Visible to specific connections." +#: ../../include/permissions.php:46 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/items.php:3918 -msgid "Privacy group is empty." +#: ../../include/permissions.php:877 +msgid "Social Networking" msgstr "" -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" msgstr "" -#: ../../include/items.php:3937 -msgid "Connection not found." +#: ../../include/permissions.php:877 +msgid "Social - Restricted" msgstr "" -#: ../../include/items.php:4290 -msgid "profile photo" +#: ../../include/permissions.php:877 +msgid "Social - Private" msgstr "" -#: ../../include/oembed.php:336 -msgid "Embedded content" +#: ../../include/permissions.php:878 +msgid "Community Forum" msgstr "" -#: ../../include/oembed.php:345 -msgid "Embedding disabled" +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" msgstr "" -#: ../../include/widgets.php:103 -msgid "System" +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" msgstr "" -#: ../../include/widgets.php:106 -msgid "New App" +#: ../../include/permissions.php:878 +msgid "Forum - Private" msgstr "" -#: ../../include/widgets.php:154 -msgid "Suggestions" +#: ../../include/permissions.php:879 +msgid "Feed Republish" msgstr "" -#: ../../include/widgets.php:155 -msgid "See more..." +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" msgstr "" -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" msgstr "" -#: ../../include/widgets.php:181 -msgid "Add New Connection" +#: ../../include/permissions.php:880 +msgid "Special Purpose" msgstr "" -#: ../../include/widgets.php:182 -msgid "Enter channel address" +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" msgstr "" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" msgstr "" -#: ../../include/widgets.php:199 -msgid "Notes" +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" msgstr "" -#: ../../include/widgets.php:273 -msgid "Remove term" +#: ../../include/account.php:28 +msgid "Not a valid email address" msgstr "" -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/widgets.php:354 -msgid "Archives" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/widgets.php:516 -msgid "Refresh" +#: ../../include/account.php:68 +msgid "An invitation is required." msgstr "" -#: ../../include/widgets.php:556 -msgid "Account settings" +#: ../../include/account.php:72 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/widgets.php:562 -msgid "Channel settings" +#: ../../include/account.php:122 +msgid "Please enter the required information." msgstr "" -#: ../../include/widgets.php:571 -msgid "Additional features" +#: ../../include/account.php:189 +msgid "Failed to store account information." msgstr "" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/widgets.php:584 -msgid "Display settings" +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../include/widgets.php:591 -msgid "Manage locations" +#: ../../include/account.php:339 +msgid "your registration password" msgstr "" -#: ../../include/widgets.php:600 -msgid "Export channel" +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/widgets.php:607 -msgid "Connected apps" +#: ../../include/account.php:414 +msgid "Account approved." msgstr "" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." msgstr "" -#: ../../include/widgets.php:662 -msgid "Combined View" +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/widgets.php:698 -msgid "Received Messages" +#: ../../include/api.php:1326 +msgid "Public Timeline" msgstr "" -#: ../../include/widgets.php:702 -msgid "Sent Messages" +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." msgstr "" -#: ../../include/widgets.php:716 -msgid "No messages." +#: ../../include/attach.php:499 +msgid "No source file." msgstr "" -#: ../../include/widgets.php:734 -msgid "Delete conversation" +#: ../../include/attach.php:521 +msgid "Cannot locate file to replace" msgstr "" -#: ../../include/widgets.php:760 -msgid "Events Tools" +#: ../../include/attach.php:539 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/widgets.php:761 -msgid "Export Calendar" +#: ../../include/attach.php:674 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/widgets.php:762 -msgid "Import Calendar" +#: ../../include/attach.php:688 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/widgets.php:840 -msgid "Overview" +#: ../../include/attach.php:846 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/widgets.php:847 -msgid "Chat Members" +#: ../../include/attach.php:859 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/widgets.php:869 -msgid "Wiki List" +#: ../../include/attach.php:915 ../../include/attach.php:931 +msgid "Path not available." msgstr "" -#: ../../include/widgets.php:907 -msgid "Wiki Pages" +#: ../../include/attach.php:977 ../../include/attach.php:1129 +msgid "Empty pathname" msgstr "" -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" +#: ../../include/attach.php:1003 +msgid "duplicate filename or path" msgstr "" -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" +#: ../../include/attach.php:1025 +msgid "Path not found." msgstr "" -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" +#: ../../include/attach.php:1083 +msgid "mkdir failed." msgstr "" -#: ../../include/widgets.php:1166 -msgid "Click to show more" +#: ../../include/attach.php:1087 +msgid "database storage failed." msgstr "" -#: ../../include/widgets.php:1317 -msgid "Rating Tools" +#: ../../include/attach.php:1135 +msgid "Empty path" msgstr "" -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" +#: ../../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 "" -#: ../../include/widgets.php:1326 -msgid "View Ratings" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" msgstr "" -#: ../../include/widgets.php:1410 -msgid "Forums" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " msgstr "" -#: ../../include/widgets.php:1439 -msgid "Tasks" +#: ../../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 "" -#: ../../include/widgets.php:1448 -msgid "Documentation" +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" msgstr "" -#: ../../include/widgets.php:1451 -msgid "For Members" +#: ../../include/bbcode.php:346 +msgid "spoiler" msgstr "" -#: ../../include/widgets.php:1452 -msgid "For Administrators" +#: ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" msgstr "" -#: ../../include/widgets.php:1453 -msgid "For Developers" +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" msgstr "" -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" +#: ../../include/import.php:29 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../include/widgets.php:1483 -msgid "Inspect queue" +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../include/widgets.php:1485 -msgid "DB updates" +#: ../../include/auth.php:116 +msgid "Logged out." msgstr "" -#: ../../include/widgets.php:1511 -msgid "Plugin Features" +#: ../../include/auth.php:237 +msgid "Failed authentication" msgstr "" #: ../../include/activities.php:41 @@ -9342,6 +9062,23 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" +#: ../../include/zot.php:709 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:725 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:2373 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/zot.php:3723 +msgid "invalid target signature" +msgstr "" + #: ../../include/bb2diaspora.php:398 msgid "Attachments:" msgstr "" @@ -9490,11 +9227,55 @@ msgstr "" msgid "timeago.numbers" msgstr "" +#: ../../include/js_strings.php:45 ../../include/text.php:1241 +msgid "January" +msgstr "" + +#: ../../include/js_strings.php:46 ../../include/text.php:1241 +msgid "February" +msgstr "" + +#: ../../include/js_strings.php:47 ../../include/text.php:1241 +msgid "March" +msgstr "" + +#: ../../include/js_strings.php:48 ../../include/text.php:1241 +msgid "April" +msgstr "" + #: ../../include/js_strings.php:49 msgctxt "long" msgid "May" msgstr "" +#: ../../include/js_strings.php:50 ../../include/text.php:1241 +msgid "June" +msgstr "" + +#: ../../include/js_strings.php:51 ../../include/text.php:1241 +msgid "July" +msgstr "" + +#: ../../include/js_strings.php:52 ../../include/text.php:1241 +msgid "August" +msgstr "" + +#: ../../include/js_strings.php:53 ../../include/text.php:1241 +msgid "September" +msgstr "" + +#: ../../include/js_strings.php:54 ../../include/text.php:1241 +msgid "October" +msgstr "" + +#: ../../include/js_strings.php:55 ../../include/text.php:1241 +msgid "November" +msgstr "" + +#: ../../include/js_strings.php:56 ../../include/text.php:1241 +msgid "December" +msgstr "" + #: ../../include/js_strings.php:57 msgid "Jan" msgstr "" @@ -9540,8 +9321,36 @@ msgstr "" msgid "Nov" msgstr "" -#: ../../include/js_strings.php:68 -msgid "Dec" +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "" + +#: ../../include/js_strings.php:69 ../../include/text.php:1237 +msgid "Sunday" +msgstr "" + +#: ../../include/js_strings.php:70 ../../include/text.php:1237 +msgid "Monday" +msgstr "" + +#: ../../include/js_strings.php:71 ../../include/text.php:1237 +msgid "Tuesday" +msgstr "" + +#: ../../include/js_strings.php:72 ../../include/text.php:1237 +msgid "Wednesday" +msgstr "" + +#: ../../include/js_strings.php:73 ../../include/text.php:1237 +msgid "Thursday" +msgstr "" + +#: ../../include/js_strings.php:74 ../../include/text.php:1237 +msgid "Friday" +msgstr "" + +#: ../../include/js_strings.php:75 ../../include/text.php:1237 +msgid "Saturday" msgstr "" #: ../../include/js_strings.php:76 @@ -9708,110 +9517,227 @@ msgid "" "permissions set who is allowed to view the post." msgstr "" -#: ../../include/datetime.php:135 -msgid "Birthday" +#: ../../include/security.php:108 +msgid "guest:" msgstr "" -#: ../../include/datetime.php:137 -msgid "Age: " +#: ../../include/security.php:425 +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 "" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" +#: ../../include/text.php:404 +msgid "prev" msgstr "" -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" +#: ../../include/text.php:406 +msgid "first" msgstr "" -#: ../../include/datetime.php:278 -msgid "less than a second ago" +#: ../../include/text.php:435 +msgid "last" msgstr "" -#: ../../include/datetime.php:296 +#: ../../include/text.php:438 +msgid "next" +msgstr "" + +#: ../../include/text.php:448 +msgid "older" +msgstr "" + +#: ../../include/text.php:450 +msgid "newer" +msgstr "" + +#: ../../include/text.php:843 +msgid "No connections" +msgstr "" + +#: ../../include/text.php:868 #, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" +msgid "View all %s connections" msgstr "" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" +msgstr "" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1019 +msgid "ping" +msgstr "" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1019 +msgid "pinged" +msgstr "" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1020 +msgid "prod" +msgstr "" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1020 +msgid "prodded" +msgstr "" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1021 +msgid "slap" +msgstr "" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "" -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" +#: ../../include/text.php:1022 +msgid "finger" msgstr "" -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" +#: ../../include/text.php:1022 +msgid "fingered" msgstr "" -#: ../../include/api.php:1327 -msgid "Public Timeline" +#: ../../include/text.php:1023 +msgid "rebuff" msgstr "" -#: ../../include/zot.php:697 -msgid "Invalid data packet" +#: ../../include/text.php:1023 +msgid "rebuffed" msgstr "" -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" +#: ../../include/text.php:1035 +msgid "happy" msgstr "" -#: ../../include/zot.php:2326 -#, php-format -msgid "Unable to verify site signature for %s" +#: ../../include/text.php:1036 +msgid "sad" msgstr "" -#: ../../include/zot.php:3703 -msgid "invalid target signature" +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:1038 +msgid "tired" +msgstr "" + +#: ../../include/text.php:1039 +msgid "perky" +msgstr "" + +#: ../../include/text.php:1040 +msgid "angry" +msgstr "" + +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "" + +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:1043 +msgid "interested" +msgstr "" + +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:1046 +msgid "alive" +msgstr "" + +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "" + +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:1241 +msgid "May" +msgstr "" + +#: ../../include/text.php:1318 ../../include/text.php:1322 +msgid "Unknown Attachment" +msgstr "" + +#: ../../include/text.php:1324 +msgid "unknown" +msgstr "" + +#: ../../include/text.php:1360 +msgid "remove category" +msgstr "" + +#: ../../include/text.php:1437 +msgid "remove from file" +msgstr "" + +#: ../../include/text.php:1734 ../../include/text.php:1805 +msgid "default" +msgstr "" + +#: ../../include/text.php:1742 +msgid "Page layout" +msgstr "" + +#: ../../include/text.php:1742 +msgid "You can create your own with the layouts tool" +msgstr "" + +#: ../../include/text.php:1784 +msgid "Page content type" +msgstr "" + +#: ../../include/text.php:1817 +msgid "Select an alternate language" +msgstr "" + +#: ../../include/text.php:1934 +msgid "activity" +msgstr "" + +#: ../../include/text.php:2243 +msgid "Design Tools" +msgstr "" + +#: ../../include/text.php:2249 +msgid "Pages" msgstr "" #: ../../view/theme/redbasic/php/config.php:82 @@ -9976,10 +9902,6 @@ msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "" -#: ../../boot.php:1706 -msgid "Login/Email" -msgstr "" - #: ../../boot.php:1707 msgid "Password" msgstr "" @@ -10005,11 +9927,11 @@ msgstr "" msgid "[hubzilla] Website SSL error for %s" msgstr "" -#: ../../boot.php:2478 +#: ../../boot.php:2485 msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../boot.php:2482 +#: ../../boot.php:2489 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "" diff --git a/util/po2php.php b/util/po2php.php index 50941c062..a72a65ba1 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -1,5 +1,6 @@ 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 2eda76a7a..ecb96b8f8 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-07-22 00:02-0700\n" -"PO-Revision-Date: 2016-07-25 08:54+0000\n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" +"PO-Revision-Date: 2016-06-10 09:14+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: Catalan (Spain) (http://www.transifex.com/Friendica/red-matrix/language/ca_ES/)\n" "MIME-Version: 1.0\n" @@ -21,156 +21,11 @@ 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 "amunt" +msgstr "pare" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 msgid "Collection" msgstr "Col·lecció" @@ -194,17 +49,16 @@ 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: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 "Desconegut" #: ../../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 "Arxius" @@ -217,23 +71,22 @@ msgid "Shared" msgstr "Compartit" #: ../../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 "Crear" #: ../../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 "Pujar" #: ../../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 "Nom" @@ -243,7 +96,7 @@ msgid "Type" msgstr "Tipus" #: ../../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 "Mida" @@ -252,32 +105,34 @@ msgstr "Mida" msgid "Last Modified" msgstr "Últim Modificat" -#: ../../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 "Edita" -#: ../../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 "Esborra" @@ -303,73 +158,74 @@ msgstr "Crea una nova carpeta" msgid "Upload file" msgstr "Puja arxiu" -#: ../../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 "Permís denegat" -#: ../../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 "Permís denegat." @@ -377,9 +233,9 @@ msgstr "Permís denegat." msgid "Not Found" msgstr "No s'ha pogut trobar la pàgina" -#: ../../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 "Pàgina no trobada." @@ -395,13 +251,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/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 "El perfil demanat no està disponible." @@ -409,366 +265,615 @@ 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/Chatsvc.php:117 -msgid "Away" -msgstr "Absent" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nom del Bloc" -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" -msgstr "En connexió" +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Bloc" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "No s'ha pogut accedir al llibre de contactes." +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Títol del bloc" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "No s'ha trobat el perfil indicat." +#: ../../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/Connedit.php:248 -msgid "Connection updated." -msgstr "S'ha actualitzat la connexió." +#: ../../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/Connedit.php:250 -msgid "Failed to update connection record." -msgstr "No s'ha pogut actualitzar el registre de connexió." +#: ../../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/Connedit.php:300 -msgid "is now connected to" -msgstr "Ara està conectat amb" +#: ../../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/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:1708 -msgid "No" -msgstr "No" +#: ../../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/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:1708 -msgid "Yes" -msgstr "Sí" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permís denegat." -#: ../../Zotlabs/Module/Connedit.php:435 -msgid "Could not access address book record." -msgstr "No puc accedir al registre del contacte" +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l, F j" -#: ../../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/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Enllaç a la Font" -#: ../../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/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Editar l'Esdeveniment" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Connection has been removed." -msgstr "S'han eliminat les conexions." +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Crear Esdeveniment" -#: ../../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/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/Connedit.php:552 -#, php-format -msgid "View %s's profile" -msgstr "Mostra el perfil de %s" +#: ../../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/Connedit.php:556 -msgid "Refresh Permissions" -msgstr "Recarrega els Permissos" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Exporta" -#: ../../Zotlabs/Module/Connedit.php:559 -msgid "Fetch updated permissions" -msgstr "Obté els permisos actualitzats" +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importar" -#: ../../Zotlabs/Module/Connedit.php:563 -msgid "Recent Activity" -msgstr "Activitat Recent" +#: ../../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/Connedit.php:566 -msgid "View recent posts and comments" -msgstr "Mostra les entrades i comentaris recents" +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Avui" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Desbloquejat" +#: ../../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/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Bloquejat" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "Entrades i comentaris" -#: ../../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/Channel.php:42 +msgid "Only posts" +msgstr "Només entrades" -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "This connection is blocked!" -msgstr "Aquesta connexió està bloquejada!" +#: ../../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/Connedit.php:578 -msgid "Unignore" -msgstr "Inhabilita" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "No s'ha trobat la sala" -#: ../../Zotlabs/Module/Connedit.php:578 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Ignora" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Abandona la sala" -#: ../../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/Chat.php:198 +msgid "Delete Room" +msgstr "Esborra Sala" -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "This connection is ignored!" -msgstr "Aquesta connexió es ignorada!" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Absent" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Unarchive" -msgstr "Desarxiva" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Estic connectat/da" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Archive" -msgstr "Arxiva" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Fes favorit aquest xat" -#: ../../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/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/Connedit.php:590 -msgid "This connection is archived!" -msgstr "Aquesta connexió està arxivada!" +#: ../../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/Connedit.php:594 -msgid "Unhide" -msgstr "Mostra" +#: ../../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/Connedit.php:594 +#: ../../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" + +#: ../../Zotlabs/Module/Chatsvc.php:122 +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." + +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "No s'ha trobat el perfil indicat." + +#: ../../Zotlabs/Module/Connedit.php:227 +msgid "Connection updated." +msgstr "S'ha actualitzat la connexió." + +#: ../../Zotlabs/Module/Connedit.php:229 +msgid "Failed to update connection record." +msgstr "No s'ha pogut actualitzar el registre de connexió." + +#: ../../Zotlabs/Module/Connedit.php:276 +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 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "No" +msgstr "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 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "Yes" +msgstr "Sí" + +#: ../../Zotlabs/Module/Connedit.php:411 +msgid "Could not access address book record." +msgstr "No puc accedir al registre del contacte" + +#: ../../Zotlabs/Module/Connedit.php:425 +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 +msgid "Unable to set address book parameters." +msgstr "No es poden ajustar els paràmetres dels contactes." + +#: ../../Zotlabs/Module/Connedit.php:503 +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 +msgid "View Profile" +msgstr "Veure Perfil" + +#: ../../Zotlabs/Module/Connedit.php:522 +#, php-format +msgid "View %s's profile" +msgstr "Mostra el perfil de %s" + +#: ../../Zotlabs/Module/Connedit.php:526 +msgid "Refresh Permissions" +msgstr "Recarrega els Permissos" + +#: ../../Zotlabs/Module/Connedit.php:529 +msgid "Fetch updated permissions" +msgstr "Obté els permisos actualitzats" + +#: ../../Zotlabs/Module/Connedit.php:533 +msgid "Recent Activity" +msgstr "Activitat Recent" + +#: ../../Zotlabs/Module/Connedit.php:536 +msgid "View recent posts and comments" +msgstr "Mostra les entrades i comentaris recents" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +msgid "Unblock" +msgstr "Desbloquejat" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +msgid "Block" +msgstr "Bloquejat" + +#: ../../Zotlabs/Module/Connedit.php:543 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Boqueja (o Desbloqueja) les comunicacions amb aquesta connexió" + +#: ../../Zotlabs/Module/Connedit.php:544 +msgid "This connection is blocked!" +msgstr "Aquesta connexió està bloquejada!" + +#: ../../Zotlabs/Module/Connedit.php:548 +msgid "Unignore" +msgstr "Inhabilita" + +#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" +msgstr "Ignora" + +#: ../../Zotlabs/Module/Connedit.php:551 +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 +msgid "This connection is ignored!" +msgstr "Aquesta connexió es ignorada!" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Unarchive" +msgstr "Desarxiva" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Archive" +msgstr "Arxiva" + +#: ../../Zotlabs/Module/Connedit.php:559 +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 +msgid "This connection is archived!" +msgstr "Aquesta connexió està arxivada!" + +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Unhide" +msgstr "Mostra" + +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Hide" msgstr "Amaga" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:567 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:598 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "This connection is hidden!" msgstr "Aquesta connexió està amagada!" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Delete this connection" msgstr "Elimina aquesta connexió" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 msgid "Me" msgstr "Jo" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 msgid "Family" msgstr "Família" -#: ../../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 "Amics" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Coneguts" -#: ../../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 "Tots" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Approve this connection" msgstr "Apccepta aquesta connexió" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Accept connection to allow communication" msgstr "Accepta la connexió per permetre la comunicació" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:659 msgid "Set Affinity" msgstr "Ajusta l'Afinitat" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:662 msgid "Set Profile" msgstr "Ajusta el Perfil" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity & Profile" msgstr "Ajusta Afinitat i Perfil" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:698 msgid "none" msgstr "res" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 msgid "Connection Default Permissions" msgstr "Permisos per Defecte de la Connexió" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 #, php-format msgid "Connection: %s" msgstr "Connexió: %s" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Apply these permissions automatically" msgstr "Aplica aquests permissos automaticament" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Connection requests will be approved without your interaction" msgstr "Les peticions de connexió seran aprovades sense la teva interacció" -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:705 msgid "This connection's primary address is" msgstr "La primera adreça d'aqueste connexió es" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Available locations:" msgstr "Localització disponible:" -#: ../../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 "Els permisos indicats en aquesta pàgina seran aplicats a totes les noves connexions." -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "Connection Tools" msgstr "Eines de Connexió" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "Slide to adjust your degree of friendship" msgstr "Llisca per ajustar el nivell d'amistat" -#: ../../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 "Valora" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:715 msgid "Slide to adjust your rating" msgstr "Llisca per ajustar la valoració" -#: ../../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 "Opcionalment pots explicar la teva valoració" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Custom Filter" msgstr "Filtre a mida" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Only import posts with this text" msgstr "Importa exclusivament entrades amb aquest text" -#: ../../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 "paraules una per línia o #etiquetes o /patrons/ o idioma=xx, deixar en blanc per importar totes les entrades" -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:720 msgid "Do not import posts with this text" msgstr "No importar entrades amb aquest text" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "This information is public!" msgstr "Aquesta informació es pública!" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:727 msgid "Connection Pending Approval" msgstr "Connexió Pendent d'Aprovació" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "inherited" msgstr "heretat" -#: ../../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 +#: ../../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 "Tria el perfil que vols mostrar a %s quan es vegi el perfil segur." -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:734 msgid "Their Settings" msgstr "Els seus Ajustos" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:735 msgid "My Settings" msgstr "Els Meus Ajustos" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Individual Permissions" msgstr "Permisos Individuals" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -776,7 +881,7 @@ msgid "" " settings here." msgstr "Alguns permisos poden ser heretats dels teus canals ajustos de privacitat, Els quals tenen més prioritat que els ajustos individuals. No pots canviar aquests ajustos aquí." -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:739 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -784,146 +889,42 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Alguns permisos poden ser heretats dels teus canals ajustos de privacitat, Els quals tenen més prioritat que els ajustos individuals. Pots canviar aquests ajustos aquí pero no tindran cap impacte fins que no canviis els ajustos heretats." -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Last update:" msgstr "Darrera actualització:" -#: ../../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 "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/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valoració" +msgstr[1] "%d valoracions" -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Nom" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Gènere:" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Cognoms" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Estatus:" -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Àlies" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Pàgina Personal:" -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nom Sencer" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 +msgid "Age:" +msgstr "Edat:" -#: ../../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" -msgid_plural "%d ratings" -msgstr[0] "%d valoració" -msgstr[1] "%d valoracions" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Gènere:" - -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Estatus:" - -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Pàgina Personal:" - -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 -msgid "Age:" -msgstr "Edat:" - -#: ../../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 "Localització:" @@ -932,18 +933,18 @@ msgstr "Localització:" msgid "Description:" msgstr "Descripció:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 msgid "Hometown:" msgstr "Ciutat Natal:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 msgid "About:" msgstr "Sobre:" #: ../../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 "Connecta " @@ -1019,406 +1020,122 @@ 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/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continua" +#: ../../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:90 -msgid "Premium Channel Setup" -msgstr "Configuració de Canals Premium" +#: ../../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 "No s'ha trobat l'element" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Habilita les restriccions de connexió del canal premium" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Títol (opcional)" -#: ../../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/Editblock.php:133 +msgid "Edit Block" +msgstr "Editar Bloc" -#: ../../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/Common.php:14 +msgid "No channel." +msgstr "No s'ha trobat el canal" -#: ../../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/Common.php:43 +msgid "Common connections" +msgstr "Connexions en comú" -#: ../../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/Common.php:48 +msgid "No connections in common." +msgstr "No hi ha connexions en comú." -#: ../../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/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Bloquejades" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canal Restringit o Premium" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignorades" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Entrades de Calendari importades." +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Amagades" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "No es troben entrades decalendari." +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Arxivades" -#: ../../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/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1535 +msgid "New" +msgstr "Nou" -#: ../../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/Connections.php:138 +msgid "New Connections" +msgstr "Noves Connexions" -#: ../../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/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Mostra les connexions pendents (noves)" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "No s'ha trobat l'esdeveniment." +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Totes les Connexions" -#: ../../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/Connections.php:148 +msgid "Show all connections" +msgstr "Mostra totes les connexions" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Edita el títol d'esdeveniment" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Mostra només les connexions bloquejades" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Títol esdeveniment" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Mostra només les connexions ignorades" -#: ../../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/Connections.php:178 +msgid "Only show archived connections" +msgstr "Mostra només les connexions arxivades" -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Categories (llista separada per comes)" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Mostra només les connexions amagades" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Editar Categoria" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Pendent d'aprovació" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Categoria" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Editar data i hora d'inici" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Modifica la connexió" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Data i hora d'inici" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Elimina la connexió" -#: ../../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/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../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/Editpost.php:35 -msgid "Item is not editable" -msgstr "Article no editable" - -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Modifica l'entrada" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Fotos" - -#: ../../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/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 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Bloquejades" - -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignorades" - -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Amagades" - -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Arxivades" - -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 -msgid "New" -msgstr "Nou" - -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Noves Connexions" - -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Mostra les connexions pendents (noves)" - -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Totes les Connexions" - -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Mostra totes les connexions" - -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Mostra només les connexions bloquejades" - -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Mostra només les connexions ignorades" - -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Mostra només les connexions arxivades" - -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Mostra només les connexions amagades" - -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "Pendent d'aprovació" - -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Modifica la connexió" - -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Elimina la connexió" - -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Adreça del canal" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Adreça del canal" #: ../../Zotlabs/Module/Connections.php:267 msgid "Network" @@ -1449,15 +1166,15 @@ msgstr "Ignorar connexió" msgid "Recent activity" msgstr "Activitat recent" -#: ../../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 "Connexions" #: ../../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" @@ -1470,7 +1187,7 @@ msgid "Connections search" msgstr "Cerca connexions" #: ../../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 "S'ha pujat la imatge però no s'ha pogut retallar." @@ -1480,66 +1197,66 @@ msgid "Cover Photos" msgstr "Fotos de Portada" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 +#: ../../Zotlabs/Module/Profile_photo.php:133 msgid "Image resize failed." msgstr "No s'ha pogut escalar la imatge." #: ../../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 "incapaç de processar la imatge" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 +#: ../../Zotlabs/Module/Profile_photo.php:217 msgid "Image upload failed." msgstr "La pujada de la imatge va fracassar." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 +#: ../../Zotlabs/Module/Profile_photo.php:236 msgid "Unable to process image." msgstr "Incapaç de processar l'imatge." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 msgid "female" msgstr "femení" -#: ../../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 "%1$s actualitzà el seu %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 msgid "male" msgstr "masculí" -#: ../../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 "%1$s actualitzà el seu %2$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 "%1$s actualitzà els seus %2$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 "Foto de la portada" #: ../../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 no disponible." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:365 msgid "Upload File:" msgstr "Puja Arxiu:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:366 msgid "Select a profile:" msgstr "Tria un perfil:" @@ -1548,256 +1265,315 @@ msgid "Upload Cover Photo" msgstr "Puja Foto de Portada" #: ../../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 aquest pas" #: ../../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 "tria una foto del teu àlbum de fotos" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 +#: ../../Zotlabs/Module/Profile_photo.php:390 msgid "Crop Image" msgstr "Retalla Imatge" #: ../../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 "Si us plau, retalla la imatge per a una optima visualització" #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:393 msgid "Done Editing" msgstr "Edició Feta" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "pàgina web" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Article no editable" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "bloc" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" +msgstr "Modifica l'entrada" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "disposició" +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "Entrades de Calendari importades." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menú" +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "No es troben entrades decalendari." -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "%s element instal·lat" +#: ../../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/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "%s instal·lació d'element va fallar" +#: ../../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/Cal.php:69 -msgid "Permissions denied." -msgstr "Permís denegat." +#: ../../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/Cal.php:337 -msgid "Import" -msgstr "Importar" +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "No s'ha trobat l'esdeveniment." -#: ../../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: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/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:449 +msgid "Edit event title" +msgstr "Edita el títol d'esdeveniment" -#: ../../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:449 +msgid "Event title" +msgstr "Títol esdeveniment" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "No s'ha trobat la sala" +#: ../../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/Chat.php:197 -msgid "Leave Room" -msgstr "Abandona la sala" +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Categories (llista separada per comes)" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Esborra Sala" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Editar Categoria" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Absent" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Categoria" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Estic connectat/da" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Editar data i hora d'inici" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Fes favorit aquest xat" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Data i hora d'inici" -#: ../../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: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/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:458 +msgid "Edit finish date and time" +msgstr "Editar la data i hora de finalització" -#: ../../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:458 +msgid "Finish date and time" +msgstr "Data i hora de finalització" -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funcionalitat desactivada." +#: ../../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/Chat.php:232 -msgid "New Chatroom" -msgstr "Nova sala per a Xerrar" +#: ../../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/Chat.php:233 -msgid "Chatroom name" -msgstr "Nom de la sala de xat" +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" +msgstr "Editar la Descripció" -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Expiració dels chats (minuts)" +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descripció" -#: ../../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/Events.php:464 +msgid "Edit Location" +msgstr "Editar la localització" -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$s de Xats" +#: ../../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:251 -msgid "No chatrooms available" -msgstr "No hi ha sales de xat disponibles" +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Comparteix aquest esdeveniment" -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Crear Nou" +#: ../../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:255 -msgid "Expiration" -msgstr "Expiració" +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Ajustos de permisos" -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" +msgstr "Opcions Avançades" + +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "Edita l'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "Esborra l'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "calendari" + +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" +msgstr "S'ha eliminat l'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" +msgstr "No s'ha pogut esborrar l'esdeveniment" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:92 ../../include/conversation.php:1632 +msgid "Photos" +msgstr "Fotos" + +#: ../../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/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/Dreport.php:44 +#: ../../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/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:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Guardar" + +#: ../../Zotlabs/Module/Dreport.php:27 msgid "Invalid message" msgstr "Missatge invàlid." -#: ../../Zotlabs/Module/Dreport.php:76 +#: ../../Zotlabs/Module/Dreport.php:59 msgid "no results" msgstr "sense resultats" -#: ../../Zotlabs/Module/Dreport.php:91 +#: ../../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 msgid "channel sync processed" msgstr "sincronització del canal processada" -#: ../../Zotlabs/Module/Dreport.php:95 +#: ../../Zotlabs/Module/Dreport.php:82 msgid "queued" msgstr "Posat en cua" -#: ../../Zotlabs/Module/Dreport.php:99 +#: ../../Zotlabs/Module/Dreport.php:86 msgid "posted" msgstr "enviat" -#: ../../Zotlabs/Module/Dreport.php:103 +#: ../../Zotlabs/Module/Dreport.php:90 msgid "accepted for delivery" msgstr "acceptat per entregar" -#: ../../Zotlabs/Module/Dreport.php:107 +#: ../../Zotlabs/Module/Dreport.php:94 msgid "updated" msgstr "actualitzat" -#: ../../Zotlabs/Module/Dreport.php:110 +#: ../../Zotlabs/Module/Dreport.php:97 msgid "update ignored" msgstr "actualització ignorada" -#: ../../Zotlabs/Module/Dreport.php:113 +#: ../../Zotlabs/Module/Dreport.php:100 msgid "permission denied" msgstr "permís denegat" -#: ../../Zotlabs/Module/Dreport.php:117 +#: ../../Zotlabs/Module/Dreport.php:104 msgid "recipient not found" msgstr "Contenidor no trobat" -#: ../../Zotlabs/Module/Dreport.php:120 +#: ../../Zotlabs/Module/Dreport.php:107 msgid "mail recalled" msgstr "Recupera el correu" -#: ../../Zotlabs/Module/Dreport.php:123 +#: ../../Zotlabs/Module/Dreport.php:110 msgid "duplicate mail received" msgstr "rebut correu duplicat" -#: ../../Zotlabs/Module/Dreport.php:126 +#: ../../Zotlabs/Module/Dreport.php:113 msgid "mail delivered" msgstr "correu entregat" -#: ../../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 +#: ../../Zotlabs/Module/Editlayout.php:126 +#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 msgid "Layout Name" msgstr "Nom del Format Gràfic" -#: ../../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 "Descripció del Format (Opcional)" -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editlayout.php:135 msgid "Edit Layout" msgstr "Edita Format Gràfic" -#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:143 msgid "Page link" msgstr "Enllaç de la pàgina" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 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." @@ -1807,7 +1583,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:3902 +#: ../../include/items.php:3893 msgid "Privacy group not found." msgstr "No es troben grups privats." @@ -1851,61 +1627,35 @@ 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/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "Aplicació instal·lada." - -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Aplicació amb errors" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Compartir contingut des de Firefox a $Projectname" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Codi embegut" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activar el proveïdor de $Projectname a Firefox" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Edita l'Aplicació" +#: ../../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:110 -msgid "Create App" -msgstr "Crea l'Aplicació" +#: ../../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:115 -msgid "Name of app" -msgstr "Nom de l'Aplicació" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Si et plau, identifica't per continuar." -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Ubicació (URL) de 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: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" -msgstr "Cerca de Documentació" +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Cerca de Documentació" #: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 #: ../../Zotlabs/Module/Help.php:79 @@ -1913,8 +1663,8 @@ msgid "Help:" msgstr "Ajuda:" #: ../../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 "Ajuda" @@ -1922,5487 +1672,5098 @@ msgstr "Ajuda" msgid "$Projectname Documentation" msgstr "$Projectname Documentació" -#: ../../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 +#: ../../Zotlabs/Module/Filestorage.php:88 msgid "Permission Denied." msgstr "Permisos Denegats." -#: ../../Zotlabs/Module/Filestorage.php:103 +#: ../../Zotlabs/Module/Filestorage.php:104 msgid "File not found." msgstr "Arxiu no torbat." -#: ../../Zotlabs/Module/Filestorage.php:146 +#: ../../Zotlabs/Module/Filestorage.php:147 msgid "Edit file permissions" msgstr "Edita els permisos d'arxiu" -#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:156 msgid "Set/edit permissions" msgstr "Canvia/edita permisos" -#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:157 msgid "Include all files and sub folders" msgstr "Inclou tots als arxius i subdirectoris" -#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:158 msgid "Return to file list" msgstr "Tornar al llistat d'arxius" -#: ../../Zotlabs/Module/Filestorage.php:159 +#: ../../Zotlabs/Module/Filestorage.php:160 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:160 +#: ../../Zotlabs/Module/Filestorage.php:161 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:162 +#: ../../Zotlabs/Module/Filestorage.php:163 msgid "Share this file" msgstr "Comparteix l'arxiu" -#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Module/Filestorage.php:164 msgid "Show URL to this file" msgstr "Mostra la URL d'aquest arxiu" -#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Filestorage.php:165 msgid "Notify your contacts about this file" msgstr "Notifica als teus contactes aquest arxiu" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 -msgid "Layouts" -msgstr "Format Gràfic" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Aplicatius" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Pgina d'ajuda del llenguatge Comanche" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Article no disponible." -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Descripció del Disseny de la Pàgina" +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "El teu paquet de serveis només admet %d canals." -#: ../../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/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "No hi ha res a importar." -#: ../../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/Import.php:94 ../../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/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/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "El fitxer importat està buit." -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Descarrega l'arxiu PDL" +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, 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/Like.php:19 -msgid "Like/Dislike" -msgstr "M'agrada / No m'agrada" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +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/Like.php:24 -msgid "This action is restricted to members." -msgstr "Aquesta acció està restringida als membres." +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Sense canal. No s'ha pogut importar." -#: ../../Zotlabs/Module/Like.php:25 +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "S'ha completat la importació." + +#: ../../Zotlabs/Module/Import.php:532 +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 +msgid "Import Channel" +msgstr "Importa un canal" + +#: ../../Zotlabs/Module/Import.php:538 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Entra amb la teva identitat $Projectname o registra't a $Projectname per continuar." +"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/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Sol·licitud invàlida." +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Fitxer a pujar" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "canal" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "O proveeix els detalls de l'antic servidor/node" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "cosa" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "La teva adreça de canal antiga. El format és canal@exemple.org" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "El canal està inactiu." +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "La teva adreça de correu electrònic antiga" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "S'ha desfet l'acció anterior." +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "La teva contrasenya antiga" -#: ../../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/Import.php:544 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "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/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 -msgid "status" -msgstr "estat" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Fes d'aquest node la meva ubicació primària" -#: ../../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/Import.php:546 +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/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/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 "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/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/Item.php:178 +msgid "Unable to locate original post." +msgstr "No s'ha pogut trobar l'entrada original." -#: ../../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/Item.php:427 +msgid "Empty post discarded." +msgstr "S'ha descartat l'entrada perquè no té contingut." -#: ../../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/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "No està permès el contingut de tipus executable en aquest canal." -#: ../../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/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "Publicació duplicada s'ha suprimit." + +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Hi ha hagut un error del sistema. L'entrada no s'ha desat." -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Item.php:1241 +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 #, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s no assistirà a %3$s de %2$s" +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/Like.php:433 +#: ../../Zotlabs/Module/Item.php:1255 #, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s potser assistirà a %3$s de %2$s" +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Has assolit el teu limit de %1$.0f pàgines web." -#: ../../Zotlabs/Module/Like.php:536 -msgid "Action completed." -msgstr "S'ha completat l'acció." +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +msgid "Layouts" +msgstr "Format Gràfic" -#: ../../Zotlabs/Module/Like.php:537 -msgid "Thank you." -msgstr "Gràcies." +#: ../../Zotlabs/Module/Layouts.php:183 +msgid "Comanche page description language help" +msgstr "Pgina d'ajuda del llenguatge Comanche" -#: ../../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/Layouts.php:187 +msgid "Layout Description" +msgstr "Descripció del Disseny de la Pàgina" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Perfil eliminat." +#: ../../Zotlabs/Module/Layouts.php:192 +msgid "Download PDL file" +msgstr "Descarrega l'arxiu PDL" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Perfil-" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Nou perfil creat." +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Benvingut a %s" -#: ../../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/Id.php:13 +msgid "First Name" +msgstr "Nom" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Es requereix el Nom del Perfil." +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Cognoms" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Estat Marital" +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Àlies" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Company/a Romàntic" +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nom Sencer" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Agrada" +#: ../../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/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Desagrada" +#: ../../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/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Treball/Feina" +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Foto del Perfil 16px" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religió" +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Foto del Perfil 32px" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Idees Polítiques" +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Foto del Perfil 48px" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Preferència Sexual" +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Foto del Perfil 64px" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Pàgina Personal" +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Foto del Perfil 80px" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interessos" +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Foto del Perfil 128px" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adreça" +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Zona horària" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Perfil actualitzat." +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "URL de la pàgina d'inici" -#: ../../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/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" +msgstr "Idioma" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Edita els Detalls del Perfil" +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Any de Naixement" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Veure aquest perfil" +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Mes de Naixement" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 -msgid "Edit visibility" -msgstr "Editar visibilitat" +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Dia de Naixement" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Eines per Perfils" +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Aniversari" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Canviar la foto de portada" +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Gènere" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 -msgid "Change profile photo" -msgstr "Canviar la foto del perfil" +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Masculí" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Crea un perfil nou amb aquests ajustos" +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Femení" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Clonar aquest perfil" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pàgina web" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Elimina aquest perfil" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloc" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Afegeix coses al perfil" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "disposició" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Personal" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menú" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relació" +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s element instal·lat" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Miscelania" +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "%s instal·lació d'element va fallar" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importa perfil des d'un arxiu" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "M'agrada / No m'agrada" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Exporta perfil a un arxiu" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Aquesta acció està restringida als membres." -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "El teu gènere" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Entra amb la teva identitat $Projectname o registra't a $Projectname per continuar." -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Estat marital" +#: ../../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/Profiles.php:706 -msgid "Sexual preference" -msgstr "Preferència sexual" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "canal" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Nom del perfil" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "cosa" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Aquest es el teu perfil per defecte" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "El canal està inactiu." -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "El teu nom complet" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "S'ha desfet l'acció anterior." -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Títol/Descripció" +#: ../../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/Profiles.php:717 -msgid "Street address" -msgstr "Carrer" +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 +msgid "status" +msgstr "estat" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Població/Ciutat" +#: ../../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/Profiles.php:719 -msgid "Region/State" -msgstr "Regió/Estat" +#: ../../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/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "Codi Postal" +#: ../../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/Profiles.php:721 -msgid "Country" -msgstr "País" +#: ../../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/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/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/Profiles.php:727 -msgid "Since (date)" -msgstr "Des de (data)" +#: ../../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/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Quelcom sobre tu" +#: ../../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/Profiles.php:732 -msgid "Hometown" -msgstr "Ciutat Natal" +#: ../../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/Profiles.php:733 -msgid "Political views" -msgstr "Idees polítiques" +#: ../../Zotlabs/Module/Like.php:537 +msgid "Action completed." +msgstr "S'ha completat l'acció." -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Creences religioses" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Thank you." +msgstr "Gràcies." -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Paraules clau emprades en els llistats de directoris" +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "S'ha completat la importació" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Exemple: software de fotografia submarina" +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importa Articles" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Interessos Musicals" +#: ../../Zotlabs/Module/Import_items.php:118 +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ó." -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Llibres, literatura" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "El límit total invitacions s'ha superat." -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisió" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: adreça de correu electrònic no vàlida." -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Pel·lícules/Dansa/Cultura/Entreteniment" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Si us plau uneix-te a nosaltres a $Projectname." -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Aficions/Interessos" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Límit d'invitacions excedit. Si us plau, poseu-vos en contacte amb l'administrador del lloc." -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Amor/Romace" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Entrega del Missatge fallida." -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Escola/Educació" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d missatge enviat." +msgstr[1] "%d missatges enviats." -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Informació de contacte i xarxes socials" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "No té més invitacions disponibles" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Els meus altres canals" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Enviar invitacions" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 -msgid "Profile Image" -msgstr "Imatge del Perfil" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Introduïu les adreces de correu electrònic, una per línia:" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 -msgid "Edit Profiles" -msgstr "Editar Perfils" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "El teu missatge:" -#: ../../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/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Si us plau uneix-te la meva comunitat en $Projectname." -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "No hi ha res a importar." +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Hauràs de facilitar aquest codi d'invitació:" -#: ../../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/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Pots registrar-te a qualsevol node de $Projectname (estàn tots interconnectats)" -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "El fitxer importat està buit." +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Escriu la meva adreça de xarxa al $Projectname, a la barra de cerca del lloc." -#: ../../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/Invite.php:142 +msgid "or visit" +msgstr "o visitar" -#: ../../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/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Clicar [Conectar]" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Sense canal. No s'ha pogut importar." +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "informació privada remota no disponible." -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "S'ha completat la importació." +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Visible per:" -#: ../../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/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Situació que no es troba." -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importa un canal" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Ha fallat la cerca d'ubicació." -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Locs.php:66 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ó" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Seleccioneu una altra ubicació per esdevenir primària abans de retirar la ubicació principal." -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Fitxer a pujar" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronitza ubicacions" -#: ../../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/Locs.php:105 +msgid "No locations found." +msgstr "No es troben els llocs." -#: ../../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/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gestionar Ubicacions de Canal" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "La teva adreça de correu electrònic antiga" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adreça" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "La teva contrasenya antiga" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primari" -#: ../../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" -" able to post from either location, but only one can be marked as the " -"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/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Menysprea" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Fes d'aquest node la meva ubicació primària" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronitza Ara" -#: ../../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/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Si us plau espera diversos minuts entre operacions consecutives." -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Module/Locs.php:124 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." +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Quan sigui possible, per desapareixer d'un lloc, accedeix a aquest lloc web/node i elimina el teu canal." -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Empra aquest formulari per desapareixer del lloc si el node ja no està operatiu." -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Benvingut a %s" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Node no trobat." -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "No s'ha pogut trobar l'entrada original." +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Incapaç de trobar el destinatari." -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "S'ha descartat l'entrada perquè no té contingut." +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Incapaç de comunicar amb el canal demanat." -#: ../../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/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "No puc verificar el canal demanat." -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Publicació duplicada s'ha suprimit." +#: ../../Zotlabs/Module/Mail.php:78 +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/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/Mail.php:143 +msgid "Messages" +msgstr "Missatges" -#: ../../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/Mail.php:178 +msgid "Message recalled." +msgstr "Recupera el missatge." -#: ../../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/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversació eliminada." -#: ../../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/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Expira YYYY-MM-DD HH:MM" -#: ../../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/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "El canal demanat no hi es en questa xarxa" -#: ../../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/Mail.php:242 +msgid "Send Private Message" +msgstr "Envia Missatge Privat" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Àlbum no trobat" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "Per:" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Esborra Àlbum" +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Assumpte:" -#: ../../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/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Adjunta arxiu" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Esborra Foto" +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Envia" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "No has seleccionat fotos" +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Ajusta la data d'expiració" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "L'accés a aquest element esta restringit." +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "Elimina el missatge" -#: ../../Zotlabs/Module/Photos.php:619 -#, 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/Mail.php:341 +msgid "Delivery report" +msgstr "Informe d'entrega" -#: ../../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/Mail.php:342 +msgid "Recall message" +msgstr "Recupera el missatge" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Puja imatges" +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "El missatge s'ha recuperat." -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Escriu el nom del àlbum" +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Conversació esborrada" -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o bé fes doble clic a un d'existent" +#: ../../Zotlabs/Module/Mail.php:363 +msgid "" +"No secure communications available. You may 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/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Genera una entrada a partir de la pujada" +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Send Reply" +msgstr "Envia Resposta" -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Subtítol (opcional):" +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "El teu missatge per %s (%s):" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descripció (opcional):" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Has creat %1$.0f de %2$.0f canals permesos." -#: ../../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/Manage.php:143 +msgid "Create a new channel" +msgstr "Crear un nou canal" -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Imatges de contactes" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Gestor de Canals" -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Ordena de més nou a més antic" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canal Actual" -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Ordena de més antic a més nou" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Canviar a un altre dels teus canals seleccionant-ho." -#: ../../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/Manage.php:168 +msgid "Default Channel" +msgstr "Canal per Defecte" -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Modifica l'àlbum" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Estableix com a Predeterminat" -#: ../../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/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d missatges nous" -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" -msgstr "La imatge no està disponible" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d noves presentacions" -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Fes-la imatge de perfil" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canal Delegat" -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Emprar com a foto de portada" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "No es troba un compte vàlid." -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Imatge privada" +#: ../../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/Photos.php:951 -msgid "View Full Size" -msgstr "Mostra a mida completa" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Lloc d'Usuari (%s)" -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Esborra" +#: ../../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/Photos.php:1030 -msgid "Edit photo" -msgstr "Modifica la imatge" +#: ../../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/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Tomba cap a la dreta" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Restabliment de contrasenya" -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Tomba cap a l'esquerra" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "S'ha restablert la vostra contrasenya." -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Escriu el nom del nou àlbum" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "La nova contrasenya és" -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "o bé fes doble clic a un d'existent" +#: ../../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/Photos.php:1040 -msgid "Caption" -msgstr "Llegenda" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "fes clic aquí per iniciar sessió" -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Afegeix una etiqueta" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Pots canviar la contrasenya a la pàgina Paràmetres, un cop iniciada la sessió." -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exemple: @joan, @Paula_Peris, @mar@exemple.org" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "La teva contrasenya a %s ha canviat" -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Marca com a contingut adult" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "No recordes la contrasenya?" -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "M'agrada això (canvia)" +#: ../../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/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "No m'agrada això (canvia)" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Adreça electrònica" -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Si us plau, espera" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reajustar" -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Ets tú" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "No s'ha pogut actualitzar el menú." -#: ../../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/Menu.php:60 +msgid "Unable to create menu." +msgstr "No s'ha pogut crear el menú." -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Agrada" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nom del menú" -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Desagrada" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nom únic (no visible a la pàgina web) - requerit" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "Acord" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Títol del menú" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Desacord" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visible a la pàgina web - deixar buit per a no posar títol" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Abstenirse" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetre Marcadors" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Assistint" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "El menú es pot emprar per a guardar marcadors" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Desassistint" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Envia i procedeix" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Podrien assistir" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menú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/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Marcadors permesos" -#: ../../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/Menu.php:119 +msgid "Delete this menu" +msgstr "Esborra el menú" -#: ../../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/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Edita el contingut del menú" -#: ../../Zotlabs/Module/Photos.php:1233 -msgid "Photo Tools" -msgstr "Eines per Fotos" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Edita el menú" -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "Hi apareixen:" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "El menu no es pot esborrar." -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Mapa" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menú no trobat." -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Agrada" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Edita Menú" -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Desagrada" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Afegeix o esborra entrades a aquest menú" -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Tanca" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nom del Menú" -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Mostra'n l'àlbum" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Ha de ser únic, nomes vist per tú" -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Imatges recents" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Títol del menú" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "informació privada remota no disponible." +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Títol del menú vist pels altres" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visible per:" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Marcadors permesos" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "S'ha completat la importació" +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "No trobat." -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importa Articles" +#: ../../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/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ó." +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Ànim" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "El límit total invitacions s'ha superat." +#: ../../Zotlabs/Module/Mood.php:136 +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/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: adreça de correu electrònic no vàlida." +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Perfils compatibles" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Si us plau uneix-te a nosaltres a $Projectname." +#: ../../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/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Límit d'invitacions excedit. Si us plau, poseu-vos en contacte amb l'administrador del lloc." +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "té interès en:" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Entrega del Missatge fallida." +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "No s'han trobat perfils compatibles" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d missatge enviat." -msgstr[1] "%d missatges enviats." +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "No existeix el grup" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "No té més invitacions disponibles" +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "No existeix el canal" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Enviar invitacions" +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "fòrum" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Introduïu les adreces de correu electrònic, una per línia:" +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Cerca resultats per:" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "El teu missatge:" +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "el grup privat està vuit" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Si us plau uneix-te la meva comunitat en $Projectname." +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Grup privat:" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Hauràs de facilitar aquest codi d'invitació:" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "La connexió és invàlida." -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Pots registrar-te a qualsevol node de $Projectname (estàn tots interconnectats)" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "No hi ha més notificacions del sistema." -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Escriu la meva adreça de xarxa al $Projectname, a la barra de cerca del lloc." +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notificacions del sistema" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "o visitar" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Incapaç de crear l'element." -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Clicar [Conectar]" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Incapaç d'actualitzar un element del menú." -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Situació que no es troba." +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Incapaç d'afegir l'element del menú." -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Ha fallat la cerca d'ubicació." +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permisos de l'Article del Menú" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Seleccioneu una altra ubicació per esdevenir primària abans de retirar la ubicació principal." +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(clica per obrir/tancar)" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronitza ubicacions" +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nom de l'Enllaç" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "No es troben els llocs." +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Enllaç o Submenú Objectiu" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Gestionar Ubicacions de Canal" +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Entra la URL de l'enlla´o tria un nom de menú per crear un submenú" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primari" +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Empra magic-auth si esta disponible" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Menysprea" +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Obrir l'enllaç en una nova finestra" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronitza Ara" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Ordre per llista" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Si us plau espera diversos minuts entre operacions consecutives." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Els números més alts aniràn al fons de la llista" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Quan sigui possible, per desapareixer d'un lloc, accedeix a aquest lloc web/node i elimina el teu canal." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Envia i termina" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Empra aquest formulari per desapareixer del lloc si el node ja no està operatiu." +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Envia i continua" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Node no trobat." +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menú:" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Incapaç de trobar el destinatari." +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Enllaç Objectiu" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Incapaç de comunicar amb el canal demanat." +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Edita menú" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "No puc verificar el canal demanat." +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Edita element" -#: ../../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/Mitem.php:180 +msgid "Drop element" +msgstr "Deixa anar element" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Missatges" +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nou element" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Recupera el missatge." +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Edita aquest contenidor de menú" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversació eliminada." +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Afegeix element de menú" -#: ../../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/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Esborra aquest article del menú" -#: ../../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/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Edita aquest article del menú" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Envia Missatge Privat" +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Article del menú no trobat." -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "Per:" +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Article del menú eliminat." -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Assumpte:" +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Article del menú no es pot eliminar." -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Adjunta arxiu" +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Editar Element del Menú" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Envia" +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Enllaç de text" -#: ../../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/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nom o llegenda" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Elimina el missatge" +#: ../../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/Mail.php:333 -msgid "Delivery report" -msgstr "Informe d'entrega" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Tria un àlies curt" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Recupera el missatge" +#: ../../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/Mail.php:336 -msgid "Message has been recalled." -msgstr "El missatge s'ha recuperat." +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Funció i privacitat del canal" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Conversació esborrada" +#: ../../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/Mail.php:355 -msgid "" -"No secure communications available. You may 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/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Llegix més sobre els rols" -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Envia Resposta" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crea un Canal" -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "El teu missatge per %s (%s):" +#: ../../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/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Has creat %1$.0f de %2$.0f canals permesos." +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "o importa un canal existent des d'un altre ubicació." -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crear un nou canal" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Sol·licitud d'identificació invàlida." -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Gestor de Canals" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Descarta" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canal Actual" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Marca totes les notificacions vistes" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Canviar a un altre dels teus canals seleccionant-ho." +#: ../../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/Manage.php:168 -msgid "Default Channel" -msgstr "Canal per Defecte" +#: ../../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/Manage.php:169 -msgid "Make Default" -msgstr "Estableix com a Predeterminat" +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Àlbum no trobat" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d missatges nous" +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Esborra Àlbum" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d noves presentacions" +#: ../../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/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canal Delegat" +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Esborra Foto" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "No s'ha pogut actualitzar el menú." +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "No has seleccionat fotos" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "No s'ha pogut crear el menú." +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "L'accés a aquest element esta restringit." -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nom del menú" +#: ../../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/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nom únic (no visible a la pàgina web) - requerit" +#: ../../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/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Títol del menú" +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Puja imatges" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible a la pàgina web - deixar buit per a no posar títol" +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Escriu el nom del àlbum" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetre Marcadors" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "o bé fes doble clic a un d'existent" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "El menú es pot emprar per a guardar marcadors" +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Genera una entrada a partir de la pujada" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Envia i procedeix" +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Subtítol (opcional):" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menús" +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Descripció (opcional):" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Marcadors permesos" +#: ../../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/Menu.php:119 -msgid "Delete this menu" -msgstr "Esborra el menú" +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Imatges de contactes" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Edita el contingut del menú" +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Ordena de més nou a més antic" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Edita el menú" +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Ordena de més antic a més nou" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "El menu no es pot esborrar." +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Mostra la imatge" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menú no trobat." +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Modifica l'àlbum" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Edita Menú" +#: ../../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/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Afegeix o esborra entrades a aquest menú" +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "La imatge no està disponible" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nom del Menú" +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Fes-la imatge de perfil" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Ha de ser únic, nomes vist per tú" +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Emprar com a foto de portada" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Títol del menú" +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Imatge privada" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Títol del menú vist pels altres" +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Mostra a mida completa" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Marcadors permesos" +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Esborra" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "No trobat." +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Modifica la imatge" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "No es troba un compte vàlid." +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Tomba cap a la dreta" -#: ../../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/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Tomba cap a l'esquerra" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Lloc d'Usuari (%s)" +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Escriu el nom del nou àlbum" -#: ../../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/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "o bé fes doble clic a un d'existent" -#: ../../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/Photos.php:1042 +msgid "Caption" +msgstr "Llegenda" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Restabliment de contrasenya" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Afegeix una etiqueta" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "S'ha restablert la vostra contrasenya." +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Exemple: @joan, @Paula_Peris, @mar@exemple.org" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "La nova contrasenya és" +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Marca com a contingut adult" -#: ../../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/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "M'agrada això (canvia)" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "fes clic aquí per iniciar sessió" +#: ../../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/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Pots canviar la contrasenya a la pàgina Paràmetres, un cop iniciada la sessió." +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Si us plau, espera" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "La teva contrasenya a %s ha canviat" +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Ets tú" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "No recordes la contrasenya?" +#: ../../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/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/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Agrada" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Adreça electrònica" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "Desagrada" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reajustar" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "Acord" -#: ../../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/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Desacord" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Ànim" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Abstenirse" -#: ../../Zotlabs/Module/Mood.php:136 -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/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Assistint" -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "No existeix el grup" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Desassistint" -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "No existeix el canal" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Podrien assistir" -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "fòrum" +#: ../../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/Network.php:151 -msgid "Search Results For:" -msgstr "Cerca resultats per:" +#: ../../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/Network.php:215 -msgid "Privacy group is empty" -msgstr "el grup privat està vuit" +#: ../../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/Network.php:224 -msgid "Privacy group: " -msgstr "Grup privat:" +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "Eines per Fotos" -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "La connexió és invàlida." +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "Hi apareixen:" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "No hi ha més notificacions del sistema." +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Mapa" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notificacions del sistema" +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Agrada" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Perfils compatibles" +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Desagrada" -#: ../../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/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Tanca" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "té interès en:" +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Mostra'n l'àlbum" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "No s'han trobat perfils compatibles" +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Imatges recents" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Entrades i comentaris" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "Se t'ha enviat un missatge privat" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Només entrades" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "el teu canal s'ha afegit" -#: ../../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/Ping.php:323 +msgid "g A l F d" +msgstr "g A l F d" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Incapaç de crear l'element." +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[avui]" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Incapaç d'actualitzar un element del menú." +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "enviat un esdeveniment" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Incapaç d'afegir l'element del menú." +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "No es possible trobar el node" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permisos de l'Article del Menú" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Entrada realitzada amb èxit. " -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(clica per obrir/tancar)" +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Error del protocol OpenID. No ha retornat ID" -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nom de l'Enllaç" +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Identificació fallida." -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Enllaç o Submenú Objectiu" +#: ../../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/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Entra la URL de l'enlla´o tria un nom de menú per crear un submenú" +#: ../../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/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Empra magic-auth si esta disponible" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor de Configuració" -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Obrir l'enllaç en una nova finestra" +#: ../../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/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Ordre per llista" +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "S'ha actualitzat la disposició." -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Els números més alts aniràn al fons de la llista" +#: ../../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/Mitem.php:161 -msgid "Submit and finish" -msgstr "Envia i termina" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "No s'ha trobat cap disposició de pàgina." -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Envia i continua" +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nom del mòdul:" -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menú:" +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Ajuda per la disposició de pàgina" -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Enllaç Objectiu" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Esperonar" -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Edita menú" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Emprenyar algú" -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Edita element" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Esperonat/Picat" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Deixa anar element" +#: ../../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/Mitem.php:181 -msgid "New element" -msgstr "Nou element" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatari" -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Edita aquest contenidor de menú" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Tria que vols fer amb el destinatari" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Afegeix element de menú" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Fer aquesta entrada privada" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Esborra aquest article del menú" +#: ../../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/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Edita aquest article del menú" +#: ../../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/Mitem.php:202 -msgid "Menu item not found." -msgstr "Article del menú no trobat." +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Perfil eliminat." -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Article del menú eliminat." +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Perfil-" -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Article del menú no es pot eliminar." +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Nou perfil creat." -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Editar Element del Menú" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Perfil que no es pot clonar." -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Enllaç de text" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Perfil que no es pot exportar." -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Ajustos de tema actualitzats." +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Es requereix el Nom del Perfil." -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# Comptes" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Estat Marital" -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# comptes bloquejats" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Company/a Romàntic" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# comptes expirats" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Agrada" -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# comptes expirant" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Desagrada" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# Canals" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Treball/Feina" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# primari" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religió" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# clons" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Idees Polítiques" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Cues de missatges" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Preferència Sexual" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "El teu programari cal que s'actualitzi" +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Pàgina Personal" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" -msgstr "Administració" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interessos" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Sumari" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Perfil actualitzat." -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Comptes registrades" +#: ../../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/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "Comptes pendents d'inscripció" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Edita els Detalls del Perfil" -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Canals registrats" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Veure aquest perfil" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" -msgstr "Plugins actius" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:959 +msgid "Edit visibility" +msgstr "Editar visibilitat" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versió" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Eines per Perfils" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Versió (master) del repositori" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Canviar la foto de portada" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Versió (desenvolupament) del repositori" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +msgid "Change profile photo" +msgstr "Canviar la foto del perfil" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Ajustos del Lloc actualitzats" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Crea un perfil nou amb aquests ajustos" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 -msgid "Default" -msgstr "Predeterminat" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Clonar aquest perfil" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 -msgid "mobile" -msgstr "mòbil" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Elimina aquest perfil" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "experimental" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Afegeix coses al perfil" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "no soportat" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 +msgid "Personal" +msgstr "Personal" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Sí - amb aprovació" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relació" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "El meu lloc no es un servidor públic" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Miscelania" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "El meu lloc te accès per pagament" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importa perfil des d'un arxiu" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "El meu lloc te lliure accés" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Exporta perfil a un arxiu" -#: ../../Zotlabs/Module/Admin.php:469 -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/Profiles.php:704 +msgid "Your gender" +msgstr "El teu gènere" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 -msgid "Site" -msgstr "Lloc" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Estat marital" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Inscripcions" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Preferència sexual" -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" -msgstr "Pujar arxiu" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Nom del perfil" -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" -msgstr "Polítiques" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Aquest es el teu perfil per defecte" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avançat" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "El teu nom complet" -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" -msgstr "Nom del lloc" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Títol/Descripció" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" -msgstr "Senyera/Logo" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Carrer" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" -msgstr "Informació de l'Administrador" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Població/Ciutat" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informació per contactar amb els administradors del lloc. Mostrada a la pàgina d'informació del lloc. Es pot emprar BBCode aquí" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Regió/Estat" -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "Idioma del sistema" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "Codi Postal" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "Tema del sistema" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "País" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema del sistema per defecte - pot ser sobrescrit pel perfils dels usuaris - Ajustos de canvi del tema" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Qui (si es aplicable)" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" -msgstr "Tema del sistema per a mòbils" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Examples: cathy123, Cathy Williams, cathy@example.com" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" -msgstr "Tema per a aparells mòbils" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "Des de (data)" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" -msgstr "Permetre Retroalimentadors com Connexions" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Quelcom sobre tu" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" -msgstr "(Demana molts recursos del sistema)" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Ciutat Natal" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" -msgstr "Mida màxima d'imatge" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Idees polítiques" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Mida màxima en bytes d'imatges pujades. Per defecte es 0, el que vol dir sense límits." +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Creences religioses" -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" -msgstr "Permet aquest lloc l'inscripció de nous membres?" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Paraules clau emprades en els llistats de directoris" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" -msgstr "Només per invitació" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Exemple: software de fotografia submarina" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -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/Profiles.php:738 +msgid "Musical interests" +msgstr "Interessos Musicals" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Que es es que millor descriu la mena de comptes oferits per aquest concentrador?" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Llibres, literatura" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" -msgstr "Text d'inscripció" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisió" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." -msgstr "Es mostrarà preminentment a la pàgina d'inscripció" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Pel·lícules/Dansa/Cultura/Entreteniment" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Pàgina d'inici a mostrar als visitants (per defecte: la pàgina d'identificació)" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Aficions/Interessos" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "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." +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Amor/Romace" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" -msgstr "Preservar URL de la pàgina web" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "Escola/Educació" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la pàgina web del lloc en un marc en el lloc original enlloc de redirigir cap a ella" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Informació de contacte i xarxes socials" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" -msgstr "Els copmte es consideren abandonats despres de x dies" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Els meus altres canals" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "No malgastar recursos del sistema sondejant llocs externs per acomptes abandonats. Entrar 0 vol dir sense límit de temps." +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +msgid "Profile Image" +msgstr "Imatge del Perfil" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" -msgstr "dominis amics permesos" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 +#: ../../include/channel.php:937 +msgid "Edit Profiles" +msgstr "Editar Perfils" -#: ../../Zotlabs/Module/Admin.php:516 +#: ../../Zotlabs/Module/Profile_photo.php:179 msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "llista separada per comes de dominis en els que està permès establir relacions d'amistat amb aquest lloc. S'accepten comodins. Deixar buit per acceptar qualsevol domini" +"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/Admin.php:517 -msgid "Allowed email domains" -msgstr "Dominis de correu electonic acceptats" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Puja una Foto pel Perfil" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "llista separada per comes de dominis d'adreces de correu electrònic permeses en aquest lloc. S'accepten comodins. Deixar buit per acceptar qualsevol domini" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identificador invàlid de perfil." -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" -msgstr "Dominis de correu electrònic no acceptats" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Perfil del Editor de Visibilitat" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "llista separada per comes de dominis d'adreces de correu electrònic no permeses en aquest lloc. S'accepten comodins. Deixar buit per no acceptar cap domini, excepte els que s'hagin definits com acceptats." +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Perfil" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" -msgstr "Verifica l'Adreça de Correu Electrònic" +#: ../../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/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Activa per comprovar l'adreça de correu electrònic emprada durant el registre d'un nou compte (recomanat)" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible per" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" -msgstr "Forza la publicació" +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Nodes Públics" -#: ../../Zotlabs/Module/Admin.php:520 +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Activa per forzar que tots el perfils en aquest lloc siguin llistats en el directori del lloc." +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "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, proveu de seguir els enllaços dels proveïdors." -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" -msgstr "Importar Fluxos Públics" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "URL del Node" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Importa i permet l'accés a contingut públic sondejat d'altres llocs. Avís: aquest contingut no estarà moderat." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Tipus d'accés" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" -msgstr "Accés a la Pàgina d'inici" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Condicions de registre" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenta una casella d'identificació a la pàgina d'inici als visitants si no s'ha configurat altre contingut." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Estadístiques" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" -msgstr "Activar l'ajuda contextual" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Programari" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Mostra l'ajuda contextual per la pàgina actual quan el botó d'ajuda es pressionat." +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Valoracions" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" -msgstr "URL del Servidor de Directoris" +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Puntua" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" -msgstr "Servidor de directori per defecte" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Lloc web:" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" -msgstr "Usuari Proxy" +#: ../../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/Admin.php:528 -msgid "Proxy URL" -msgstr "URL del Proxy" +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Valoració (aquesta informació és pública)" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" -msgstr "Temps d'espera de la xarxa" - -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor en segons. Ajusta a 0 per a sense límits (no recomanat)" - -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" -msgstr "Interval de lliurament" - -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Retarda en segon plà l'interval de lliurament per aquests segons per reduir la càrrega del sistema. Recomanat: 4-5 per a hostes compartits, 2-3 per a servidors privats virtuals. 0-1 per a servidors dedicats." - -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" -msgstr "Entregues per processar" - -#: ../../Zotlabs/Module/Admin.php:531 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Nombre de entregues a intentar processar en un únic procèss del sistema operatiu. Ajustar si es necessari per millorar el rendiment. Es recomana: 1-5." - -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" -msgstr "interval de sondeig" - -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Retarda en segon pla el sondeig en aquesta quantitat de segons per a reduir la càrrega dels sistema. Si es 0 , empra l'interval de lliurament." - -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" -msgstr "Càrrega Mitja Màxima" - -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Càrrega màxima del sistema, abans que els processos de lliurament i sondeig es difereixin - 50 per defecte." - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Període d'expiració en dies per contingut importat (malla/xarxa)" - -#: ../../Zotlabs/Module/Admin.php:534 -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:823 -msgid "Off" -msgstr "Apagat" - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "On" -msgstr "Funcionant" - -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" -msgstr "Bloca característica %s" - -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" -msgstr "Gestiona Funcionalitats Addicionals" - -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" -msgstr "No es troba servidor" - -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" -msgstr "ID" - -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" -msgstr "per a canal" - -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" -msgstr "al servidor" - -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" -msgstr "Servidor" - -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Per defecte, HTML no filtrat està permés als media embeguts. Això es inherentment no segur." - -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "L'ajust recomanat és només permetre HTML sense filtrar dels següents llocs:" - -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" - -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Tota la resta de contingut embegut seà filtrat, excepte contingut embegut d'aquest lloc que està blocat explícitament." - -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 -msgid "Security" -msgstr "Seguretat" - -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" -msgstr "Bloca que sigui públic" - -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "activa per blocar l'accés a les pàgines personals públiques a tothom excepte aquells/es que s'hagin autenticat en aquest node." - -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Set \"Transport Security\" HTTP header" - -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Set \"Content Security Policy\" HTTP header" - -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" -msgstr "Permetre comunicacions únicament des de aquests llocs" - -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un lloc per línia. Deixar en blanc per permetre, per defecte, la comunicació amb tothom." - -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" -msgstr "Bloca comunicacions que venen d'aquests llocs" - -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" -msgstr "Permet la comunicació només per aquests canals" - -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canal (hash) per línia. Deixa en blanc per permetre, per defecte, la comunicació qualsevol canal." - -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" -msgstr "Bloca les comunicacions que venen d'aquests canals" - -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Permetre embeguts només de llocs web i enllaços segurs (SSL)." - -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Permetre HTML embegut sense filtrar només d'aquests dominis." - -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." -msgstr "Un lloc per línia. Per defecte el contingut embegut es filtrat." - -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" -msgstr "Bloca HTML embegut d'aquests dominis" - -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" -msgstr "Actualització marcada amb exit" - -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Executant %s ha fallat. Comprova els logs del sistema." - -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Actualització %s es va realitzar correctament." - -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Actualització %s no ha retornat l'estat. Es desconeix si ha finalitzat amb exit." - -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." -msgstr "La funció d'actualitzacio %s no es pot trobar." - -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." -msgstr "No hi ha actualitzacions fallides." - -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" -msgstr "Actualitzacions Fallides" - -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" -msgstr "Marca èxit (si l'actualització s'ha aplicat de forma manual)" - -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" -msgstr "Prova a fer automàticament aquesta actualització" - -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" -msgstr "Cua d'Estadístiques" - -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" -msgstr "Total d'Entrades" - -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" -msgstr "Prioritat" - -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" -msgstr "URL de Destí" - -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" -msgstr "Marca el node com a permanentment fora de línia" - -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" -msgstr "Cua buida per aquest node" - -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" -msgstr "Últim contacte conegut" - -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "S'ha [des]bloquejat %s compte" -msgstr[1] "S'han [des]bloquejat %s comptes" - -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "S'ha esborrat el compte %s" -msgstr[1] "S'han esborrat %s comptes" - -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "Compte no trobat" - -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "S'ha esborrat el compte '%s'" - -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "S'ha bloquejat el compte '%s'" - -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "S'ha desbloquejat el compte '%s'" - -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 -msgid "Accounts" -msgstr "Comptes" - -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "Sel·leciona-ho tot" - -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" -msgstr "Inscripcions esperant confirmació" - -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "Data de la petició" - -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "Sense registracions." - -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "Denegat" - -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" -msgstr "Tots els Canals" - -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" -msgstr "Data d'inscripció" - -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" -msgstr "Darrera identificació" - -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" -msgstr "Expira" - -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" -msgstr "Classe de Servei" - -#: ../../Zotlabs/Module/Admin.php:1054 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Els comptes seleccionats seran eliminats!\\n\\nTot el que hagin publicat en aquest lloc serà esborrat permanentment!\\n\\nN'estàs segur de continuar?" - -#: ../../Zotlabs/Module/Admin.php:1055 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'usuari {0} serà eliminat!\\n\\nTot el que hagi publicat l'usuari en aquest lloc serà esborrat de permanentment!\\n\\nN'estàs segur?" - -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s canal censurat/no censurat" -msgstr[1] "%s canals censurats/no censurats" - -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s codi permes/no permes al canal" -msgstr[1] "%s codi permesos/no permesos al canal" - -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canal esborrat" -msgstr[1] "%s canals esborrats" - -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "Canal no trobat" - -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Canal '%s' esborrat" - -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' censored" -msgstr "Canal '%s' censurat" - -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Canal '%s' no censurat" - -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Canal '%s' permet codi" - -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Canal '%s' no permet codi" - -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 -msgid "Channels" -msgstr "Canals" - -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" -msgstr "Censurat" - -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" -msgstr "No censurat" - -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" -msgstr "Permet Codi" - -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" -msgstr "No Permet Codi" +#: ../../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/Admin.php:1218 ../../include/conversation.php:1626 -msgid "Channel" -msgstr "Canal" +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "No valorat" -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Valoració:" -#: ../../Zotlabs/Module/Admin.php:1226 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Els canals sel·leccionats s'esborraran!\\n\\nTotes les publicacions d'aquests canals en aquest lloc s'eliminaran de forma permanent!\\n\\nEstàs segur? " +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Lloc web:" -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "El canal {0} serà esborrat!\\n\\nTotes les publicacions d'aquest canal en aquest lloc s'eliminaran de forma permanent!\\n\\nEstàs segur?" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Descripció:" -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s desactivat." +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." +msgstr "Ajustos de tema actualitzats." -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s activat." +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" +msgstr "# Comptes" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" -msgstr "Desactivat" +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" +msgstr "# comptes bloquejats" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" -msgstr "Activat" +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" +msgstr "# comptes expirats" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 -msgid "Plugins" -msgstr "Plugins" +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" +msgstr "# comptes expirant" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" -msgstr "Commutar" +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" +msgstr "# Canals" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 -msgid "Settings" -msgstr "Ajustos" +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" +msgstr "# primari" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " -msgstr "Autor: " +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" +msgstr "# clons" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " -msgstr "Mantenedor:" +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" +msgstr "Cues de missatges" -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " -msgstr "Versió mínima del projecte:" +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" +msgstr "El teu programari cal que s'actualitzi" -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " -msgstr "Versió màxima del projecte:" +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 +#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 +#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 +#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 +#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 +#: ../../Zotlabs/Module/Admin.php:1731 +msgid "Administration" +msgstr "Administració" -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " -msgstr "Versió mínima de PHP:" +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" +msgstr "Sumari" -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " -msgstr "Requereix:" +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" +msgstr "Comptes registrades" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" -msgstr "Desactiva - incompatibilitat de versió" +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +msgid "Pending registrations" +msgstr "Comptes pendents de registre" -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Introdueix la URL del repositori git públic del repositori de plugins." +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" +msgstr "Canals registrats" -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" -msgstr "URL del repositori de plugins." +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +msgid "Active plugins" +msgstr "Plugins actius" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" -msgstr "Nom del repositori personalitzat" +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" +msgstr "Versió" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" -msgstr "(opcional)" +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" +msgstr "Versió (master) del repositori" -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" -msgstr "Descarrega el Repositori de Plugins" +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" +msgstr "Versió (desenvolupament) del repositori" -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" -msgstr "Instal·la un nou repositori " +#: ../../Zotlabs/Module/Admin.php:373 +msgid "Site settings updated." +msgstr "Ajustos del Lloc actualitzats" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Instal·lar" +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +msgid "Default" +msgstr "Predeterminat" -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" -msgstr "Gestiona Repositoris" +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +msgid "mobile" +msgstr "mòbil" -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" -msgstr "Repositori de Plugins Instal·lat" +#: ../../Zotlabs/Module/Admin.php:412 +msgid "experimental" +msgstr "experimental" -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" -msgstr "Instal·la un Nou Repositori de Plugins" +#: ../../Zotlabs/Module/Admin.php:414 +msgid "unsupported" +msgstr "no soportat" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "Actualització" +#: ../../Zotlabs/Module/Admin.php:460 +msgid "Yes - with approval" +msgstr "Sí - amb aprovació" -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" -msgstr "Canvia de branca" +#: ../../Zotlabs/Module/Admin.php:466 +msgid "My site is not a public server" +msgstr "El meu lloc no es un servidor públic" -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." -msgstr "No s'han trobat temes." +#: ../../Zotlabs/Module/Admin.php:467 +msgid "My site has paid access only" +msgstr "El meu lloc te accès per pagament" -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" -msgstr "Copia de pantalla" +#: ../../Zotlabs/Module/Admin.php:468 +msgid "My site has free access only" +msgstr "El meu lloc te lliure accés" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 -msgid "Themes" -msgstr "Temes" +#: ../../Zotlabs/Module/Admin.php:469 +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:1652 -msgid "[Experimental]" -msgstr "[Experimental]" +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +msgid "Site" +msgstr "Lloc" -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" -msgstr "[No soportat]" +#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 +msgid "Registration" +msgstr "Registre" -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." -msgstr "Registre d'ajustos actualitzat." +#: ../../Zotlabs/Module/Admin.php:494 +msgid "File upload" +msgstr "Pujar arxiu" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 -msgid "Logs" -msgstr "Logs" +#: ../../Zotlabs/Module/Admin.php:495 +msgid "Policies" +msgstr "Polítiques" -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" -msgstr "Neteja" +#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avançat" -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" -msgstr "Depurant" +#: ../../Zotlabs/Module/Admin.php:500 +msgid "Site name" +msgstr "Nom del lloc" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" -msgstr "Arxiu de registre" +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Banner/Logo" +msgstr "Senyera/Logo" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Ha de ser escribible pel servidor web. Relatiu al directori de nivell superior del servidor web" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "Administrator Information" +msgstr "Informació de l'Administrador" -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "Nivell de registre" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informació per contactar amb els administradors del lloc. Mostrada a la pàgina d'informació del lloc. Es pot emprar BBCode aquí" -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "Camp de Perfil Nou" +#: ../../Zotlabs/Module/Admin.php:503 +msgid "System language" +msgstr "Idioma del sistema" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "Àlies de Camp" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "System theme" +msgstr "Tema del sistema" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "nOM DEL SISTEMA DEL CAMP" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema del sistema per defecte - pot ser sobrescrit pel perfils dels usuaris - Ajustos de canvi del tema" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "Tipus d'entrada" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Mobile system theme" +msgstr "Tema del sistema per a mòbils" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "Nom de Camp" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Theme for mobile devices" +msgstr "Tema per a aparells mòbils" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" -msgstr "Etiqueta a les pàgines de perfil" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "Allow Feeds as Connections" +msgstr "Permetre Retroalimentadors com Connexions" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" -msgstr "Text d'ajuda" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "(Heavy system resource usage)" +msgstr "(Demana molts recursos del sistema)" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" -msgstr "Informació adicional (opcional)" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "Maximum image size" +msgstr "Mida màxima d'imatge" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" -msgstr "No es troba la definició del camp" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Mida màxima en bytes d'imatges pujades. Per defecte es 0, el que vol dir sense límits." -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" -msgstr "Camp d'Edició del Perfil" +#: ../../Zotlabs/Module/Admin.php:509 +msgid "Does this site allow new member registration?" +msgstr "Permet aquest lloc registre de nous membres?" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 -msgid "Profile Fields" -msgstr "Camps del Perfil" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Invitation only" +msgstr "Només per invitació" -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" -msgstr "Camps Bàsics del Perfil" +#: ../../Zotlabs/Module/Admin.php:510 +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í." -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" -msgstr "Camps Avançats del Perfil" +#: ../../Zotlabs/Module/Admin.php:511 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Que es es que millor descriu la mena de comptes oferits per aquest concentrador?" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" -msgstr "( addicionalment als camps bàsics)" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Register text" +msgstr "text de registre" -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" -msgstr "Tots els camps disponibles" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Will be displayed prominently on the registration page." +msgstr "Es mostrarà preminentment a la pàgina de registre" -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" -msgstr "Camps Personalitzats" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Pàgina d'inici a mostrar als visitants (per defecte: la pàgina d'identificació)" -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" -msgstr "Crear un Camp Personalitzat" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "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." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nom o llegenda" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Preserve site homepage URL" +msgstr "Preservar URL de la pàgina web" -#: ../../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/Admin.php:514 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la pàgina web del lloc en un marc en el lloc original enlloc de redirigir cap a ella" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Tria un àlies curt" +#: ../../Zotlabs/Module/Admin.php:515 +msgid "Accounts abandoned after x days" +msgstr "Els copmte es consideren abandonats despres de x dies" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format +#: ../../Zotlabs/Module/Admin.php:515 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" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "No malgastar recursos del sistema sondejant llocs externs per acomptes abandonats. Entrar 0 vol dir sense límit de temps." -#: ../../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/Admin.php:516 +msgid "Allowed friend domains" +msgstr "dominis amics permesos" -#: ../../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/Admin.php:516 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "llista separada per comes de dominis en els que està permès establir relacions d'amistat amb aquest lloc. S'accepten comodins. Deixar buit per acceptar qualsevol domini" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crea un Canal" +#: ../../Zotlabs/Module/Admin.php:517 +msgid "Allowed email domains" +msgstr "Dominis de correu electonic acceptats" -#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Admin.php:517 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." +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "llista separada per comes de dominis d'adreces de correu electrònic permeses en aquest lloc. S'accepten comodins. Deixar buit per acceptar qualsevol domini" -#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Not allowed email domains" +msgstr "Dominis de correu electrònic no acceptats" + +#: ../../Zotlabs/Module/Admin.php:518 msgid "" -"or import an existing channel from another location." -msgstr "o importa un canal existent des d'un altre ubicació." +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "llista separada per comes de dominis d'adreces de correu electrònic no permeses en aquest lloc. S'accepten comodins. Deixar buit per no acceptar cap domini, excepte els que s'hagin definits com acceptats." -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "Se t'ha enviat un missatge privat" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "Verify Email Addresses" +msgstr "Verifica l'Adreça de Correu Electrònic" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "el teu canal s'ha afegit" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Activa per comprovar l'adreça de correu electrònic emprada durant el registre d'un nou compte (recomanat)" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l F d" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Force publish" +msgstr "Forza la publicació" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[avui]" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Activa per forzar que tots el perfils en aquest lloc siguin llistats en el directori del lloc." -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "enviat un esdeveniment" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Import Public Streams" +msgstr "Importar Fluxos Públics" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Sol·licitud d'identificació invàlida." +#: ../../Zotlabs/Module/Admin.php:521 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Importa i permet l'accés a contingut públic sondejat d'altres llocs. Avís: aquest contingut no estarà moderat." -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Descarta" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Login on Homepage" +msgstr "Accés a la Pàgina d'inici" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Marca totes les notificacions vistes" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presenta una casella d'identificació a la pàgina d'inici als visitants si no s'ha configurat altre contingut." -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Esperonar" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Enable context help" +msgstr "Activar l'ajuda contextual" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Emprenyar algú" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Mostra l'ajuda contextual per la pàgina actual quan el botó d'ajuda es pressionat." -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Esperonat/Picat" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Directory Server URL" +msgstr "URL del Servidor de Directoris" -#: ../../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/Admin.php:525 +msgid "Default directory server" +msgstr "Servidor de directori per defecte" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatari" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Proxy user" +msgstr "Usuari Proxy" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Tria que vols fer amb el destinatari" +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Proxy URL" +msgstr "URL del Proxy" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Fer aquesta entrada privada" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Network timeout" +msgstr "Temps d'espera de la xarxa" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "No es possible trobar el node" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valor en segons. Ajusta a 0 per a sense límits (no recomanat)" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Entrada realitzada amb èxit. " +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Delivery interval" +msgstr "Interval de lliurament" -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Error del protocol OpenID. No ha retornat ID" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Retarda en segon plà l'interval de lliurament per aquests segons per reduir la càrrega del sistema. Recomanat: 4-5 per a hostes compartits, 2-3 per a servidors privats virtuals. 0-1 per a servidors dedicats." -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Identificació fallida." +#: ../../Zotlabs/Module/Admin.php:531 +msgid "Deliveries per process" +msgstr "Entregues per processar" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identificador invàlid de perfil." +#: ../../Zotlabs/Module/Admin.php:531 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Nombre de entregues a intentar processar en un únic procèss del sistema operatiu. Ajustar si es necessari per millorar el rendiment. Es recomana: 1-5." -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Perfil del Editor de Visibilitat" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Poll interval" +msgstr "interval de sondeig" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Perfil" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Retarda en segon pla el sondeig en aquesta quantitat de segons per a reduir la càrrega dels sistema. Si es 0 , empra l'interval de lliurament." -#: ../../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/Admin.php:533 +msgid "Maximum Load Average" +msgstr "Càrrega Mitja Màxima" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible per" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Càrrega màxima del sistema, abans que els processos de lliurament i sondeig es difereixin - 50 per defecte." -#: ../../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/Admin.php:534 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Període d'expiració en dies per contingut importat (malla/xarxa)" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor de Configuració" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "0 for no expiration of imported content" +msgstr "0 vol dir sense temps d'expiració pel contingut importat" -#: ../../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/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "Off" +msgstr "Apagat" -#: ../../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/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "On" +msgstr "Funcionant" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Admin.php:678 #, php-format -msgid "Version %s" -msgstr "Versió %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Plugins/addons/apps Instal·lats:" +msgid "Lock feature %s" +msgstr "Bloca característica %s" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Plugins/addons/apps no instal·lats" +#: ../../Zotlabs/Module/Admin.php:686 +msgid "Manage Additional Features" +msgstr "Gestiona Funcionalitats Addicionals" -#: ../../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/Admin.php:703 +msgid "No server found" +msgstr "No es troba servidor" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Etiqueta:" +#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +msgid "ID" +msgstr "ID" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Última actualització en rerefons:" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "for channel" +msgstr "per a canal" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Càrrega actual mitja:" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "on server" +msgstr "al servidor" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Correguent en el lloc web" +#: ../../Zotlabs/Module/Admin.php:712 +msgid "Server" +msgstr "Servidor" -#: ../../Zotlabs/Module/Siteinfo.php:59 +#: ../../Zotlabs/Module/Admin.php:746 msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Visita hubzilla.org 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" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Per defecte, HTML no filtrat està permés als media embeguts. Això es inherentment no segur." -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "$projectname qüestions" +#: ../../Zotlabs/Module/Admin.php:749 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "L'ajust recomanat és només permetre HTML sense filtrar dels següents llocs:" -#: ../../Zotlabs/Module/Siteinfo.php:63 +#: ../../Zotlabs/Module/Admin.php:750 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" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" +msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" -#: ../../Zotlabs/Module/Rmagic.php:44 +#: ../../Zotlabs/Module/Admin.php:751 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." +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Tota la resta de contingut embegut seà filtrat, excepte contingut embegut d'aquest lloc que està blocat explícitament." -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "El missatge d'error fou:" +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +msgid "Security" +msgstr "Seguretat" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Ha fallat l'autentificació." +#: ../../Zotlabs/Module/Admin.php:758 +msgid "Block public" +msgstr "Bloca que sigui públic" -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Autentificació Remota" +#: ../../Zotlabs/Module/Admin.php:758 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "activa per blocar l'accés a les pàgines personals públiques a tothom excepte aquells/es que s'hagin autenticat en aquest node." -#: ../../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/Admin.php:759 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Set \"Transport Security\" HTTP header" -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Autentica't" +#: ../../Zotlabs/Module/Admin.php:760 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Set \"Content Security Policy\" HTTP header" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Nodes Públics" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "Allow communications only from these sites" +msgstr "Permetre comunicacions únicament des de aquests llocs" -#: ../../Zotlabs/Module/Pubsites.php:25 +#: ../../Zotlabs/Module/Admin.php:761 msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "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, proveu de seguir els enllaços dels proveïdors." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "URL del Node" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un lloc per línia. Deixar en blanc per permetre, per defecte, la comunicació amb tothom." -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipus d'accés" +#: ../../Zotlabs/Module/Admin.php:762 +msgid "Block communications from these sites" +msgstr "Bloca comunicacions que venen d'aquests llocs" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Condicions d'inscripció" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "Allow communications only from these channels" +msgstr "Permet la comunicació només per aquests canals" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Estadístiques" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canal (hash) per línia. Deixa en blanc per permetre, per defecte, la comunicació qualsevol canal." -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Programari" +#: ../../Zotlabs/Module/Admin.php:764 +msgid "Block communications from these channels" +msgstr "Bloca les comunicacions que venen d'aquests canals" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Valoracions" +#: ../../Zotlabs/Module/Admin.php:765 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Permetre embeguts només de llocs web i enllaços segurs (SSL)." -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Puntua" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Permetre HTML embegut sense filtrar només d'aquests dominis." -#: ../../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/Admin.php:766 +msgid "One site per line. By default embedded content is filtered." +msgstr "Un lloc per línia. Per defecte el contingut embegut es filtrat." -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Puja una Foto pel Perfil" +#: ../../Zotlabs/Module/Admin.php:767 +msgid "Block embedded HTML from these domains" +msgstr "Bloca HTML embegut d'aquests dominis" -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nom del Bloc" +#: ../../Zotlabs/Module/Admin.php:785 +msgid "Update has been marked successful" +msgstr "Actualització marcada amb exit" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Bloc" +#: ../../Zotlabs/Module/Admin.php:795 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Executant %s ha fallat. Comprova els logs del sistema." -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Títol del bloc" +#: ../../Zotlabs/Module/Admin.php:798 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Actualització %s es va realitzar correctament." -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Lloc web:" +#: ../../Zotlabs/Module/Admin.php:802 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Actualització %s no ha retornat l'estat. Es desconeix si ha finalitzat amb exit." -#: ../../Zotlabs/Module/Rate.php:163 +#: ../../Zotlabs/Module/Admin.php:805 #, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal Remot [%s] (encara no es coneix en aquest lloc)" +msgid "Update function %s could not be found." +msgstr "La funció d'actualitzacio %s no es pot trobar." -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Valoració (aquesta informació és pública)" +#: ../../Zotlabs/Module/Admin.php:821 +msgid "No failed updates." +msgstr "No hi ha actualitzacions fallides." -#: ../../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/Admin.php:825 +msgid "Failed Updates" +msgstr "Actualitzacions Fallides" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "No valorat" +#: ../../Zotlabs/Module/Admin.php:827 +msgid "Mark success (if update was manually applied)" +msgstr "Marca èxit (si l'actualització s'ha aplicat de forma manual)" -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Valoració:" +#: ../../Zotlabs/Module/Admin.php:828 +msgid "Attempt to execute this update step automatically" +msgstr "Prova a fer automàticament aquesta actualització" -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Lloc web:" +#: ../../Zotlabs/Module/Admin.php:859 +msgid "Queue Statistics" +msgstr "Cua d'Estadístiques" -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Descripció:" +#: ../../Zotlabs/Module/Admin.php:860 +msgid "Total Entries" +msgstr "Total d'Entrades" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Aplicatius" +#: ../../Zotlabs/Module/Admin.php:861 +msgid "Priority" +msgstr "Prioritat" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Títol (opcional)" +#: ../../Zotlabs/Module/Admin.php:862 +msgid "Destination URL" +msgstr "URL de Destí" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Editar Bloc" +#: ../../Zotlabs/Module/Admin.php:863 +msgid "Mark hub permanently offline" +msgstr "Marca el node com a permanentment fora de línia" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "No s'ha trobat el canal" +#: ../../Zotlabs/Module/Admin.php:864 +msgid "Empty queue for this hub" +msgstr "Cua buida per aquest node" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Connexions en comú" +#: ../../Zotlabs/Module/Admin.php:865 +msgid "Last known contact" +msgstr "Últim contacte conegut" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "No hi ha connexions en comú." +#: ../../Zotlabs/Module/Admin.php:901 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "S'ha [des]bloquejat %s compte" +msgstr[1] "S'han [des]bloquejat %s comptes" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Tria una carpeta d'interès" +#: ../../Zotlabs/Module/Admin.php:908 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "S'ha esborrat el compte %s" +msgstr[1] "S'han esborrat %s comptes" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Guarda Favorits" +#: ../../Zotlabs/Module/Admin.php:944 +msgid "Account not found" +msgstr "Compte no trobat" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL de favorit" +#: ../../Zotlabs/Module/Admin.php:955 +#, php-format +msgid "Account '%s' deleted" +msgstr "S'ha esborrat el compte '%s'" + +#: ../../Zotlabs/Module/Admin.php:963 +#, php-format +msgid "Account '%s' blocked" +msgstr "S'ha bloquejat el compte '%s'" + +#: ../../Zotlabs/Module/Admin.php:971 +#, php-format +msgid "Account '%s' unblocked" +msgstr "S'ha desbloquejat el compte '%s'" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "O entra un nou nom de favorit" +#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 +#: ../../include/widgets.php:1383 +msgid "Accounts" +msgstr "Comptes" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Nombre màxim d'inscripcions diaris excedit. Si us plau, provau demà." +#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +msgid "select all" +msgstr "Sel·leciona-ho tot" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "L'inscripció ha fallat. Si et plau, indica que acceptes les Condicions del Servei." +#: ../../Zotlabs/Module/Admin.php:1034 +msgid "Registrations waiting for confirm" +msgstr "" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Les contrasenyes no coincideixen." +#: ../../Zotlabs/Module/Admin.php:1035 +msgid "Request date" +msgstr "Data de la petició" -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrat amb èxit. Si et plau revisa el teu correu electrònic per a les instruccions de validació." +#: ../../Zotlabs/Module/Admin.php:1036 +msgid "No registrations." +msgstr "Sense registracions." -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "La teva inscripció esta pendent de validació pel propietari del lloc." +#: ../../Zotlabs/Module/Admin.php:1038 +msgid "Deny" +msgstr "Denegat" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "La teva inscripció no ha pogut ser processat. " +#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +msgid "All Channels" +msgstr "Tots els Canals" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "L'inscripció en aquest node està deshabilitat." +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "Register date" +msgstr "Data de registre" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "L'inscripció en aquest node es únicament per validació." +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Last login" +msgstr "Darrera identificació" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Inscripció en altre node afiliat" +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Expires" +msgstr "Expira" -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Admin.php:1052 +msgid "Service Class" +msgstr "Classe de Servei" + +#: ../../Zotlabs/Module/Admin.php:1054 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/inscripció. Provau demà." +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Els comptes seleccionats seran eliminats!\\n\\nTot el que hagin publicat en aquest lloc serà esborrat permanentment!\\n\\nN'estàs segur de continuar?" -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Condicions del Servei" +#: ../../Zotlabs/Module/Admin.php:1055 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'usuari {0} serà eliminat!\\n\\nTot el que hagi publicat l'usuari en aquest lloc serà esborrat de permanentment!\\n\\nN'estàs segur?" -#: ../../Zotlabs/Module/Register.php:221 +#: ../../Zotlabs/Module/Admin.php:1091 #, php-format -msgid "I accept the %s for this website" -msgstr "Accepto el %s per a aquest lloc web" +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s canal censurat/no censurat" +msgstr[1] "%s canals censurats/no censurats" -#: ../../Zotlabs/Module/Register.php:223 +#: ../../Zotlabs/Module/Admin.php:1100 #, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Tinc més de 13 anys i accepto les %s d'aquest lloc web" - -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "La teva adreça de correu electrónic" - -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Tria una contrasenya" +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s codi permes/no permes al canal" +msgstr[1] "%s codi permesos/no permesos al canal" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Si et plau, re-entra la contrasenya" +#: ../../Zotlabs/Module/Admin.php:1106 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canal esborrat" +msgstr[1] "%s canals esborrats" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Si et plau, introdueix el teu codi d'invitació" +#: ../../Zotlabs/Module/Admin.php:1126 +msgid "Channel not found" +msgstr "Canal no trobat" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "no" +#: ../../Zotlabs/Module/Admin.php:1136 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Canal '%s' esborrat" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "sí" +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' censored" +msgstr "Canal '%s' censurat" -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." -msgstr "La pertinença en aquest lloc es per invitació exclusivament." +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Canal '%s' no censurat" -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 -msgid "Register" -msgstr "Inscripció" +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Canal '%s' permet codi" -#: ../../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/Admin.php:1159 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Canal '%s' no permet codi" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Inicia Sessió." +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +msgid "Channels" +msgstr "Canals" -#: ../../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/Admin.php:1214 +msgid "Censor" +msgstr "Censurat" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Esborra el compte" +#: ../../Zotlabs/Module/Admin.php:1215 +msgid "Uncensor" +msgstr "No censurat" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "ALERTA:" +#: ../../Zotlabs/Module/Admin.php:1216 +msgid "Allow Code" +msgstr "Permet Codi" -#: ../../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/Admin.php:1217 +msgid "Disallow Code" +msgstr "No Permet Codi" -#: ../../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/Admin.php:1218 ../../include/conversation.php:1611 +msgid "Channel" +msgstr "Canal" -#: ../../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/Admin.php:1222 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Admin.php:1226 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." +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Els canals sel·leccionats s'esborraran!\\n\\nTotes les publicacions d'aquests canals en aquest lloc s'eliminaran de forma permanent!\\n\\nEstàs segur? " -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Admin.php:1227 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" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "El canal {0} serà esborrat!\\n\\nTotes les publicacions d'aquest canal en aquest lloc s'eliminaran de forma permanent!\\n\\nEstàs segur?" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 -msgid "Remove Account" -msgstr "Esborra el Compte" +#: ../../Zotlabs/Module/Admin.php:1284 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s desactivat." -#: ../../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/Admin.php:1288 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s activat." -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Elimina Aquest Canal" +#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +msgid "Disable" +msgstr "Desactivat" -#: ../../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/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +msgid "Enable" +msgstr "Activat" -#: ../../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/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 +#: ../../include/widgets.php:1387 +msgid "Plugins" +msgstr "Plugins" -#: ../../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/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +msgid "Toggle" +msgstr "Commutar" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 -msgid "Remove Channel" -msgstr "Elimina el canal" +#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 +msgid "Settings" +msgstr "Ajustos" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exportar Canal" +#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +msgid "Author: " +msgstr "Autor: " -#: ../../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/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +msgid "Maintainer: " +msgstr "Mantenedor:" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Exportar el Contingut" +#: ../../Zotlabs/Module/Admin.php:1341 +msgid "Minimum project version: " +msgstr "Versió mínima del projecte:" -#: ../../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/Admin.php:1342 +msgid "Maximum project version: " +msgstr "Versió màxima del projecte:" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporta les teves entrades d'un any donat." +#: ../../Zotlabs/Module/Admin.php:1343 +msgid "Minimum PHP version: " +msgstr "Versió mínima de PHP:" -#: ../../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/Admin.php:1344 +msgid "Requires: " +msgstr "Requereix:" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu %2$s" +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +msgid "Disabled - version incompatibility" +msgstr "Desactiva - incompatibilitat de versió" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu %2$s" +#: ../../Zotlabs/Module/Admin.php:1394 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Introdueix la URL del repositori git públic del repositori de plugins." -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Aquests arxius de contingut poden ser importats o restaurats per visitar %2$s 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/Admin.php:1395 +msgid "Plugin repo git URL" +msgstr "URL del repositori de plugins." -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" -msgstr "Elements etiquetats amb: %s" +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "Custom repo name" +msgstr "Nom del repositori personalitzat" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Resultats de cerca per: %s" +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "(optional)" +msgstr "(opcional)" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "No s'han trobat restriccions de clase." +#: ../../Zotlabs/Module/Admin.php:1397 +msgid "Download Plugin Repo" +msgstr "Descarrega el Repositori de Plugins" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "Es requereix un Nom" +#: ../../Zotlabs/Module/Admin.php:1404 +msgid "Install new repo" +msgstr "Instal·la un nou repositori " -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "Es requereix Clau (Key) i el Secret (Secret)" +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +msgid "Install" +msgstr "Instal·lar" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:1427 +msgid "Manage Repos" +msgstr "Gestiona Repositoris" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "" +#: ../../Zotlabs/Module/Admin.php:1428 +msgid "Installed Plugin Repositories" +msgstr "Repositori de Plugins Instal·lat" -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "" +#: ../../Zotlabs/Module/Admin.php:1429 +msgid "Install a New Plugin Repository" +msgstr "Instal·la un Nou Repositori de Plugins" -#: ../../Zotlabs/Module/Settings.php:274 -msgid "Not valid email." -msgstr "E-correu no vàlid." +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +msgid "Update" +msgstr "Actualització" -#: ../../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/Admin.php:1436 +msgid "Switch branch" +msgstr "Canvia de branca" -#: ../../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/Admin.php:1550 +msgid "No themes found." +msgstr "No s'han trobat temes." -#: ../../Zotlabs/Module/Settings.php:303 -msgid "Password verification failed." -msgstr "La verificació de la contrasenya ha fallat." +#: ../../Zotlabs/Module/Admin.php:1606 +msgid "Screenshot" +msgstr "Copia de pantalla" -#: ../../Zotlabs/Module/Settings.php:310 -msgid "Passwords do not match. Password unchanged." -msgstr "Les contrasenyes no coincideixen. Contrasenya sense canvis." +#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 +#: ../../include/widgets.php:1388 +msgid "Themes" +msgstr "Temes" -#: ../../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/Admin.php:1652 +msgid "[Experimental]" +msgstr "[Experimental]" -#: ../../Zotlabs/Module/Settings.php:328 -msgid "Password changed." -msgstr "Contrasenya canviada." +#: ../../Zotlabs/Module/Admin.php:1653 +msgid "[Unsupported]" +msgstr "[No soportat]" -#: ../../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/Admin.php:1677 +msgid "Log settings updated." +msgstr "Registre d'ajustos actualitzat." -#: ../../Zotlabs/Module/Settings.php:579 -msgid "Settings updated." -msgstr "Ajustes actualizados." +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 +msgid "Logs" +msgstr "Logs" -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 -msgid "Add application" -msgstr "Afegir aplicatiu" +#: ../../Zotlabs/Module/Admin.php:1734 +msgid "Clear" +msgstr "Neteja" -#: ../../Zotlabs/Module/Settings.php:646 -msgid "Name of application" -msgstr "Nom de l'aplicatiu" +#: ../../Zotlabs/Module/Admin.php:1740 +msgid "Debugging" +msgstr "Depurant" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "Log file" +msgstr "Arxiu de registre" -#: ../../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/Admin.php:1741 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../Zotlabs/Module/Admin.php:1742 +msgid "Log level" +msgstr "Nivell de registre" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 -msgid "Redirect" -msgstr "Redirecciona" +#: ../../Zotlabs/Module/Admin.php:2028 +msgid "New Profile Field" +msgstr "Camp de Perfil Nou" -#: ../../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/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "Field nickname" +msgstr "Àlies de Camp" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 -msgid "Icon url" -msgstr "Icona de url" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "System name of field" +msgstr "nOM DEL SISTEMA DEL CAMP" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Opcional" +#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +msgid "Input type" +msgstr "Tipus d'entrada" -#: ../../Zotlabs/Module/Settings.php:661 -msgid "Application not found." -msgstr "Aplicatiu no trobat." +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Field Name" +msgstr "Nom de Camp" -#: ../../Zotlabs/Module/Settings.php:704 -msgid "Connected Apps" -msgstr "Aplicatius Conectats" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Label on profile pages" +msgstr "Etiqueta a les pàgines de perfil" -#: ../../Zotlabs/Module/Settings.php:708 -msgid "Client key starts with" -msgstr "La clau del client comença amb" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Help text" +msgstr "Text d'ajuda" -#: ../../Zotlabs/Module/Settings.php:709 -msgid "No name" -msgstr "Sin nombre" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Additional info (optional)" +msgstr "Informació adicional (opcional)" -#: ../../Zotlabs/Module/Settings.php:710 -msgid "Remove authorization" -msgstr "Elimina autorització" +#: ../../Zotlabs/Module/Admin.php:2042 +msgid "Field definition not found" +msgstr "No es troba la definició del camp" -#: ../../Zotlabs/Module/Settings.php:723 -msgid "No feature settings configured" -msgstr "No hi ha opcions de les funcions configurades" +#: ../../Zotlabs/Module/Admin.php:2048 +msgid "Edit Profile Field" +msgstr "Camp d'Edició del Perfil" -#: ../../Zotlabs/Module/Settings.php:730 -msgid "Feature/Addon Settings" -msgstr "Ajustos de Complements" +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +msgid "Profile Fields" +msgstr "Camps del Perfil" -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Account Settings" -msgstr "Ajustos de Compte" +#: ../../Zotlabs/Module/Admin.php:2107 +msgid "Basic Profile Fields" +msgstr "Camps Bàsics del Perfil" -#: ../../Zotlabs/Module/Settings.php:754 -msgid "Current Password" -msgstr "Contrasenya Actual" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "Advanced Profile Fields" +msgstr "Camps Avançats del Perfil" + +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "(In addition to basic fields)" +msgstr "( addicionalment als camps bàsics)" -#: ../../Zotlabs/Module/Settings.php:755 -msgid "Enter New Password" -msgstr "Entra la Nova Contrasenya" +#: ../../Zotlabs/Module/Admin.php:2110 +msgid "All available fields" +msgstr "Tots els camps disponibles" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Confirm New Password" -msgstr "Confirma la Nova Contrasenya" +#: ../../Zotlabs/Module/Admin.php:2111 +msgid "Custom Fields" +msgstr "Camps Personalitzats" -#: ../../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/Admin.php:2115 +msgid "Create Custom Field" +msgstr "Crear un Camp Personalitzat" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 -msgid "Email Address:" -msgstr "Adreça de E-Correu:" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "Aplicació instal·lada." -#: ../../Zotlabs/Module/Settings.php:760 -msgid "Remove this account including all its channels" -msgstr "Esborra aquest compte inclosos tots els seus canals" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Aplicació amb errors" -#: ../../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/Appman.php:104 +msgid "Embed code" +msgstr "Codi embegut" -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Edita l'Aplicació" -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crea l'Aplicació" -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nom de l'Aplicació" -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Ubicació (URL) de l'aplicació" -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Foto icona URL" -#: ../../Zotlabs/Module/Settings.php:830 -msgid "Additional Features" -msgstr "Característiques Addicionals" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - opcional" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "Connector Settings" -msgstr "Ajustos de Connector" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categories (opcional, lista separada per comes)" -#: ../../Zotlabs/Module/Settings.php:893 -msgid "No special theme for mobile devices" -msgstr "No emprar tema especial per aparells mòbils" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versió ID" -#: ../../Zotlabs/Module/Settings.php:896 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Preu de l'aplicació" -#: ../../Zotlabs/Module/Settings.php:938 -msgid "Display Settings" -msgstr "Ajustos de Pantalla" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Ubicació (URL) per comprar l'aplicació" -#: ../../Zotlabs/Module/Settings.php:939 -msgid "Theme Settings" -msgstr "Ajustos de Tema" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Tria una carpeta d'interès" -#: ../../Zotlabs/Module/Settings.php:940 -msgid "Custom Theme Settings" -msgstr "Ajustos Personals de Tema" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Guarda Favorits" -#: ../../Zotlabs/Module/Settings.php:941 -msgid "Content Settings" -msgstr "Ajustos de Contingut" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL de favorit" -#: ../../Zotlabs/Module/Settings.php:947 -msgid "Display Theme:" -msgstr "Ajustos de Tema:" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "O entra un nou nom de favorit" -#: ../../Zotlabs/Module/Settings.php:948 -msgid "Mobile Theme:" -msgstr "Tema Mòbil:" +#: ../../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à." -#: ../../Zotlabs/Module/Settings.php:949 -msgid "Preload images before rendering the page" -msgstr "Precarrega les imatges abans de dibuixar la pàgina" +#: ../../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." + +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Les contrasenyes no coincideixen." -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Register.php:131 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" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registrat amb èxit. Si et plau revisa el teu correu electrònic per a les instruccions de validació." -#: ../../Zotlabs/Module/Settings.php:950 -msgid "Enable user zoom on mobile devices" -msgstr "Zoom d'usuari en dispositius mòbils" +#: ../../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." -#: ../../Zotlabs/Module/Settings.php:951 -msgid "Update browser every xx seconds" -msgstr "Actualitza el navegador cada xx segons" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "El teu registre no ha pogut ser processat. " -#: ../../Zotlabs/Module/Settings.php:951 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínim de 10 segons, sense màxim" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "El registre en aquest node està deshabilitat." -#: ../../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/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "El registre en aquest node es únicament per validació." -#: ../../Zotlabs/Module/Settings.php:952 -msgid "Maximum of 100 items" -msgstr "Màxim de 100 elements" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registre en altre node afiliat" -#: ../../Zotlabs/Module/Settings.php:953 -msgid "Show emoticons (smilies) as images" -msgstr "Mostra emoticons (smilies) com a imatges" +#: ../../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à." -#: ../../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/Register.php:215 +msgid "Terms of Service" +msgstr "Condicions del Servei" -#: ../../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/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accepto el %s per a aquest lloc web" -#: ../../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/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Tinc més de 13 anys i accepto les %s d'aquest lloc web" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 -msgid "(comments displayed separately)" -msgstr "(Observacions es mostren per separat)" +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "La teva adreça de correu electrónic" -#: ../../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/Register.php:228 +msgid "Choose a password" +msgstr "Tria una contrasenya" -#: ../../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/Register.php:229 +msgid "Please re-enter your password" +msgstr "Si et plau, re-entra la contrasenya" -#: ../../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/Register.php:230 +msgid "Please enter your invitation code" +msgstr "Si et plau, introdueix el teu codi d'invitació" -#: ../../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/Register.php:236 +msgid "no" +msgstr "no" -#: ../../Zotlabs/Module/Settings.php:990 -msgid "Nobody except yourself" -msgstr "Ningú excepte tú" +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "sí" -#: ../../Zotlabs/Module/Settings.php:991 -msgid "Only those you specifically allow" -msgstr "Només allò que específicament permetis" +#: ../../Zotlabs/Module/Register.php:250 +msgid "Membership on this site is by invitation only." +msgstr "La pertinença en aquest lloc es per invitació exclusivament." -#: ../../Zotlabs/Module/Settings.php:992 -msgid "Approved connections" -msgstr "Connexions aprovades" +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 +msgid "Register" +msgstr "Registre" -#: ../../Zotlabs/Module/Settings.php:993 -msgid "Any connections" -msgstr "Qualsevol connexió" +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Comença a crear el teu primer canal" -#: ../../Zotlabs/Module/Settings.php:994 -msgid "Anybody on this website" -msgstr "Qualsevol en aquest lloc" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Inicia Sessió." -#: ../../Zotlabs/Module/Settings.php:995 -msgid "Anybody in this network" -msgstr "Qualsevol en aquesta xarxa" +#: ../../Zotlabs/Module/Removeaccount.php:34 +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/Settings.php:996 -msgid "Anybody authenticated" -msgstr "Qualsevol autenticat" +#: ../../Zotlabs/Module/Removeaccount.php:56 +msgid "Remove This Account" +msgstr "Esborra el compte" -#: ../../Zotlabs/Module/Settings.php:997 -msgid "Anybody on the internet" -msgstr "Qualsevol a internet" +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "WARNING: " +msgstr "ALERTA:" -#: ../../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/Removeaccount.php:57 +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/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/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "This action is permanent and can not be undone!" +msgstr "Aquesta acció és irreversible!" -#: ../../Zotlabs/Module/Settings.php:1085 -msgid "Your channel address is" -msgstr "La teva adreça del canal es" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Please enter your password for verification:" +msgstr "Aquesta acció requereix tornar a introduir la contrasenya:" -#: ../../Zotlabs/Module/Settings.php:1127 -msgid "Channel Settings" -msgstr "Ajustos del Canal" +#: ../../Zotlabs/Module/Removeaccount.php:59 +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 +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/Settings.php:1134 -msgid "Basic Settings" -msgstr "Ajustos Bàsics" +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 +msgid "Remove Account" +msgstr "Esborra el Compte" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 -msgid "Full Name:" -msgstr "Nom Complet:" +#: ../../Zotlabs/Module/Removeme.php:33 +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/Settings.php:1137 -msgid "Your Timezone:" -msgstr "La teva Franja Horària" +#: ../../Zotlabs/Module/Removeme.php:58 +msgid "Remove This Channel" +msgstr "Elimina Aquest Canal" -#: ../../Zotlabs/Module/Settings.php:1138 -msgid "Default Post Location:" -msgstr "Localització Predeterminada de les Entrades:" +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "This channel will be completely removed from the network. " +msgstr "Aquest canal serà completament eliminat de la xarxa." -#: ../../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/Removeme.php:61 +msgid "Remove this channel and all its clones from the network" +msgstr "Elimina aquest canal i els seus clons de la xarxa" -#: ../../Zotlabs/Module/Settings.php:1139 -msgid "Use Browser Location:" -msgstr "Empra la Localització del Navegador:" +#: ../../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 "Per defecte, només la instancia del canal ubicat en aquest node pot esser esborrat de la xarxa" -#: ../../Zotlabs/Module/Settings.php:1141 -msgid "Adult Content" -msgstr "Contingut per a Adults" +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 +msgid "Remove Channel" +msgstr "Elimina el canal" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Rmagic.php:44 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:1143 -msgid "Security and Privacy Settings" -msgstr "Ajustos de Seguretat i Privacitat" +"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/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/Rmagic.php:44 +msgid "The error message was:" +msgstr "El missatge d'error fou:" -#: ../../Zotlabs/Module/Settings.php:1148 -msgid "Hide my online presence" -msgstr "Amaga la meva presencia en línia" +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Ha fallat l'autentificació." -#: ../../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/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Autentificació Remota" -#: ../../Zotlabs/Module/Settings.php:1150 -msgid "Simple Privacy Settings:" -msgstr "Ajustos simples de privacitat:" +#: ../../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/Settings.php:1151 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Molt públic - extremadament permissiu (s'ha d'anar en compte)" +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Autentica't" -#: ../../Zotlabs/Module/Settings.php:1152 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Normal - públic per defecte, privat quan es desitgi (similar als permisos de xarxa social, però amb millor privacitat)" +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elements etiquetats amb: %s" -#: ../../Zotlabs/Module/Settings.php:1153 -msgid "Private - default private, never open or public" -msgstr "Privat - privat per defecte, mai públic o obert" +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Resultats de cerca per: %s" -#: ../../Zotlabs/Module/Settings.php:1154 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloquejat - tothom bloquejat per defecte" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "No s'han trobat restriccions de clase." -#: ../../Zotlabs/Module/Settings.php:1156 -msgid "Allow others to tag your posts" -msgstr "Permet a altres etiquetar les teves entrades" +#: ../../Zotlabs/Module/Settings.php:69 +msgid "Name is required" +msgstr "Es requereix un Nom" -#: ../../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:73 +msgid "Key and Secret are required" +msgstr "Es requereix Clau (Key) i el Secret (Secret)" -#: ../../Zotlabs/Module/Settings.php:1158 -msgid "Advanced Privacy Settings" -msgstr "Ajustos avançats de privacitat" +#: ../../Zotlabs/Module/Settings.php:225 +msgid "Not valid email." +msgstr "E-correu no vàlid." -#: ../../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:228 +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: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:237 +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:1160 -#, php-format -msgid "This website expires after %d days." -msgstr "Aquest lloc web expira després de %d dies." +#: ../../Zotlabs/Module/Settings.php:254 +msgid "Password verification failed." +msgstr "La verificació de la contrasenya ha fallat." -#: ../../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:261 +msgid "Passwords do not match. Password unchanged." +msgstr "Les contrasenyes no coincideixen. Contrasenya sense canvis." -#: ../../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:265 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Les contrasenyes en blanc no estan permesas. Contrasenya sense canvis." -#: ../../Zotlabs/Module/Settings.php:1161 -msgid "Maximum Friend Requests/Day:" -msgstr "Nombre màxim de peticions d'amistat per dia" +#: ../../Zotlabs/Module/Settings.php:279 +msgid "Password changed." +msgstr "Contrasenya canviada." -#: ../../Zotlabs/Module/Settings.php:1161 -msgid "May reduce spam activity" -msgstr "Pot reduir l'SPAM" +#: ../../Zotlabs/Module/Settings.php:281 +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:1162 -msgid "Default Post and Publish Permissions" -msgstr "Permisos de Entrades i Publicació per defecte" +#: ../../Zotlabs/Module/Settings.php:525 +msgid "Settings updated." +msgstr "Ajustes actualizados." -#: ../../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:589 ../../Zotlabs/Module/Settings.php:615 +#: ../../Zotlabs/Module/Settings.php:651 +msgid "Add application" +msgstr "Afegir aplicatiu" -#: ../../Zotlabs/Module/Settings.php:1167 -msgid "Channel permissions category:" -msgstr "Categoria de permisos de canal:" +#: ../../Zotlabs/Module/Settings.php:592 +msgid "Name of application" +msgstr "Nom de l'aplicatiu" -#: ../../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:593 ../../Zotlabs/Module/Settings.php:619 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../Zotlabs/Module/Settings.php:1173 -msgid "Useful to reduce spamming" -msgstr "Útil per a reduir l'spam" +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 +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:1176 -msgid "Notification Settings" -msgstr "Ajustos de notificacions" +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../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:595 ../../Zotlabs/Module/Settings.php:621 +msgid "Redirect" +msgstr "Redirecciona" -#: ../../Zotlabs/Module/Settings.php:1178 -msgid "accepting a friend request" -msgstr "S'accepta una sol·licitud d'amistat" +#: ../../Zotlabs/Module/Settings.php:595 +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:1179 -msgid "joining a forum/community" -msgstr "Apuntar-se a un fòrum o comunitat" +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 +msgid "Icon url" +msgstr "Icona de url" -#: ../../Zotlabs/Module/Settings.php:1180 -msgid "making an interesting profile change" -msgstr "Faci un canvi interesant al perfil" +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Opcional" -#: ../../Zotlabs/Module/Settings.php:1181 -msgid "Send a notification email when:" -msgstr "Notifica per correu quan:" +#: ../../Zotlabs/Module/Settings.php:607 +msgid "Application not found." +msgstr "Aplicatiu no trobat." -#: ../../Zotlabs/Module/Settings.php:1182 -msgid "You receive a connection request" -msgstr "Rebi una petició de connexió" +#: ../../Zotlabs/Module/Settings.php:650 +msgid "Connected Apps" +msgstr "Aplicatius Conectats" -#: ../../Zotlabs/Module/Settings.php:1183 -msgid "Your connections are confirmed" -msgstr "Es confirma una connexió" +#: ../../Zotlabs/Module/Settings.php:654 +msgid "Client key starts with" +msgstr "La clau del client comença amb" -#: ../../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:655 +msgid "No name" +msgstr "Sin nombre" -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Someone writes a followup comment" -msgstr "Algú ha escrit un comentari de resposta" +#: ../../Zotlabs/Module/Settings.php:656 +msgid "Remove authorization" +msgstr "Elimina autorització" -#: ../../Zotlabs/Module/Settings.php:1186 -msgid "You receive a private message" -msgstr "Rebi un missatge privat" +#: ../../Zotlabs/Module/Settings.php:669 +msgid "No feature settings configured" +msgstr "No hi ha opcions de les funcions configurades" -#: ../../Zotlabs/Module/Settings.php:1187 -msgid "You receive a friend suggestion" -msgstr "Rebi una suggerència d'amistat" +#: ../../Zotlabs/Module/Settings.php:676 +msgid "Feature/Addon Settings" +msgstr "Ajustos de Complements" -#: ../../Zotlabs/Module/Settings.php:1188 -msgid "You are tagged in a post" -msgstr "Estàs etiquetat a l'entrada" +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Account Settings" +msgstr "Ajustos de Compte" -#: ../../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:700 +msgid "Current Password" +msgstr "Contrasenya Actual" -#: ../../Zotlabs/Module/Settings.php:1192 -msgid "Show visual notifications including:" -msgstr "Mostra notificacion visuals, com ara:" +#: ../../Zotlabs/Module/Settings.php:701 +msgid "Enter New Password" +msgstr "Entra la Nova Contrasenya" -#: ../../Zotlabs/Module/Settings.php:1194 -msgid "Unseen grid activity" -msgstr "Activitat de malla no vista" +#: ../../Zotlabs/Module/Settings.php:702 +msgid "Confirm New Password" +msgstr "Confirma la Nova Contrasenya" -#: ../../Zotlabs/Module/Settings.php:1195 -msgid "Unseen channel activity" -msgstr "Activitat no vista del canal" +#: ../../Zotlabs/Module/Settings.php:702 +msgid "Leave password fields blank unless changing" +msgstr "Deixa els camps de contrasenya en blanc llevat que la vulguis canviar" -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Unseen private messages" -msgstr "Missatges privats no llegits" +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 +msgid "Email Address:" +msgstr "Adreça de E-Correu:" -#: ../../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:706 +msgid "Remove this account including all its channels" +msgstr "Esborra aquest compte inclosos tots els seus canals" -#: ../../Zotlabs/Module/Settings.php:1197 -msgid "Upcoming events" -msgstr "Esdeveniments propers" +#: ../../Zotlabs/Module/Settings.php:729 +msgid "Additional Features" +msgstr "Característiques Addicionals" -#: ../../Zotlabs/Module/Settings.php:1198 -msgid "Events today" -msgstr "Esdeveniments d'avui" +#: ../../Zotlabs/Module/Settings.php:753 +msgid "Connector Settings" +msgstr "Ajustos de Connector" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Upcoming birthdays" -msgstr "Aniversaris propers" +#: ../../Zotlabs/Module/Settings.php:792 +msgid "No special theme for mobile devices" +msgstr "No emprar tema especial per aparells mòbils" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Not available in all themes" -msgstr "No està disponible en tots els temes" +#: ../../Zotlabs/Module/Settings.php:795 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimental)" -#: ../../Zotlabs/Module/Settings.php:1200 -msgid "System (personal) notifications" -msgstr "Notificacions (personals) del sistema" +#: ../../Zotlabs/Module/Settings.php:837 +msgid "Display Settings" +msgstr "Ajustos de Pantalla" -#: ../../Zotlabs/Module/Settings.php:1201 -msgid "System info messages" -msgstr "Missatges d'informació del sistema" +#: ../../Zotlabs/Module/Settings.php:838 +msgid "Theme Settings" +msgstr "Ajustos de Tema" -#: ../../Zotlabs/Module/Settings.php:1202 -msgid "System critical alerts" -msgstr "Alertes crítiques del sistema" +#: ../../Zotlabs/Module/Settings.php:839 +msgid "Custom Theme Settings" +msgstr "Ajustos Personals de Tema" -#: ../../Zotlabs/Module/Settings.php:1203 -msgid "New connections" -msgstr "Noves connexions" +#: ../../Zotlabs/Module/Settings.php:840 +msgid "Content Settings" +msgstr "Ajustos de Contingut" -#: ../../Zotlabs/Module/Settings.php:1204 -msgid "System Registrations" -msgstr "Inscripcions del Sistema" +#: ../../Zotlabs/Module/Settings.php:846 +msgid "Display Theme:" +msgstr "Ajustos de Tema:" -#: ../../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:847 +msgid "Mobile Theme:" +msgstr "Tema Mòbil:" -#: ../../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:848 +msgid "Preload images before rendering the page" +msgstr "Precarrega les imatges abans de dibuixar la pàgina" -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Must be greater than 0" -msgstr "Ha de ser més gran que 0" +#: ../../Zotlabs/Module/Settings.php:848 +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:1209 -msgid "Advanced Account/Page Type Settings" -msgstr "Ajustos avançats de compte i tipus de pàgina" +#: ../../Zotlabs/Module/Settings.php:849 +msgid "Enable user zoom on mobile devices" +msgstr "Zoom d'usuari en dispositius mòbils" -#: ../../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:850 +msgid "Update browser every xx seconds" +msgstr "Actualitza el navegador cada xx segons" -#: ../../Zotlabs/Module/Settings.php:1213 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Activa el mode d'expert (a Ajustos > Més funcions)" +#: ../../Zotlabs/Module/Settings.php:850 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Mínim de 10 segons, sense màxim" -#: ../../Zotlabs/Module/Settings.php:1214 -msgid "Miscellaneous Settings" -msgstr "Ajustos diversos" +#: ../../Zotlabs/Module/Settings.php:851 +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:1215 -msgid "Default photo upload folder" -msgstr "Carpeta per defecte de fotos pujades" +#: ../../Zotlabs/Module/Settings.php:851 +msgid "Maximum of 100 items" +msgstr "Màxim de 100 elements" -#: ../../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:852 +msgid "Show emoticons (smilies) as images" +msgstr "Mostra emoticons (smilies) com a imatges" -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "Default file upload folder" -msgstr "Carpeta per defecte d'arxius pujats" +#: ../../Zotlabs/Module/Settings.php:853 +msgid "Link post titles to source" +msgstr "Enllaça a l'origen els títols de l'entrada" -#: ../../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:854 +msgid "System Page Layout Editor - (advanced)" +msgstr "Editor de Disseny de la Pàgina del Sistema - (avançat)" -#: ../../Zotlabs/Module/Settings.php:1220 -msgid "Remove this channel." -msgstr "Elimina aquest canal." +#: ../../Zotlabs/Module/Settings.php:857 +msgid "Use blog/list mode on channel page" +msgstr "Empra el mode blog/llista a la pàgina del canal" -#: ../../Zotlabs/Module/Settings.php:1221 -msgid "Firefox Share $Projectname provider" -msgstr "Firefox Share $Projectname provider" +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +msgid "(comments displayed separately)" +msgstr "(Observacions es mostren per separat)" -#: ../../Zotlabs/Module/Settings.php:1222 -msgid "Start calendar week on monday" -msgstr "Comença la setmana del calendari el dilluns" +#: ../../Zotlabs/Module/Settings.php:858 +msgid "Use blog/list mode on grid page" +msgstr "Empra el mode de blog/llista a la pàgina de la malla" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "Servidor $Projectname - Configuració" +#: ../../Zotlabs/Module/Settings.php:859 +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/Setup.php:183 -msgid "Could not connect to database." -msgstr "No puc connectar amb la base de dades" +#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 +msgid "click to expand content exceeding this height" +msgstr "Clic per expandir el contingut que excedeixi aquesta alçada" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "No s'ha pogut connectar a l'URL del lloc especificat. Possible problema amb el certificat SSL o de DNS." +#: ../../Zotlabs/Module/Settings.php:860 +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/Setup.php:194 -msgid "Could not create table." -msgstr "No puc crear la taula." +#: ../../Zotlabs/Module/Settings.php:894 +msgid "Nobody except yourself" +msgstr "Ningú excepte tú" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "La teva base de dades del lloc s'ha instal·lat." +#: ../../Zotlabs/Module/Settings.php:895 +msgid "Only those you specifically allow" +msgstr "Només allò que específicament permetis" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Podria ser necessari importar el fitxer \"install / schema_xxx.sql\" manualment utilitzant un client de base de dades." +#: ../../Zotlabs/Module/Settings.php:896 +msgid "Approved connections" +msgstr "Connexions aprovades" -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Si us plau, consulteu el fitxer \"install / INSTALL.txt\"." +#: ../../Zotlabs/Module/Settings.php:897 +msgid "Any connections" +msgstr "Qualsevol connexió" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "Comprovació del sistema" +#: ../../Zotlabs/Module/Settings.php:898 +msgid "Anybody on this website" +msgstr "Qualsevol en aquest lloc" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "Comprova de nou" +#: ../../Zotlabs/Module/Settings.php:899 +msgid "Anybody in this network" +msgstr "Qualsevol en aquesta xarxa" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Connexió de base de dades" +#: ../../Zotlabs/Module/Settings.php:900 +msgid "Anybody authenticated" +msgstr "Qualsevol autenticat" -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Per tal d'instaŀlar $Projectname cal configurar la connexió a la base de dades." +#: ../../Zotlabs/Module/Settings.php:901 +msgid "Anybody on the internet" +msgstr "Qualsevol a internet" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Si us plau, poseu-vos en contacte amb el proveïdor de serveis o administrador del lloc si vostè té preguntes sobre aquests paràmetres." +#: ../../Zotlabs/Module/Settings.php:976 +msgid "Publish your default profile in the network directory" +msgstr "Publica el teu perfil per defecte al directori de la xarxa" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de dades s'especifica a continuació ja ha d'existir. Si no és així, si us plau crear-la abans de continuar." +#: ../../Zotlabs/Module/Settings.php:981 +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/Setup.php:297 -msgid "Database Server Name" -msgstr "Base de Dades Nom del Servidor" +#: ../../Zotlabs/Module/Settings.php:990 +msgid "Your channel address is" +msgstr "La teva adreça del canal es" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "Per defecte es 127.0.0.1" +#: ../../Zotlabs/Module/Settings.php:1032 +msgid "Channel Settings" +msgstr "Ajustos del Canal" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Port per a la Base de Dades" +#: ../../Zotlabs/Module/Settings.php:1039 +msgid "Basic Settings" +msgstr "Ajustos Bàsics" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Numero del port de comunicacions - empra 0 per defecte" +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 +msgid "Full Name:" +msgstr "Nom Complet:" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Base de Dades Nom d'Accès" +#: ../../Zotlabs/Module/Settings.php:1042 +msgid "Your Timezone:" +msgstr "La teva Franja Horària" -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Base de Dades Contrasenya d'Accès" +#: ../../Zotlabs/Module/Settings.php:1043 +msgid "Default Post Location:" +msgstr "Localització Predeterminada de les Entrades:" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Nom de la Base de Dades" +#: ../../Zotlabs/Module/Settings.php:1043 +msgid "Geographical location to display on your posts" +msgstr "Posició geogràfica a mostrar a les teves entrades" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "Tipus de Base de Dades" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Use Browser Location:" +msgstr "Empra la Localització del Navegador:" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "Adreça de correu de l'administrador del lloc" +#: ../../Zotlabs/Module/Settings.php:1046 +msgid "Adult Content" +msgstr "Contingut per a Adults" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "El teu compte de email ha de coincidir amb això per poder emprar el panel web d'administrador." +"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/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "URL del lloc web" +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Security and Privacy Settings" +msgstr "Ajustos de Seguretat i Privacitat" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Si us plau, empra SSL (https) URL si està disponible." +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Els teus permisos estan configurats. Clic per veure/ajustar" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Si us plau, tria la zona horària del teu lloc web" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Hide my online presence" +msgstr "Amaga la meva presencia en línia" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Ajustos del lloc" +#: ../../Zotlabs/Module/Settings.php:1053 +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/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "Activar característiques advanced de $Projectname?" +#: ../../Zotlabs/Module/Settings.php:1055 +msgid "Simple Privacy Settings:" +msgstr "Ajustos simples de privacitat:" -#: ../../Zotlabs/Module/Setup.php:347 +#: ../../Zotlabs/Module/Settings.php:1056 msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Algunes característiques avançades, hauran de ser ajustades per persones tècnicament capaces, per poder emprar-les." +"Very Public - extremely permissive (should be used with caution)" +msgstr "Molt públic - extremadament permissiu (s'ha d'anar en compte)" -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." -msgstr "PHP version 5.5 or greater is required." +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Normal - públic per defecte, privat quan es desitgi (similar als permisos de xarxa social, però amb millor privacitat)" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" -msgstr "PHP version" +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Private - default private, never open or public" +msgstr "Privat - privat per defecte, mai públic o obert" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No s'ha pogut trobar una versió de línia d'ordres del PHP en el PATH del servidor web." +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloquejat - tothom bloquejat per defecte" + +#: ../../Zotlabs/Module/Settings.php:1061 +msgid "Allow others to tag your posts" +msgstr "Permet a altres etiquetar les teves entrades" -#: ../../Zotlabs/Module/Setup.php:405 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Si vostè no té una versió de línia d'ordres del PHP instal·lada al servidor, vostè no serà capaç d'executar sondejos en segon pla via cron." +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Sovint emprat per la comunitat per marcar retroactivament contingut inapropiat" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" -msgstr "Camí cap l'executable de PHP" +#: ../../Zotlabs/Module/Settings.php:1063 +msgid "Advanced Privacy Settings" +msgstr "Ajustos avançats de privacitat" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Introdueix el camí cap l'executable de php. Pots deixa-ho en blanc i continuar l'instal·lació." +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "Expire other channel content after this many days" +msgstr "El contingut d'altes canals caduca després d'aquests dies" -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" -msgstr "Línia d'ordres de PHP" +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "0 or blank to use the website limit." +msgstr "0 o en blanc per emprar el limit del lloc web." -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versió de línia d'ordres de PHP al teu sistema no te el \"register_argc_argv\" activat." +#: ../../Zotlabs/Module/Settings.php:1065 +#, php-format +msgid "This website expires after %d days." +msgstr "Aquest lloc web expira després de %d dies." -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." -msgstr "Això es requereix per que funcioni l'entrega de missatges." +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "This website does not expire imported content." +msgstr "A aquest lloc web no expira el contingut importat" -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Settings.php:1065 +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/Setup.php:445 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "La mida màxima que se't permet pujar està establerta en %s. La mida màxima per arxiu pujat es de %s. Se't permet pujar fins a %d arxius d'una vegada." +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "Maximum Friend Requests/Day:" +msgstr "Nombre màxim de peticions d'amistat per dia" -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Pots ajustar aquests valors a l'arxiu php.ini del servidor" +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "May reduce spam activity" +msgstr "Pot reduir l'SPAM" -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" -msgstr "Límits de pujada de PHP" +#: ../../Zotlabs/Module/Settings.php:1067 +msgid "Default Post and Publish Permissions" +msgstr "Permisos de Entrades i Publicació per defecte" -#: ../../Zotlabs/Module/Setup.php:475 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: la funció \"openssl_pkey_new\" en aquest sistema no es capaç de generar claus d'encriptació" +#: ../../Zotlabs/Module/Settings.php:1069 +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/Setup.php:476 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si esta funcionant sota Windows, per favor, miri \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../Zotlabs/Module/Settings.php:1072 +msgid "Channel permissions category:" +msgstr "Categoria de permisos de canal:" -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" -msgstr "Generar claus de xifrat" +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "Maximum private messages per day from unknown people:" +msgstr "Nombre màxim de missatges privats de desconeguts al dia:" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" -msgstr "mòdul PHP libCurl " +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "Useful to reduce spamming" +msgstr "Útil per a reduir l'spam" -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" -msgstr "mòdul PHP GD gràfics" +#: ../../Zotlabs/Module/Settings.php:1081 +msgid "Notification Settings" +msgstr "Ajustos de notificacions" -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" -msgstr "mòdul PHP OpenSSL" +#: ../../Zotlabs/Module/Settings.php:1082 +msgid "By default post a status message when:" +msgstr "Per defecte envia un missatge d'estat quan:" -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" -msgstr "mòdul PHP mysqli o postgres" +#: ../../Zotlabs/Module/Settings.php:1083 +msgid "accepting a friend request" +msgstr "S'accepta una sol·licitud d'amistat" -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" -msgstr "mòdul PHP mb_string" +#: ../../Zotlabs/Module/Settings.php:1084 +msgid "joining a forum/community" +msgstr "Apuntar-se a un fòrum o comunitat" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "xml PHP module" -msgstr "Mòdul xml de PHP" +#: ../../Zotlabs/Module/Settings.php:1085 +msgid "making an interesting profile change" +msgstr "Faci un canvi interesant al perfil" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 -msgid "Apache mod_rewrite module" -msgstr "mòdul Apache mod_rewrite" +#: ../../Zotlabs/Module/Settings.php:1086 +msgid "Send a notification email when:" +msgstr "Notifica per correu quan:" -#: ../../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/Settings.php:1087 +msgid "You receive a connection request" +msgstr "Rebi una petició de connexió" -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Settings.php:1088 +msgid "Your connections are confirmed" +msgstr "Es confirma una connexió" -#: ../../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/Settings.php:1089 +msgid "Someone writes on your profile wall" +msgstr "Algú ha escrit al mur del teu perfil" -#: ../../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/Settings.php:1090 +msgid "Someone writes a followup comment" +msgstr "Algú ha escrit un comentari de resposta" -#: ../../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/Settings.php:1091 +msgid "You receive a private message" +msgstr "Rebi un missatge privat" -#: ../../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/Settings.php:1092 +msgid "You receive a friend suggestion" +msgstr "Rebi una suggerència d'amistat" -#: ../../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/Settings.php:1093 +msgid "You are tagged in a post" +msgstr "Estàs etiquetat a l'entrada" -#: ../../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/Settings.php:1094 +msgid "You are poked/prodded/etc. in a post" +msgstr "S'enfoten/te piquen/etc. en una entrada" -#: ../../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/Settings.php:1097 +msgid "Show visual notifications including:" +msgstr "Mostra notificacion visuals, com ara:" -#: ../../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/Settings.php:1099 +msgid "Unseen grid activity" +msgstr "Activitat de malla no vista" -#: ../../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/Settings.php:1100 +msgid "Unseen channel activity" +msgstr "Activitat no vista del canal" -#: ../../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/Settings.php:1101 +msgid "Unseen private messages" +msgstr "Missatges privats no llegits" -#: ../../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/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "Recommended" +msgstr "Recomanat" -#: ../../Zotlabs/Module/Setup.php:558 -msgid ".htconfig.php is writable" -msgstr "L'arxiu «.htconfig.php» es pot modificar" +#: ../../Zotlabs/Module/Settings.php:1102 +msgid "Upcoming events" +msgstr "Esdeveniments propers" -#: ../../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/Settings.php:1103 +msgid "Events today" +msgstr "Esdeveniments d'avui" -#: ../../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/Settings.php:1104 +msgid "Upcoming birthdays" +msgstr "Aniversaris propers" -#: ../../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/Settings.php:1104 +msgid "Not available in all themes" +msgstr "No està disponible en tots els temes" -#: ../../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/Settings.php:1105 +msgid "System (personal) notifications" +msgstr "Notificacions (personals) del sistema" -#: ../../Zotlabs/Module/Setup.php:578 -#, php-format -msgid "%s is writable" -msgstr "Es pot escriure a %s" +#: ../../Zotlabs/Module/Settings.php:1106 +msgid "System info messages" +msgstr "Missatges d'informació del sistema" -#: ../../Zotlabs/Module/Setup.php:594 -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 "" +#: ../../Zotlabs/Module/Settings.php:1107 +msgid "System critical alerts" +msgstr "Alertes crítiques del sistema" -#: ../../Zotlabs/Module/Setup.php:598 -msgid "store is writable" -msgstr "Es pot escriure al magatzem (store)" +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "New connections" +msgstr "Noves connexions" -#: ../../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/Settings.php:1109 +msgid "System Registrations" +msgstr "Registres del sistema" -#: ../../Zotlabs/Module/Setup.php:632 +#: ../../Zotlabs/Module/Settings.php:1110 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!" +"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/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/Settings.php:1112 +msgid "Notify me of events this many days in advance" +msgstr "Notifica'm dels esdeveniments amb aquests dies d'antelació" -#: ../../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/Settings.php:1112 +msgid "Must be greater than 0" +msgstr "Ha de ser més gran que 0" -#: ../../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/Settings.php:1114 +msgid "Advanced Account/Page Type Settings" +msgstr "Ajustos avançats de compte i tipus de pàgina" + +#: ../../Zotlabs/Module/Settings.php:1115 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifica el comportament d'aquest compte en situacions especials" -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Settings.php:1118 msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Hi ha autoritats de certificació reconegudes que ofereixen certificats gratuïts." +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Activa el mode d'expert (a Ajustos > Més funcions)" -#: ../../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/Settings.php:1119 +msgid "Miscellaneous Settings" +msgstr "Ajustos diversos" -#: ../../Zotlabs/Module/Setup.php:641 -msgid "SSL certificate validation" -msgstr "Validació del certificat SSL" +#: ../../Zotlabs/Module/Settings.php:1120 +msgid "Default photo upload folder" +msgstr "Carpeta per defecte de fotos pujades" -#: ../../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/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1121 +msgid "%Y - current year, %m - current month" +msgstr "%Y - any en curs, %m - mes corrent" -#: ../../Zotlabs/Module/Setup.php:650 -msgid "Url rewrite is working" -msgstr "Es poden reescriure les URL a «.htaccess»" +#: ../../Zotlabs/Module/Settings.php:1121 +msgid "Default file upload folder" +msgstr "Carpeta per defecte d'arxius pujats" -#: ../../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/Settings.php:1123 +msgid "Personal menu to display in your channel pages" +msgstr "Menú personal per mostrar en les teves pàgines de canal" -#: ../../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/Settings.php:1125 +msgid "Remove this channel." +msgstr "Elimina aquest canal." -#: ../../Zotlabs/Module/Setup.php:720 -msgid "

What next

" -msgstr "

I ara què?

" +#: ../../Zotlabs/Module/Settings.php:1126 +msgid "Firefox Share $Projectname provider" +msgstr "Firefox Share $Projectname provider" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Settings.php:1127 +msgid "Start calendar week on monday" +msgstr "Comença la setmana del calendari el dilluns" + +#: ../../Zotlabs/Module/Setup.php:179 +msgid "$Projectname Server - Setup" +msgstr "Servidor $Projectname - Configuració" + +#: ../../Zotlabs/Module/Setup.php:183 +msgid "Could not connect to database." +msgstr "No puc connectar amb la base de dades" + +#: ../../Zotlabs/Module/Setup.php:187 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT! Cal que configuris manualment una execució periòdica del \"poller\"." +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "No s'ha pogut connectar a l'URL del lloc especificat. Possible problema amb el certificat SSL o de DNS." -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Arxius: compartits amb jo" +#: ../../Zotlabs/Module/Setup.php:194 +msgid "Could not create table." +msgstr "No puc crear la taula." -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NOU" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Your site database has been installed." +msgstr "La teva base de dades del lloc s'ha instal·lat." -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Esborra tots els arxius" +#: ../../Zotlabs/Module/Setup.php:203 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Podria ser necessari importar el fitxer \"install / schema_xxx.sql\" manualment utilitzant un client de base de dades." -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Esborra l'arxiu" +#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 +#: ../../Zotlabs/Module/Setup.php:721 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Si us plau, consulteu el fitxer \"install / INSTALL.txt\"." -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "S'ha actualitzat la cosa" +#: ../../Zotlabs/Module/Setup.php:263 +msgid "System check" +msgstr "Comprovació del sistema" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "No s'ha pogut emmagatzemar l'objecte" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "Check again" +msgstr "Comprova de nou" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "S'ha afegit la cosa" +#: ../../Zotlabs/Module/Setup.php:290 +msgid "Database connection" +msgstr "Connexió de base de dades" -#: ../../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/Setup.php:291 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Per tal d'instaŀlar $Projectname cal configurar la connexió a la base de dades." -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Mostra la cosa" +#: ../../Zotlabs/Module/Setup.php:292 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Si us plau, poseu-vos en contacte amb el proveïdor de serveis o administrador del lloc si vostè té preguntes sobre aquests paràmetres." -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "no s'ha trobat l'element." +#: ../../Zotlabs/Module/Setup.php:293 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de dades s'especifica a continuació ja ha d'existir. Si no és així, si us plau crear-la abans de continuar." -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Edita la cosa" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Server Name" +msgstr "Base de Dades Nom del Servidor" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Tria un perfil" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Default is 127.0.0.1" +msgstr "Per defecte es 127.0.0.1" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Publica una activitat" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Port" +msgstr "Port per a la Base de Dades" -#: ../../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/Setup.php:298 +msgid "Communication port number - use 0 for default" +msgstr "Numero del port de comunicacions - empra 0 per defecte" -#: ../../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/Setup.php:299 +msgid "Database Login Name" +msgstr "Base de Dades Nom d'Accès" -#: ../../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/Setup.php:300 +msgid "Database Login Password" +msgstr "Base de Dades Contrasenya d'Accès" -#: ../../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/Setup.php:301 +msgid "Database Name" +msgstr "Nom de la Base de Dades" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Afegeix una cosa al teu perfil" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Type" +msgstr "Tipus de Base de Dades" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Error en crear l'origen. Cap canal seleccionat." +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "Site administrator email address" +msgstr "Adreça de correu de l'administrador del lloc" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Origen creat." +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "El teu compte de email ha de coincidir amb això per poder emprar el panel web d'administrador." -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Origen actualitzat." +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Website URL" +msgstr "URL del lloc web" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Please use SSL (https) URL if available." +msgstr "Si us plau, empra SSL (https) URL si està disponible." -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 -msgid "Channel Sources" -msgstr "Canal Origen" +#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 +msgid "Please select a default timezone for your website" +msgstr "Si us plau, tria la zona horària del teu lloc web" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Gestiona contingut per al teu canal d'origens remots" +#: ../../Zotlabs/Module/Setup.php:333 +msgid "Site settings" +msgstr "Ajustos del lloc" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nou Origen" +#: ../../Zotlabs/Module/Setup.php:347 +msgid "Enable $Projectname advanced features?" +msgstr "Activar característiques advanced de $Projectname?" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Module/Setup.php:347 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importar tot o sel·lecciona contingut dels següents canals, en aquest canal i distribueix-lo d'acord als teus ajustos de canals." +"Some advanced features, while useful - may be best suited for technically " +"proficient audiences" +msgstr "Algunes característiques avançades, hauran de ser ajustades per persones tècnicament capaces, per poder emprar-les." -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Només importa contingut amb aquestes paraules (una per línia)" +#: ../../Zotlabs/Module/Setup.php:388 +msgid "PHP version 5.5 or greater is required." +msgstr "PHP version 5.5 or greater is required." -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Deixar en blanc per importar tot el contingut públic" +#: ../../Zotlabs/Module/Setup.php:389 +msgid "PHP version" +msgstr "PHP version" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Nom del canal" +#: ../../Zotlabs/Module/Setup.php:404 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "No s'ha pogut trobar una versió de línia d'ordres del PHP en el PATH del servidor web." -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Setup.php:405 msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Afegeix les següents categories d'entrades importades des d'aquest origen (separat per comes)" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Si vostè no té una versió de línia d'ordres del PHP instal·lada al servidor, vostè no serà capaç d'executar sondejos en segon pla via cron." -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "No s'ha trobat la font." +#: ../../Zotlabs/Module/Setup.php:409 +msgid "PHP executable path" +msgstr "Camí cap l'executable de PHP" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Edita la font" +#: ../../Zotlabs/Module/Setup.php:409 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Introdueix el camí cap l'executable de php. Pots deixa-ho en blanc i continuar l'instal·lació." -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Esborra la font" +#: ../../Zotlabs/Module/Setup.php:414 +msgid "Command line PHP" +msgstr "Línia d'ordres de PHP" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "S'ha esborrat la font" +#: ../../Zotlabs/Module/Setup.php:423 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versió de línia d'ordres de PHP al teu sistema no te el \"register_argc_argv\" activat." -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "No s'ha pogut esborrar la font." +#: ../../Zotlabs/Module/Setup.php:424 +msgid "This is required for message delivery to work." +msgstr "Això es requereix per que funcioni l'entrega de missatges." -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s esta seguint %2$s de %3$s" +#: ../../Zotlabs/Module/Setup.php:427 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Subthread.php:120 +#: ../../Zotlabs/Module/Setup.php:445 #, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s abandona el seguiment %2$s de %3$s" - -#: ../../Zotlabs/Module/Suggest.php:39 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hi ha suggerencies. Si es un lloc nou, espera 24 hores i proba de nou." +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "La mida màxima que se't permet pujar està establerta en %s. La mida màxima per arxiu pujat es de %s. Se't permet pujar fins a %d arxius d'una vegada." -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignora/Amaga" +#: ../../Zotlabs/Module/Setup.php:450 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Pots ajustar aquests valors a l'arxiu php.ini del servidor" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "entrada" +#: ../../Zotlabs/Module/Setup.php:452 +msgid "PHP upload limits" +msgstr "Límits de pujada de PHP" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 -msgid "comment" -msgstr "comentari" +#: ../../Zotlabs/Module/Setup.php:475 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: la funció \"openssl_pkey_new\" en aquest sistema no es capaç de generar claus d'encriptació" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha etiquetat %3$s de %2$s amb %4$s" +#: ../../Zotlabs/Module/Setup.php:476 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si esta funcionant sota Windows, per favor, miri \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "S'ha tret l'etiqueta" +#: ../../Zotlabs/Module/Setup.php:479 +msgid "Generate encryption keys" +msgstr "Generar claus de xifrat" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Elimina l'etiqueta d'element" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "libCurl PHP module" +msgstr "mòdul PHP libCurl " -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Tria l'etiqueta a eliminar:" +#: ../../Zotlabs/Module/Setup.php:492 +msgid "GD graphics PHP module" +msgstr "mòdul PHP GD gràfics" -#: ../../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/Setup.php:493 +msgid "OpenSSL PHP module" +msgstr "mòdul PHP OpenSSL" -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Accions" +#: ../../Zotlabs/Module/Setup.php:494 +msgid "mysqli or postgres PHP module" +msgstr "mòdul PHP mysqli o postgres" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Enllaç a Pàgina" +#: ../../Zotlabs/Module/Setup.php:495 +msgid "mb_string PHP module" +msgstr "mòdul PHP mb_string" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Títol de la pàgina" +#: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "mòdul PHP mcrypt" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "" +#: ../../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 +msgid "Apache mod_rewrite module" +msgstr "mòdul Apache mod_rewrite" -#: ../../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/Setup.php:501 +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/Wiki.php:93 -msgid "Sandbox" -msgstr "Sandbox" +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Setup.php:507 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "" +"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/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Comparació de revisió" +#: ../../Zotlabs/Module/Setup.php:515 +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/Wiki.php:165 -msgid "Revert" -msgstr "Reverteix" +#: ../../Zotlabs/Module/Setup.php:519 +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/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Escriu el nom del teu nou wiki:" +#: ../../Zotlabs/Module/Setup.php:523 +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/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Escriu el nom de la teva nova pàgina:" +#: ../../Zotlabs/Module/Setup.php:527 +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/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Escriu el nou nom:" +#: ../../Zotlabs/Module/Setup.php:531 +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/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Embeu una imatge dels àlbums de fotos" +#: ../../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/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "Embeu una imatge dels teus àlbums" +#: ../../Zotlabs/Module/Setup.php:539 +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/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "OK" +#: ../../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'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/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "Tria una imatge per a embeure-la" +#: ../../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 "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/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Tria un àlbum" +#: ../../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 "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/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Tria un àlbum diferent..." +#: ../../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 "Aquest procés és opcional. Per a fer una instaŀlació manual consulta les instruccions a «install/INSTALL.txt\"." -#: ../../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/Setup.php:563 +msgid ".htconfig.php is writable" +msgstr "L'arxiu «.htconfig.php» es pot modificar" -#: ../../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/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 "Red fa servir el motor de plantilles Smarty3 per a renderitzar les vistes més ràpidament." -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Ha ocorregut un error treient l'àlbum" +#: ../../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 tal de guardar aquestes plantilles compilades, el servidor web necessita tenir premis d'escriptura en el directori %s sota la carpeta principal." -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Sense connexions." +#: ../../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 "Comprova que l'usuari que executa el servidor (www-data en Apache) té permisos d'escriptura en aquesta carpeta." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Setup.php:580 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita el perfil [%s] de %s" +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/Viewconnections.php:107 -msgid "View Connections" -msgstr "Veure Connexions" +#: ../../Zotlabs/Module/Setup.php:583 +#, php-format +msgid "%s is writable" +msgstr "Es pot escriure a %s" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Origen de l'article" +#: ../../Zotlabs/Module/Setup.php:599 +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." -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autoritza la connexió de l'aplicació" +#: ../../Zotlabs/Module/Setup.php:603 +msgid "store is writable" +msgstr "Es pot escriure al magatzem (store)" -#: ../../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/Setup.php:636 +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/Api.php:72 -msgid "Please login to continue." -msgstr "Si et plau, identifica't per continuar." +#: ../../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 "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/Api.php:87 +#: ../../Zotlabs/Module/Setup.php:638 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." +"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/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Cerca a xchan" +#: ../../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 "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/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Cerca a xchan començant per (o webbie)" +#: ../../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 "Per tant, com que perjudica la usabilitat més enllà del teu lloc, la restricció de tenir un certificat reconegut és molt important." -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "Perdut el nom de la sala" +#: ../../Zotlabs/Module/Setup.php:641 +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/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "Nom de la sala duplicat" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "SSL certificate validation" +msgstr "Validació del certificat SSL" -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "Especificació de la sala invàlida." +#: ../../Zotlabs/Module/Setup.php:649 +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/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "Sala no trobada." +#: ../../Zotlabs/Module/Setup.php:652 +msgid "Url rewrite is working" +msgstr "Es poden reescriure les URL a «.htaccess»" -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "La sala es plena" +#: ../../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 "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/Lib/Enotify.php:60 ../../include/network.php:1882 -msgid "$Projectname Notification" -msgstr "Notificació de $Projectname" +#: ../../Zotlabs/Module/Setup.php:685 +msgid "Errors encountered creating database tables." +msgstr "S'han produït errors mentre es creaven taules a la base de dades." -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 -msgid "$projectname" -msgstr "$projectname" +#: ../../Zotlabs/Module/Setup.php:719 +msgid "

What next

" +msgstr "

I ara què?

" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 -msgid "Thank You," -msgstr "Gràcies," +#: ../../Zotlabs/Module/Setup.php:720 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT! Cal que configuris manualment una execució periòdica del \"poller\"." -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrador" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Arxius: compartits amb jo" -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NOU" -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:Notify] Nou corrreu rebut en %s" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Esborra tots els arxius" -#: ../../Zotlabs/Lib/Enotify.php:106 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s t'ha enviat un nou missatge privat a %3$s." +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Esborra l'arxiu" -#: ../../Zotlabs/Lib/Enotify.php:107 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s t'ha enviat %2$s." +msgid "Version %s" +msgstr "Versió %s" -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" -msgstr "un missatge privat" +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Plugins/addons/apps Instal·lats:" -#: ../../Zotlabs/Lib/Enotify.php:108 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Per favor, visita %s per a veure i/o respondre els teus missatges privats." +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Plugins/addons/apps no instal·lats" -#: ../../Zotlabs/Lib/Enotify.php:164 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s comentat en [zrl=%3$s]a %4$s[/zrl]" +#: ../../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/Lib/Enotify.php:172 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s comentat en [zrl=%3$s]%4$s de %5$s[/zrl]" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Etiqueta:" -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s comentat en [zrl=%3$s]el teu %4$s[/zrl]" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Última actualització en rerefons:" -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:Notify] Comentari sobre una conversació #%1$d per %2$s" +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Càrrega actual mitja:" -#: ../../Zotlabs/Lib/Enotify.php:193 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s comentat en un article/conversa que havies estat seguint." +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Correguent en el lloc web" -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Si us plau visita %s per veure i/o contestar a la conversa" +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Visita hubzilla.org per saber-ne més de $Projectname." -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:Avís] %s ha escrit una entrada al teu mur" +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Per informar d'errors o problemes ves a" -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s ha escrit una entrada al teu mur en %3$s" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "$projectname qüestions" -#: ../../Zotlabs/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s enviat correu a [zrl=%3$s]el teu mur[/zrl]" +#: ../../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/Lib/Enotify.php:230 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla:Notificació] %s t'ha etiquetat" +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Administradors del lloc" -#: ../../Zotlabs/Lib/Enotify.php:231 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s t'ha etiquetat a %3$s" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Error en crear l'origen. Cap canal seleccionat." -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]t'ha etiquetat[/zrl]." +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Origen creat." -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla:Avís] %1$s s'en fot de tu" +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Origen actualitzat." -#: ../../Zotlabs/Lib/Enotify.php:245 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s s'en fot de tú a %3$s" +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Lib/Enotify.php:246 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]s'en fot de tú[/zrl]." +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:71 +msgid "Channel Sources" +msgstr "Canal Origen" -#: ../../Zotlabs/Lib/Enotify.php:262 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla:Avís] %s ha etiquetat la teva entrada" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Gestiona contingut per al teu canal d'origens remots" -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s ha etiquetat la teva entrada a %3$s" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nou Origen" -#: ../../Zotlabs/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s etiquetat [zrl=%3$s]la teva entrada[/zrl]" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importar tot o sel·lecciona contingut dels següents canals, en aquest canal i distribueix-lo d'acord als teus ajustos de canals." -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla:Avís] Presentació rebuda" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Només importa contingut amb aquestes paraules (una per línia)" -#: ../../Zotlabs/Lib/Enotify.php:277 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, has rebut una nova petició de connexió de '%2$s' a %3$s" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Deixar en blanc per importar tot el contingut públic" -#: ../../Zotlabs/Lib/Enotify.php:278 -#, php-format +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Nom del canal" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, has rebut [zrl=%2$s]una nova petició de connexió[/zrl] de %3$s." +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Afegeix les següents categories d'entrades importades des d'aquest origen (separat per comes)" -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Pots visitar el seu perfil a %s" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "No s'ha trobat la font." -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Si us plau, visita %s per aprovar o rebutjar la petició de connexió." +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Edita la font" -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:Notificació] Rebuda suggerencia d'amistat" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Esborra la font" + +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "S'ha esborrat la font" -#: ../../Zotlabs/Lib/Enotify.php:292 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, has rebut una suggerència d'amistat de '%2$s' a %3$s" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "No s'ha pogut esborrar la font." -#: ../../Zotlabs/Lib/Enotify.php:293 +#: ../../Zotlabs/Module/Subthread.php:118 #, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, has rebut [zrl=%2$s]una suggerència d'amistat[/zrl] per %3$s de %4$s." +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s esta seguint %2$s de %3$s" -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "Nom:" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s abandona el seguiment %2$s de %3$s" -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "Foto:" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No hi ha suggerencies. Si es un lloc nou, espera 24 hores i proba de nou." -#: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Per favor, visita %s per a aprovar o rebutjar la suggerencia." +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignora/Amaga" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:Notificació]" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +msgid "post" +msgstr "entrada" -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "Creada una nova entrada" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "comentari" -#: ../../Zotlabs/Lib/Enotify.php:668 +#: ../../Zotlabs/Module/Tagger.php:100 #, php-format -msgid "commented on %s's post" -msgstr "comentat a l'entrada de %s" +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha etiquetat %3$s de %2$s amb %4$s" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Administració" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "S'ha tret l'etiqueta" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Informe d'Errors" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Elimina l'etiqueta d'element" -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Veure Marcadors" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Tria l'etiqueta a eliminar:" -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Les meves Sales de Xat" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "S'ha actualitzat la cosa" -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Compartir amb Firefox" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "No s'ha pogut emmagatzemar l'objecte" -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnòstics Remots" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "S'ha afegit la cosa" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Suggerir Canals" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Identifica't" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostra la cosa" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Malla" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "no s'ha trobat l'element." -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Canal Personal" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Edita la cosa" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Esdeveniments" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Tria un perfil" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Directori" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Publica una activitat" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Correu" +#: ../../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/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Xerrar" +#: ../../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/Lib/Apps.php:231 -msgid "Probe" -msgstr "Sondeig" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "Adreça URL de la cosa (opcional)" -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Suggeriment" +#: ../../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/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Canal Aleatori" +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Afegeix una cosa al teu perfil" -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Convida" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exportar Canal" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funcionalitats" +#: ../../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/Lib/Apps.php:237 -msgid "Post" -msgstr "Entrada" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exportar el Contingut" -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Compra" +#: ../../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/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Missatge Privat" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporta les teves entrades d'un any donat." -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "Selecciona" +#: ../../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/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "Guardar en la Carpeta" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu %2$s" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Assistiré" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu %2$s" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "No assistiré" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Aquests arxius de contingut poden ser importats o restaurats per visitar %2$s 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/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Podria assistir" +#: ../../Zotlabs/Module/Viewconnections.php:62 +msgid "No connections." +msgstr "Sense connexions." -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "D'acord" +#: ../../Zotlabs/Module/Viewconnections.php:75 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita el perfil [%s] de %s" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "En desacord" +#: ../../Zotlabs/Module/Viewconnections.php:104 +msgid "View Connections" +msgstr "Veure Connexions" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "M'abstinc" +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Origen de l'article" -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Fes-lo Preferit" +#: ../../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/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Treu-lo de Preferits" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Accions" -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Canvia el Estat de la Preferència" +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Enllaç a Pàgina" -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "preferit" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Títol de la pàgina" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Validada la signatura del missatge" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Cerca a xchan" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Signatura del missatge incorrecta" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Cerca a xchan començant per (o webbie)" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Afegeix Etiqueta" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Administració" -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 -msgid "like" -msgstr "agrada" +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "Informe d'Errors" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "desagrada" +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "Veure Marcadors" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "Share This" -msgstr "Comparteix Això" +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "Les meves Sales de Xat" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "share" -msgstr "comparteix" +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "Compartir amb Firefox" -#: ../../Zotlabs/Lib/ThreadItem.php:275 -msgid "Delivery Report" -msgstr "Informe de Lliurament" +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "Diagnòstics Remots" -#: ../../Zotlabs/Lib/ThreadItem.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commentari" -msgstr[1] "%d commentaris" +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Suggerir Canals" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 -#, php-format -msgid "View %s's profile - %s" -msgstr "Veure perfil de %s - %s" +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Identifica't" -#: ../../Zotlabs/Lib/ThreadItem.php:326 -msgid "to" -msgstr "a" +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Malla" -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "via" -msgstr "via" +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Canal Personal" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "Wall-to-Wall" -msgstr "Mur-a-Mur" +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Esdeveniments" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via Wall-To-Wall:" -msgstr "via Mur-a-Mur:" +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Directori" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 -#, php-format -msgid "from %s" -msgstr "De %s" +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Correu" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" -msgstr "últim editat: %s" +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Xerrar" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" -msgstr "Expira: %s" +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Sondeig" -#: ../../Zotlabs/Lib/ThreadItem.php:370 -msgid "Save Bookmarks" -msgstr "Guarda Favorits" +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Suggeriment" -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Add to Calendar" -msgstr "Afegeix al Calendari" +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Canal Aleatori" -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Mark all seen" -msgstr "Marca tot com ja vist" +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Convida" -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "" +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Funcionalitats" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 -msgid "Bold" -msgstr "Negreta" +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Entrada" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 -msgid "Italic" -msgstr "Italica" +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Compra" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 -msgid "Underline" -msgstr "Subratllat" +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" +msgstr "Perdut el nom de la sala" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 -msgid "Quote" -msgstr "Cometes" +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" +msgstr "Nom de la sala duplicat" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 -msgid "Code" -msgstr "Codi" +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." +msgstr "Especificació de la sala invàlida." -#: ../../Zotlabs/Lib/ThreadItem.php:716 -msgid "Image" -msgstr "Imatge" +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." +msgstr "Sala no trobada." -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Insert Link" -msgstr "Insereix Enllaç" +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" +msgstr "La sala es plena" -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Video" -msgstr "Video" +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +msgid "$Projectname Notification" +msgstr "Notificació de $Projectname" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Visible per a la teva audiència " +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +msgid "$projectname" +msgstr "$projectname" -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Només jo" +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +msgid "Thank You," +msgstr "Gràcies," -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Públic" +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrador" -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Ningú a la xarxa $Projectname" +#: ../../Zotlabs/Lib/Enotify.php:100 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#: ../../Zotlabs/Lib/Enotify.php:104 #, php-format -msgid "Any account on %s" -msgstr "Qualsevol compte a %s" +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Notify] Nou corrreu rebut en %s" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Qualsevol de les meves connexions" +#: ../../Zotlabs/Lib/Enotify.php:106 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s t'ha enviat un nou missatge privat a %3$s." -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Només les connexions que permeto específicament" +#: ../../Zotlabs/Lib/Enotify.php:107 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s t'ha enviat %2$s." -#: ../../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)" +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" +msgstr "un missatge privat" -#: ../../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" +#: ../../Zotlabs/Lib/Enotify.php:108 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Per favor, visita %s per a veure i/o respondre els teus missatges privats." -#: ../../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." +#: ../../Zotlabs/Lib/Enotify.php:164 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s comentat en [zrl=%3$s]a %4$s[/zrl]" -#: ../../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" +#: ../../Zotlabs/Lib/Enotify.php:172 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s comentat en [zrl=%3$s]%4$s de %5$s[/zrl]" -#: ../../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" +#: ../../Zotlabs/Lib/Enotify.php:181 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s comentat en [zrl=%3$s]el teu %4$s[/zrl]" -#: ../../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" +#: ../../Zotlabs/Lib/Enotify.php:192 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla:Notify] Comentari sobre una conversació #%1$d per %2$s" -#: ../../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" +#: ../../Zotlabs/Lib/Enotify.php:193 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s comentat en un article/conversa que havies estat seguint." -#: ../../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ó." +#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 +#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 +#: ../../Zotlabs/Lib/Enotify.php:269 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Si us plau visita %s per veure i/o contestar a la conversa" -#: ../../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." +#: ../../Zotlabs/Lib/Enotify.php:202 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla:Avís] %s ha escrit una entrada al teu mur" -#: ../../include/dba/dba_driver.php:171 +#: ../../Zotlabs/Lib/Enotify.php:204 #, 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'" +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s ha escrit una entrada al teu mur en %3$s" -#: ../../include/photos.php:114 +#: ../../Zotlabs/Lib/Enotify.php:206 #, 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 "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s enviat correu a [zrl=%3$s]el teu mur[/zrl]" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "El fitxer d'imatge esta buit." +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla:Notificació] %s t'ha etiquetat" -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Fracassà l'emmagatzematge de la Foto" +#: ../../Zotlabs/Lib/Enotify.php:231 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s t'ha etiquetat a %3$s" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "Una foto nova" +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]t'ha etiquetat[/zrl]." -#: ../../include/photos.php:303 +#: ../../Zotlabs/Lib/Enotify.php:244 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s enviat %2$s a %3$s" +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla:Avís] %1$s s'en fot de tu" -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Albums de Fotos" +#: ../../Zotlabs/Lib/Enotify.php:245 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s s'en fot de tú a %3$s" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Puja Noves Fotos" +#: ../../Zotlabs/Lib/Enotify.php:246 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]s'en fot de tú[/zrl]." -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Desconectar" +#: ../../Zotlabs/Lib/Enotify.php:262 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla:Avís] %s ha etiquetat la teva entrada" -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Finalitza aquesta sessió" +#: ../../Zotlabs/Lib/Enotify.php:263 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s ha etiquetat la teva entrada a %3$s" -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Inici" +#: ../../Zotlabs/Lib/Enotify.php:264 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s etiquetat [zrl=%3$s]la teva entrada[/zrl]" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Les teves entrades i converses" +#: ../../Zotlabs/Lib/Enotify.php:276 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla:Avís] Presentació rebuda" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "La teva pàgina de perfil" +#: ../../Zotlabs/Lib/Enotify.php:277 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, has rebut una nova petició de connexió de '%2$s' a %3$s" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Gestiona/Edita perfils" +#: ../../Zotlabs/Lib/Enotify.php:278 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, has rebut [zrl=%2$s]una nova petició de connexió[/zrl] de %3$s." -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Edita Perfil" +#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Pots visitar el seu perfil a %s" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Edita el teu perfil" +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Si us plau, visita %s per aprovar o rebutjar la petició de connexió." -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Les Teves Fotos" +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Notificació] Rebuda suggerencia d'amistat" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Els teus arxius" +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, has rebut una suggerència d'amistat de '%2$s' a %3$s" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Les teves sales de xerrar" +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, has rebut [zrl=%2$s]una suggerència d'amistat[/zrl] per %3$s de %4$s." -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Marcadors" +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" +msgstr "Nom:" -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Els teus marcadors" +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" +msgstr "Foto:" -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Les teves pàgines web" +#: ../../Zotlabs/Lib/Enotify.php:303 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Per favor, visita %s per a aprovar o rebutjar la suggerencia." -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Notificació]" -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Signatura" +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" +msgstr "Creada una nova entrada" -#: ../../include/nav.php:129 +#: ../../Zotlabs/Lib/Enotify.php:668 #, php-format -msgid "%s - click to logout" -msgstr "%s - click per desconectar" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Autenticació remota" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Clica per autentificar-te en el teu node" +msgid "commented on %s's post" +msgstr "comentat a l'entrada de %s" -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Pàgina Personal" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +msgid "Private Message" +msgstr "Missatge Privat" -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Crear un compte" +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +msgid "Select" +msgstr "Selecciona" -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Ajuda i documentació" +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "Guardar en la Carpeta" -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Aplicacions, utilitats, enllaços, jocs" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Assistiré" -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Cerca pel lloc @name, #tag, ?docs, contingut" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "No assistiré" -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Directori de Canals" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Podria assistir" -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "La teva malla" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "D'acord" -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Marca totes les notificacions de la malla vistes" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "En desacord" -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Canal personal" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "M'abstinc" -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Marca totes les notificacions de canal vistes" +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" +msgstr "Fes-lo Preferit" -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Noticies" +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" +msgstr "Treu-lo de Preferits" -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notificacions" +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" +msgstr "Canvia el Estat de la Preferència" -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Veure totes les Notificacions" +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" +msgstr "preferit" -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Correu privat" +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +msgid "Message signature validated" +msgstr "Validada la signatura del missatge" -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Veure tots els missatges privats" +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +msgid "Message signature incorrect" +msgstr "Signatura del missatge incorrecta" -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Marcar tots els missatges privats vistos" +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" +msgstr "Afegeix Etiqueta" -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Safata d'entrada" +#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +msgid "like" +msgstr "agrada" -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Safata de sortida" +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "desagrada" -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nou Missatge" +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "Share This" +msgstr "Comparteix Això" -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Calendari d'Events" +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "share" +msgstr "comparteix" -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Veure tots els esdeveniments" +#: ../../Zotlabs/Lib/ThreadItem.php:275 +msgid "Delivery Report" +msgstr "Informe de Lliurament" -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Marcar tots els esdeveniments vistos" +#: ../../Zotlabs/Lib/ThreadItem.php:293 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commentari" +msgstr[1] "%d commentaris" -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Gestiona els Teus Canals" +#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#, php-format +msgid "View %s's profile - %s" +msgstr "Veure perfil de %s - %s" -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Ajustos de Compte/Canal" +#: ../../Zotlabs/Lib/ThreadItem.php:326 +msgid "to" +msgstr "a" -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Admin" +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "via" +msgstr "via" -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Ajustos i Configuració del Lloc" +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "Wall-to-Wall" +msgstr "Mur-a-Mur" -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Carregant..." +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "via Wall-To-Wall:" +msgstr "via Mur-a-Mur:" -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@nom, #etiqueta, ?doc, contingut" +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#, php-format +msgid "from %s" +msgstr "De %s" -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Si us plau, espera......." +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#, php-format +msgid "last edited: %s" +msgstr "últim editat: %s" -#: ../../include/network.php:704 -msgid "view full size" -msgstr "Veure a mida competa" +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#, php-format +msgid "Expires: %s" +msgstr "Expira: %s" -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrador" +#: ../../Zotlabs/Lib/ThreadItem.php:370 +msgid "Save Bookmarks" +msgstr "Guarda Favorits" -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Sense Assumpte" +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Add to Calendar" +msgstr "Afegeix al Calendari" -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" +#: ../../Zotlabs/Lib/ThreadItem.php:380 +msgid "Mark all seen" +msgstr "Marca tot com ja vist" -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" +#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] mostra tot" -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU-Social" +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +msgid "Bold" +msgstr "Negreta" -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +msgid "Italic" +msgstr "Italica" -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +msgid "Underline" +msgstr "Subratllat" -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +msgid "Quote" +msgstr "Cometes" -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +msgid "Code" +msgstr "Codi" -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../Zotlabs/Lib/ThreadItem.php:716 +msgid "Image" +msgstr "Imatge" -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Insert Link" +msgstr "Insereix Enllaç" -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Video" +msgstr "Video" -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Pàgina Nova" +#: ../../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/page_widgets.php:46 -msgid "Title" -msgstr "Títol" +#: ../../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 @@ -7438,1416 +6799,1586 @@ msgstr "vols" msgid "likes" msgstr "agrada" -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "desagrada" +#: ../../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" + +#: ../../include/text.php:472 +msgid "older" +msgstr "el més antic" + +#: ../../include/text.php:474 +msgid "newer" +msgstr "El més nou" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "Sense Connexions" + +#: ../../include/text.php:888 +#, 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/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/text.php:1039 +msgid "pinged" +msgstr "colocat" -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nom buit" +#: ../../include/text.php:1040 +msgid "prod" +msgstr "picar" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nom massa llarg" +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "picat" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Sense identificador de compte" +#: ../../include/text.php:1041 +msgid "slap" +msgstr "bufetada" -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Alies/malnom es requerit." +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "bufetejat" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Àlies reservat. Tria un altre." +#: ../../include/text.php:1042 +msgid "finger" +msgstr "senyal" -#: ../../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/text.php:1042 +msgid "fingered" +msgstr "senyalat" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "No es pot recuperar la identitat creada" +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "menyspreu" -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Perfil per Defecte" +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "menyspreuat" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "El canal demanat no està disponible." +#: ../../include/text.php:1055 +msgid "happy" +msgstr "feliç" -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Crear un Perfil Nou" +#: ../../include/text.php:1056 +msgid "sad" +msgstr "trist" -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Visible per tothom" +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "melós" -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Gènere:" +#: ../../include/text.php:1058 +msgid "tired" +msgstr "cansat" -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Estatus:" +#: ../../include/text.php:1059 +msgid "perky" +msgstr "turgent" -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Pàgina Personal:" +#: ../../include/text.php:1060 +msgid "angry" +msgstr "enfadat" -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Ara en Linia" +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "estupefacte" -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "M'agrada aquest canal" +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "perplexe" -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F, Y" +#: ../../include/text.php:1063 +msgid "interested" +msgstr "Interessat" -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "amargat" -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Aniversari:" +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "feliç" -#: ../../include/channel.php:1232 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +#: ../../include/text.php:1066 +msgid "alive" +msgstr "viu" -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Preferència Sexual:" +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "molest" -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Etiquetes:" +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "ansiós" -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Idees Polítiques:" +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "malagaitós" -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religió:" +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "transtornat" -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Aficions/Interessos:" +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustrat" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Agrada:" +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "deprimit" -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Desagrada:" +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivat" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Informació de contacte i Xarxes Socials:" +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "relaxat" -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Els meus altres canals:" +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "sorprès" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Interessos Musicals:" +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "Dilluns" -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Llibres, literatura:" +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "Dimarts" -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Televisió:" +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "Dimecres" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Películes/Dança/Cultura/Entreteniment:" +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "Dijous" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Amor/Romace:" +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "Divendres" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Treball/feina:" +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "Dissabte" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Escola/educació:" +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "Diumenge" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "M'agrada això" +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "Gener" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nova finestra" +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "Febrer" -#: ../../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/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "Març" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "usuari '%s' esborrat" +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "Abril" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s esta ara connectat amb %2$s" +#: ../../include/text.php:1261 +msgid "May" +msgstr "Maig" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s a esperonat %2$s" +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "Juny" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "esperonat" +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "Juliol" -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vista %s del perfil @ %s" +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "Agost" -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Categories:" +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "Setembre" -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Arxivar a:" +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "Octubre" -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "Veure en context" +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "Novembre" -#: ../../include/conversation.php:850 -msgid "remove" -msgstr "treu" +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "Desembre" -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" -msgstr "Esborra els Articles Seleccionats" +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Adjunt Desconegut" -#: ../../include/conversation.php:951 -msgid "View Source" -msgstr "Veure l'Origen" +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "desconegut" -#: ../../include/conversation.php:952 -msgid "Follow Thread" -msgstr "Segueix el Fil" +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "elimina categoria" -#: ../../include/conversation.php:953 -msgid "Unfollow Thread" -msgstr "Fil Abandonat" +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "elimina del arxiu" -#: ../../include/conversation.php:958 -msgid "Activity/Posts" -msgstr "Activitat/Entrades" +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "per defecte" -#: ../../include/conversation.php:960 -msgid "Edit Connection" -msgstr "Modifica la Connexió" +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Format de la pàgina" -#: ../../include/conversation.php:961 -msgid "Message" -msgstr "Missatge" +#: ../../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." -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s likes this." -msgstr "%s agrada això." +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Tipus de contingut de la pàgina" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s doesn't like this." -msgstr "%s no agrada això." +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Tria un idioma alternatiu" -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d gent agrada això." -msgstr[1] "%2$d gent agrada això." +#: ../../include/text.php:1953 +msgid "activity" +msgstr "activitat" -#: ../../include/conversation.php:1084 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d gent no agrada això." -msgstr[1] "%2$d gent no agrada això." +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Eines de disseny" -#: ../../include/conversation.php:1090 -msgid "and" -msgstr "i" +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Pàgines" -#: ../../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/widgets.php:103 +msgid "System" +msgstr "Sistema" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s like this." -msgstr "%s agrada això." +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nova App" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s don't like this." -msgstr "%s no agrada això." +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggerencies" -#: ../../include/conversation.php:1133 -msgid "Set your location" -msgstr "Ajusta la teva ubicació" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Veure més....." -#: ../../include/conversation.php:1134 -msgid "Clear browser location" -msgstr "Treu la localització del navegador" +#: ../../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/conversation.php:1182 -msgid "Tag term:" -msgstr "Paraula de l'Etiqueta:" +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Afegeix una Nova Connexió" -#: ../../include/conversation.php:1183 -msgid "Where are you right now?" -msgstr "On ets ara?" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Introdueix l'adreça del canal" -#: ../../include/conversation.php:1221 -msgid "Page link name" -msgstr "Nom de la pàgina enllaçada" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Exemples: bob@example.com, https://exemple.com/barbara" -#: ../../include/conversation.php:1224 -msgid "Post as" -msgstr "Envia com" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notes" -#: ../../include/conversation.php:1238 -msgid "Toggle voting" -msgstr "Commutar votació" +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Plaç de remoció" -#: ../../include/conversation.php:1246 -msgid "Categories (optional, comma-separated list)" -msgstr "Categories (opcional, llista separada per comes)" +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Cerques Guardades" -#: ../../include/conversation.php:1269 -msgid "Set publish date" -msgstr "Ajusta la data de publicació" +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "afegeix" -#: ../../include/conversation.php:1518 -msgid "Discover" -msgstr "Descobrir" +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Carpetes Guardades" -#: ../../include/conversation.php:1521 -msgid "Imported public streams" -msgstr "Importar fluxos públics" +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tot" -#: ../../include/conversation.php:1526 -msgid "Commented Order" -msgstr "Ordenar per Comentaris" +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Arxius" -#: ../../include/conversation.php:1529 -msgid "Sort by Comment Date" -msgstr "Ordenar per Data del Comentari" +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Refresc" -#: ../../include/conversation.php:1533 -msgid "Posted Order" -msgstr "Ordenar per Entrades" +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Ajustos de Compte" -#: ../../include/conversation.php:1536 -msgid "Sort by Post Date" -msgstr "Ordenar per Data d' Entrada" +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Ajustos de Canal" -#: ../../include/conversation.php:1544 -msgid "Posts that mention or involve you" -msgstr "Entrades que et mencionen o involucren" +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Característiques addicionals" -#: ../../include/conversation.php:1553 -msgid "Activity Stream - by date" -msgstr "Activitat del Flux - per data" +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Ajustos de Complements" -#: ../../include/conversation.php:1559 -msgid "Starred" -msgstr "Preferit" +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Ajustos de pantalla" -#: ../../include/conversation.php:1562 -msgid "Favourite Posts" -msgstr "Entrades Favorites" +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestiona ubicacions" -#: ../../include/conversation.php:1569 -msgid "Spam" -msgstr "Spam" +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Exportat canal" -#: ../../include/conversation.php:1572 -msgid "Posts flagged as SPAM" -msgstr "Entrades marcades com a SPAM" +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Apps connectades" -#: ../../include/conversation.php:1629 -msgid "Status Messages and Posts" -msgstr "Estat dels Missatges i Entrades" +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Ajustos Premium de Canal" -#: ../../include/conversation.php:1638 -msgid "About" -msgstr "El Meu Perfil" +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Menú de Correu Privat" -#: ../../include/conversation.php:1641 -msgid "Profile Details" -msgstr "Detalls del Perfil" +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Vista Combinada" -#: ../../include/conversation.php:1657 -msgid "Files and Storage" -msgstr "Arxius i Emmagatzegament" +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Safata d'entrada" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Sala per Xerrar" +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Safata de sortida" -#: ../../include/conversation.php:1693 -msgid "Saved Bookmarks" -msgstr "Marcadors Guardats" +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nou Missatge" -#: ../../include/conversation.php:1703 -msgid "Manage Webpages" -msgstr "Gestió de Pàgines Web" +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversacions" -#: ../../include/conversation.php:1768 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Assistint" -msgstr[1] "Assistint" +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Missatges Rebuts" -#: ../../include/conversation.php:1771 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Desassistint" -msgstr[1] "Desassistint" +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Missatges Enviats" -#: ../../include/conversation.php:1774 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indecís" -msgstr[1] "Indecisos" +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Sense missatges." -#: ../../include/conversation.php:1777 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Acord" -msgstr[1] "Acords" +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Conversació esborrada" -#: ../../include/conversation.php:1780 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Desacord" -msgstr[1] "Desacords" +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Menú d'Esdeveniments" -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Abstenirse" -msgstr[1] "Abstenirse" +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Vista de Dia" -#: ../../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/widgets.php:753 +msgid "Week View" +msgstr "Vista de Setmana" -#: ../../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/widgets.php:754 +msgid "Month View" +msgstr "Vista de Mes" -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Freqüentment" +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Eina d'Esdeveniments" -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Horariament" +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Exportar Calendari" -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Dos vegades al dia" +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importar Calendari" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Diariament" +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Sala per Xerrar" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Setmanalment" +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Visió General" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Mensualment" +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Membres de la Sala de Xat" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Actualment Masculí" +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Sales de Xat Favorites" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Actualment Femení" +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Sales de Xat Suggerides" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Més aviat Masculí" +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/imatge" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Més Aviat Femení" +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Fes clic per veure més" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Canvi de Sexe" +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Eines de Valoració" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersexual" +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Valora'm" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transsexual" +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Veure Valoracions" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermafrodita" +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Forums" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Neutre" +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Tasques" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "Indefinit" +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Documentació" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indecís" +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Informació del Projecte/Lloc" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Homes" +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Per Membres" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Dones" +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Per Administradors" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Gay" +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Per Desenvolupadors" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbianes" +#: ../../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/selectors.php:85 -msgid "No Preference" -msgstr "Sense Preferències" +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Revisa cua" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisexual" +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Actualitzacions de Base de Dades" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosexual" +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Admin" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Abstinent" +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Característiques del Plugin" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Verge" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "El canal està bloquejat en aquest lloc." -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Desviat" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Ubicació del canal perduda." -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetixiste" +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "La resposta del canal remot fou incompleta." -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Orgies" +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "El canal fou esborrat i actualment no existeix." -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Asexual" +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocol desactivat." -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Solter" +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "Descobriment de canal fallit." -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Solitari" +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "No pots connectar amb tu mateix." -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponible" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$s de marcadors" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "No Disponible" +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Línia de Temps Pública" -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Aplastat" +#: ../../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" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Encapritxat" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Contingut encriptat" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Promés" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Instal·la l'element %s:" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infidel" +#: ../../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/selectors.php:123 -msgid "Sex Addict" -msgstr "Adicte al Sexe" +#: ../../include/bbcode.php:254 +#, 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/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amics amb Beneficis" +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Clic per obrir/tancar" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Casual" +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "xafa guitarres" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Ocupat" +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Diferents observadors veuran aquest text de diferents formes" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Casat" +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 va escriure:" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Casat Imaginàriament" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opcions de Directori" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Parella" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Manera Segura" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Cohabitant" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Només Fòrums Públics" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Tradició" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Només Aquest Lloc Web" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Feliç" +#: ../../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/selectors.php:123 -msgid "Not looking" -msgstr "No Cerco" +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Desconectar" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Llibertí" +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Finalitza aquesta sessió" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Traït" +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Inici" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separat" +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Les teves entrades i converses" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Inestable" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "La teva pàgina de perfil" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorciat" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Gestiona/Edita perfils" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Divorciat Imaginàriament" +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Edita Perfil" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Vidu/ua" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Edita el teu perfil" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Incert" +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Les Teves Fotos" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Es Complicat" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Els teus arxius" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "No Et Fa Res" +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Les teves sales de xerrar" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Pregunta" +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Marcadors" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$s de marcadors" +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Els teus marcadors" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "" +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Les teves pàgines web" -#: ../../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/nav.php:110 +msgid "Sign in" +msgstr "Signatura" -#: ../../include/text.php:404 -msgid "prev" -msgstr "prev" +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - click per desconectar" -#: ../../include/text.php:406 -msgid "first" -msgstr "primer" +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Autenticació remota" -#: ../../include/text.php:435 -msgid "last" -msgstr "últim" +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Clica per autentificar-te en el teu node" -#: ../../include/text.php:438 -msgid "next" -msgstr "pròxim" +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Pàgina Personal" -#: ../../include/text.php:448 -msgid "older" -msgstr "el més antic" +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Crear un compte" -#: ../../include/text.php:450 -msgid "newer" -msgstr "El més nou" +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Ajuda i documentació" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Sense Connexions" +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Aplicacions, utilitats, enllaços, jocs" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" -msgstr "Veure totes les connexions de %s" +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca pel lloc @name, #tag, ?docs, contingut" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "esperona" +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Directori de Canals" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "coloca" +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "La teva malla" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "colocat" +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Marca totes les notificacions de la malla vistes" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "picar" +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Canal personal" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "picat" +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Marca totes les notificacions de canal vistes" -#: ../../include/text.php:1021 -msgid "slap" -msgstr "bufetada" +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Noticies" -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "bufetejat" +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notificacions" -#: ../../include/text.php:1022 -msgid "finger" -msgstr "senyal" +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Veure totes les Notificacions" -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "senyalat" +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Correu privat" -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "menyspreu" +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Veure tots els missatges privats" -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "menyspreuat" +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Marcar tots els missatges privats vistos" -#: ../../include/text.php:1035 -msgid "happy" -msgstr "feliç" +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Calendari d'Events" -#: ../../include/text.php:1036 -msgid "sad" -msgstr "trist" +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Veure tots els esdeveniments" -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "melós" +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Marcar tots els esdeveniments vistos" -#: ../../include/text.php:1038 -msgid "tired" -msgstr "cansat" +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Gestiona els Teus Canals" -#: ../../include/text.php:1039 -msgid "perky" -msgstr "turgent" +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Ajustos de Compte/Canal" -#: ../../include/text.php:1040 -msgid "angry" -msgstr "enfadat" +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Ajustos i Configuració del Lloc" -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "estupefacte" +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Carregant..." -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "perplexe" +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@nom, #etiqueta, ?doc, contingut" -#: ../../include/text.php:1043 -msgid "interested" -msgstr "Interessat" +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Si us plau, espera......." -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amargat" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nova finestra" -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "feliç" +#: ../../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/text.php:1046 -msgid "alive" -msgstr "viu" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "usuari '%s' esborrat" -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "molest" +#: ../../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/text.php:1048 -msgid "anxious" -msgstr "ansiós" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Troba Canals" -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "malagaitós" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Entra un nom o interes" -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "transtornat" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Conecta/Segueix" -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrat" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemples: Lionel Messi, Futbolista" -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "deprimit" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Perfil Aleatori" -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivat" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Convida Amics" -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "relaxat" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Exemple avançat: nom=pep i pais=eire" -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorprès" +#: ../../include/contact_widgets.php:122 +#, 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ú" -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Dilluns" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mostrar més" -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Dimarts" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s esta ara connectat amb %2$s" -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Dimecres" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s a esperonat %2$s" -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Dijous" +#: ../../include/conversation.php:691 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vista %s del perfil @ %s" -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Divendres" +#: ../../include/conversation.php:710 +msgid "Categories:" +msgstr "Categories:" -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Dissabte" +#: ../../include/conversation.php:711 +msgid "Filed under:" +msgstr "Arxivar a:" -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Diumenge" +#: ../../include/conversation.php:738 +msgid "View in context" +msgstr "Veure en context" -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "Gener" +#: ../../include/conversation.php:847 +msgid "remove" +msgstr "treu" -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "Febrer" +#: ../../include/conversation.php:852 +msgid "Delete Selected Items" +msgstr "Esborra els Articles Seleccionats" -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "Març" +#: ../../include/conversation.php:948 +msgid "View Source" +msgstr "Veure l'Origen" -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "Abril" +#: ../../include/conversation.php:949 +msgid "Follow Thread" +msgstr "Segueix el Fil" -#: ../../include/text.php:1241 -msgid "May" -msgstr "Maig" +#: ../../include/conversation.php:950 +msgid "Unfollow Thread" +msgstr "Fil Abandonat" -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juny" +#: ../../include/conversation.php:955 +msgid "Activity/Posts" +msgstr "Activitat/Entrades" -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juliol" +#: ../../include/conversation.php:957 +msgid "Edit Connection" +msgstr "Modifica la Connexió" -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "Agost" +#: ../../include/conversation.php:958 +msgid "Message" +msgstr "Missatge" -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "Setembre" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s likes this." +msgstr "%s agrada això." -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "Octubre" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s doesn't like this." +msgstr "%s no agrada això." -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "Novembre" +#: ../../include/conversation.php:1079 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d gent agrada això." +msgstr[1] "%2$d gent agrada això." -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "Desembre" +#: ../../include/conversation.php:1081 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d gent no agrada això." +msgstr[1] "%2$d gent no agrada això." -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Adjunt Desconegut" +#: ../../include/conversation.php:1087 +msgid "and" +msgstr "i" -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "desconegut" +#: ../../include/conversation.php:1090 +#, 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/text.php:1360 -msgid "remove category" -msgstr "elimina categoria" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s like this." +msgstr "%s agrada això." -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "elimina del arxiu" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s don't like this." +msgstr "%s no agrada això." -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "per defecte" +#: ../../include/conversation.php:1130 +msgid "Set your location" +msgstr "Ajusta la teva ubicació" -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Format de la pàgina" +#: ../../include/conversation.php:1131 +msgid "Clear browser location" +msgstr "Treu la localització del navegador" -#: ../../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/conversation.php:1177 +msgid "Tag term:" +msgstr "Paraula de l'Etiqueta:" -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Tipus de contingut de la pàgina" +#: ../../include/conversation.php:1178 +msgid "Where are you right now?" +msgstr "On ets ara?" -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Tria un idioma alternatiu" +#: ../../include/conversation.php:1210 +msgid "Page link name" +msgstr "Nom de la pàgina enllaçada" -#: ../../include/text.php:1934 -msgid "activity" -msgstr "activitat" +#: ../../include/conversation.php:1213 +msgid "Post as" +msgstr "Envia com" -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Eines de disseny" +#: ../../include/conversation.php:1223 +msgid "Toggle voting" +msgstr "Commutar votació" -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Pàgines" +#: ../../include/conversation.php:1231 +msgid "Categories (optional, comma-separated list)" +msgstr "Categories (opcional, llista separada per comes)" -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Sortir." +#: ../../include/conversation.php:1254 +msgid "Set publish date" +msgstr "Ajusta la data de publicació" -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Autenticació fallida" +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pot veure el flux i entrades normals" +#: ../../include/conversation.php:1503 +msgid "Discover" +msgstr "Descobrir" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Pot veure les meves pàgines web" +#: ../../include/conversation.php:1506 +msgid "Imported public streams" +msgstr "Importar fluxos públics" -#: ../../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/conversation.php:1511 +msgid "Commented Order" +msgstr "Ordenar per Comentaris" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Pot dir si agrada/desagrada " +#: ../../include/conversation.php:1514 +msgid "Sort by Comment Date" +msgstr "Ordenar per Data del Comentari" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Perfils i altres coses a més d'entrades/comentaris" +#: ../../include/conversation.php:1518 +msgid "Posted Order" +msgstr "Ordenar per Entrades" -#: ../../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/conversation.php:1521 +msgid "Sort by Post Date" +msgstr "Ordenar per Data d' Entrada" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avançat - capaç de crear canals de grups de foro" +#: ../../include/conversation.php:1529 +msgid "Posts that mention or involve you" +msgstr "Entrades que et mencionen o involucren" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Pot xatejar amb mi (si estic disponible)" +#: ../../include/conversation.php:1538 +msgid "Activity Stream - by date" +msgstr "Activitat del Flux - per data" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Pot escriure al meu magatzem d'arxius i fotos" +#: ../../include/conversation.php:1544 +msgid "Starred" +msgstr "Preferit" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Pot editar les meves pàgines web" +#: ../../include/conversation.php:1547 +msgid "Favourite Posts" +msgstr "Entrades Favorites" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Quelcom avançat - molt útil en comunitats obertes" +#: ../../include/conversation.php:1554 +msgid "Spam" +msgstr "Spam" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Pot administrar els meus recursos del canal" +#: ../../include/conversation.php:1557 +msgid "Posts flagged as SPAM" +msgstr "Entrades marcades com a SPAM" -#: ../../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/conversation.php:1614 +msgid "Status Messages and Posts" +msgstr "Estat dels Missatges i Entrades" -#: ../../include/features.php:48 -msgid "General Features" -msgstr "Característiques Generals" +#: ../../include/conversation.php:1623 +msgid "About" +msgstr "El Meu Perfil" -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Expiració del Contingut" +#: ../../include/conversation.php:1626 +msgid "Profile Details" +msgstr "Detalls del Perfil" -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "eliminarà entrades/comentaris i/o missatges privats en un període determinat de temps." +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Albums de Fotos" -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Multiples Perfils" +#: ../../include/conversation.php:1642 +msgid "Files and Storage" +msgstr "Arxius i Emmagatzegament" -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Capacitat per crear multiples perfils" +#: ../../include/conversation.php:1678 +msgid "Saved Bookmarks" +msgstr "Marcadors Guardats" -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Perfils Avançats" +#: ../../include/conversation.php:1688 +msgid "Manage Webpages" +msgstr "Gestió de Pàgines Web" -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Seccions i seleccions addicionals de perfils " +#: ../../include/conversation.php:1747 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Assistint" +msgstr[1] "Assistint" -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Importar/Exportar Perfil" +#: ../../include/conversation.php:1750 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Desassistint" +msgstr[1] "Desassistint" -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Guarda i carrega els detalls del perfil al llarg dels llocs/canals" +#: ../../include/conversation.php:1753 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indecís" +msgstr[1] "Indecisos" -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Pàgines Web" +#: ../../include/conversation.php:1756 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Acord" +msgstr[1] "Acords" -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Proporcionar pàgines web gestionades al seu canal" +#: ../../include/conversation.php:1759 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Desacord" +msgstr[1] "Desacords" -#: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "" +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Abstenirse" +msgstr[1] "Abstenirse" -#: ../../include/features.php:56 -msgid "Hide Rating" -msgstr "Amaga la Valoració" +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Freqüentment" -#: ../../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/selectors.php:31 +msgid "Hourly" +msgstr "Horariament" -#: ../../include/features.php:57 -msgid "Private Notes" -msgstr "Notes Privades" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Dos vegades al dia" -#: ../../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/selectors.php:33 +msgid "Daily" +msgstr "Diariament" -#: ../../include/features.php:58 -msgid "Navigation Channel Select" -msgstr "Navegació pel Selector de Canals" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Setmanalment" -#: ../../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/selectors.php:35 +msgid "Monthly" +msgstr "Mensualment" -#: ../../include/features.php:59 -msgid "Photo Location" -msgstr "Ubicació de la Foto" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Actualment Masculí" -#: ../../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/selectors.php:49 +msgid "Currently Female" +msgstr "Actualment Femení" -#: ../../include/features.php:60 -msgid "Access Controlled Chatrooms" -msgstr "Accés Controlat a les Sales de Xat" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Més aviat Masculí" -#: ../../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/selectors.php:49 +msgid "Mostly Female" +msgstr "Més Aviat Femení" -#: ../../include/features.php:61 -msgid "Smart Birthdays" -msgstr "Aniversaris Intel·ligents" +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Canvi de Sexe" -#: ../../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/selectors.php:49 +msgid "Intersex" +msgstr "Intersexual" -#: ../../include/features.php:62 -msgid "Expert Mode" -msgstr "Manera Experta" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transsexual" -#: ../../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/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermafrodita" -#: ../../include/features.php:63 -msgid "Premium Channel" -msgstr "Privilegis del Canal" +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Neutre" -#: ../../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/selectors.php:49 +msgid "Non-specific" +msgstr "Indefinit" -#: ../../include/features.php:68 -msgid "Post Composition Features" -msgstr "Característiques de Composició d'Entrades" +#: ../../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/features.php:71 -msgid "Large Photos" -msgstr "Grans Fotos" +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Indecís" -#: ../../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/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Homes" -#: ../../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/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Dones" -#: ../../include/features.php:73 -msgid "Even More Encryption" -msgstr "Encara Més Encriptació" +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Gay" -#: ../../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/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbianes" -#: ../../include/features.php:74 -msgid "Enable Voting Tools" -msgstr "Habilitar Eines de Votació" +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Sense Preferències" -#: ../../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/selectors.php:85 +msgid "Bisexual" +msgstr "Bisexual" -#: ../../include/features.php:75 -msgid "Delayed Posting" -msgstr "Retarda Publicació" +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosexual" -#: ../../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/selectors.php:85 +msgid "Abstinent" +msgstr "Abstinent" -#: ../../include/features.php:76 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Suprimeix Duplicats de Publicacions/Comentaris" +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Verge" -#: ../../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/selectors.php:85 +msgid "Deviant" +msgstr "Desviat" -#: ../../include/features.php:82 -msgid "Network and Stream Filtering" -msgstr "Filtrat de Xarxa i Flux" +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetixiste" -#: ../../include/features.php:83 -msgid "Search by Date" -msgstr "Cerca per Data" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Orgies" -#: ../../include/features.php:83 -msgid "Ability to select posts by date ranges" -msgstr "Capacitat per seleccionar entrades per rang de dates" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Asexual" -#: ../../include/features.php:84 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Grup Privat" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Solter" -#: ../../include/features.php:84 -msgid "Enable management and selection of privacy groups" -msgstr "Habilita gestió i selecció de grups privats" +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Solitari" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Cerques Guardades" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Disponible" -#: ../../include/features.php:85 -msgid "Save search terms for re-use" -msgstr "Guardar els termin de la cerca per a re-usar" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "No Disponible" -#: ../../include/features.php:86 -msgid "Network Personal Tab" -msgstr "Pestanya Personal de Xarxa" +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Aplastat" -#: ../../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/selectors.php:123 +msgid "Infatuated" +msgstr "Encapritxat" -#: ../../include/features.php:87 -msgid "Network New Tab" -msgstr "Pestanya Nou a la Xarxa" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Promés" -#: ../../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/selectors.php:123 +msgid "Unfaithful" +msgstr "Infidel" -#: ../../include/features.php:88 -msgid "Affinity Tool" -msgstr "Eina d'Afinitat" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Adicte al Sexe" -#: ../../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/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Amics amb Beneficis" -#: ../../include/features.php:89 -msgid "Connection Filtering" -msgstr "Filtre de Connexió" +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Casual" -#: ../../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/selectors.php:123 +msgid "Engaged" +msgstr "Ocupat" -#: ../../include/features.php:90 -msgid "Show channel suggestions" -msgstr "Mostra suggerencies de canals" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Casat" -#: ../../include/features.php:95 -msgid "Post/Comment Tools" -msgstr "Eina d'Entrades/Comentaris" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Casat Imaginàriament" -#: ../../include/features.php:96 -msgid "Community Tagging" -msgstr "Etiquetat per la Comunitat" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Parella" -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" -msgstr "Capacitat d'etiquetar entrades existents" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Cohabitant" -#: ../../include/features.php:97 -msgid "Post Categories" -msgstr "Categories d'Entrades" +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Tradició" -#: ../../include/features.php:97 -msgid "Add categories to your posts" -msgstr "Afegeix categoria a la teva entrada" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Feliç" -#: ../../include/features.php:98 -msgid "Emoji Reactions" -msgstr "Reaccions dels Emoji" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "No Cerco" -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Afegeix un emoji habilitat per reaccionar a entrades" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Llibertí" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Carpetes Guardades" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Traït" -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" -msgstr "Capacitat de arxivar entrades en les carpetes" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Separat" -#: ../../include/features.php:100 -msgid "Dislike Posts" -msgstr "No Agrada l'Entrada" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Inestable" -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" -msgstr "Capacitat per marcar amb \"No Agrada\" les entrades/comentaris" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Divorciat" -#: ../../include/features.php:101 -msgid "Star Posts" -msgstr "Entrades Excel·lents" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Divorciat Imaginàriament" -#: ../../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/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Vidu/ua" -#: ../../include/features.php:102 -msgid "Tag Cloud" -msgstr "Núvol d'Etiquetes." +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Incert" -#: ../../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/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Es Complicat" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un grup esborrat amb aquest nom fou reviscolat. Els permisos dels items existents poden 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/selectors.php:123 +msgid "Don't care" +msgstr "No Et Fa Res" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Afegir noves connexions a aquest grup privat" +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Pregunta" -#: ../../include/group.php:289 -msgid "edit" -msgstr "edita" +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Visible per a la teva audiència " -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Editar grup" +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Només jo" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Afegir grup privat" +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Públic" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Sense canals en grups privats" +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Ningú a la xarxa $Projectname" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "afegeix" +#: ../../include/PermissionDescription.php:118 +#, php-format +msgid "Any account on %s" +msgstr "Qualsevol compte a %s" -#: ../../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/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Qualsevol de les meves connexions" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Inicia:" +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Només les connexions que permeto específicament" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Acaba:" +#: ../../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/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Aquest succés ha estat afegit al teu calendari." +#: ../../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/event.php:1014 -msgid "Not specified" -msgstr "Sense especificar" +#: ../../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/event.php:1015 -msgid "Needs Action" -msgstr "Necessita una Acció" +#: ../../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/event.php:1016 -msgid "Completed" -msgstr "Completat" +#: ../../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/event.php:1017 -msgid "In Process" -msgstr "En Procès" +#: ../../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/event.php:1018 -msgid "Cancelled" -msgstr "Cancel·lat" +#: ../../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/account.php:28 msgid "Not a valid email address" @@ -8880,12 +8411,17 @@ msgstr "Ha fallat guardar la informació del compte" #: ../../include/account.php:249 #, php-format msgid "Registration confirmation for %s" -msgstr "Inscripció confirmada per %s" +msgstr "Registre confirmat per %s" #: ../../include/account.php:315 #, php-format msgid "Registration request at %s" -msgstr "Sol·licitud d'inscripció a %s" +msgstr "Sol·licitud de registre a %s" + +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "Administrador" #: ../../include/account.php:339 msgid "your registration password" @@ -8894,7 +8430,7 @@ msgstr "la teva contrasenya registrada" #: ../../include/account.php:342 ../../include/account.php:402 #, php-format msgid "Registration details for %s" -msgstr "Detalls de l'inscripció per %s" +msgstr "Detalls del registre per %s" #: ../../include/account.php:414 msgid "Account approved." @@ -8903,486 +8439,699 @@ msgstr "Compte aprovat." #: ../../include/account.php:454 #, php-format msgid "Registration revoked for %s" -msgstr "Inscripció revocada per %s" +msgstr "Registre revocat per %s" + +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Compte verificat. Si us plau, inicia sessió." -#: ../../include/account.php:739 ../../include/account.php:741 +#: ../../include/account.php:723 ../../include/account.php:725 msgid "Click here to upgrade." msgstr "Feu clic aquí per actualitzar." -#: ../../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/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/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/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/attach.php:247 ../../include/attach.php:333 msgid "Item was not found." msgstr "Article no trobat." -#: ../../include/attach.php:499 +#: ../../include/attach.php:497 msgid "No source file." msgstr "No hi ha arxiu d'origen." -#: ../../include/attach.php:521 +#: ../../include/attach.php:519 msgid "Cannot locate file to replace" msgstr "No trobo l'arxiu a reemplaçar" -#: ../../include/attach.php:539 +#: ../../include/attach.php:537 msgid "Cannot locate file to revise/update" msgstr "No trobo l'arxiu a revisar/actualitzar" -#: ../../include/attach.php:674 +#: ../../include/attach.php:672 #, php-format msgid "File exceeds size limit of %d" msgstr "L'arxiu excedeix la mida limit de %d" -#: ../../include/attach.php:688 +#: ../../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/attach.php:846 +#: ../../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/attach.php:859 +#: ../../include/attach.php:855 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 +#: ../../include/attach.php:909 ../../include/attach.php:925 msgid "Path not available." msgstr "Trajectòria no disponible" -#: ../../include/attach.php:977 ../../include/attach.php:1129 +#: ../../include/attach.php:971 ../../include/attach.php:1123 msgid "Empty pathname" msgstr "Trajèctoria vuida." -#: ../../include/attach.php:1003 +#: ../../include/attach.php:997 msgid "duplicate filename or path" msgstr "Nom o trajectòria duplicat" -#: ../../include/attach.php:1025 +#: ../../include/attach.php:1019 msgid "Path not found." msgstr "Trajectòria no trobada." -#: ../../include/attach.php:1083 +#: ../../include/attach.php:1077 msgid "mkdir failed." msgstr "mkdir va fracassar." -#: ../../include/attach.php:1087 +#: ../../include/attach.php:1081 msgid "database storage failed." msgstr "Arxiu de base de dades va fallar." -#: ../../include/attach.php:1135 +#: ../../include/attach.php:1129 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/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/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contingut encriptat" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Nom buit" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Instal·la l'element %s:" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Nom massa llarg" -#: ../../include/bbcode.php:182 -#, php-format +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Sense identificador de compte" + +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Alies/malnom es requerit." + +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Àlies reservat. Tria un altre." + +#: ../../include/channel.php:211 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." +"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/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/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "No es pot recuperar la identitat creada" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Clic per obrir/tancar" +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Perfil per Defecte" -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "xafa guitarres" +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "El canal demanat no està disponible." -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Diferents observadors veuran aquest text de diferents formes" +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Crear un Perfil Nou" -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 va escriure:" +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Visible per tothom" -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Desconegut)" +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Gènere:" -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visible per tothom a la Internet" +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Estatus:" -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visible només per tú." +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Pàgina Personal:" -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visible per tothom en aquesta xarxa." +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Ara en Linia" -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visible per tothom autenticat." +#: ../../include/channel.php:1147 +msgid "Like this channel" +msgstr "M'agrada aquest canal" + +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "j F" -#: ../../include/items.php:1149 +#: ../../include/channel.php:1179 +msgid "Birthday:" +msgstr "Aniversari:" + +#: ../../include/channel.php:1192 #, php-format -msgid "Visible to anybody on %s." -msgstr "Visible per a tothom a %s." +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Preferència Sexual:" + +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Etiquetes:" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Idees Polítiques:" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religió:" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Aficions/Interessos:" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Agrada:" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "Desagrada:" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Informació de contacte i Xarxes Socials:" + +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "Els meus altres canals:" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "Interessos Musicals:" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "Llibres, literatura:" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "Televisió:" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "Películes/Dança/Cultura/Entreteniment:" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "Amor/Romace:" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "Treball/feina:" + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "Escola/educació:" + +#: ../../include/channel.php:1251 +msgid "Like this thing" +msgstr "M'agrada això" + +#: ../../include/features.php:48 +msgid "General Features" +msgstr "Característiques Generals" + +#: ../../include/features.php:50 +msgid "Content Expiration" +msgstr "Expiració del Contingut" + +#: ../../include/features.php:50 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "eliminarà entrades/comentaris i/o missatges privats en un període determinat de temps." + +#: ../../include/features.php:51 +msgid "Multiple Profiles" +msgstr "Multiples Perfils" + +#: ../../include/features.php:51 +msgid "Ability to create multiple profiles" +msgstr "Capacitat per crear multiples perfils" + +#: ../../include/features.php:52 +msgid "Advanced Profiles" +msgstr "Perfils Avançats" + +#: ../../include/features.php:52 +msgid "Additional profile sections and selections" +msgstr "Seccions i seleccions addicionals de perfils " + +#: ../../include/features.php:53 +msgid "Profile Import/Export" +msgstr "Importar/Exportar Perfil" + +#: ../../include/features.php:53 +msgid "Save and load profile details across sites/channels" +msgstr "Guarda i carrega els detalls del perfil al llarg dels llocs/canals" + +#: ../../include/features.php:54 +msgid "Web Pages" +msgstr "Pàgines Web" + +#: ../../include/features.php:54 +msgid "Provide managed web pages on your channel" +msgstr "Proporcionar pàgines web gestionades al seu canal" + +#: ../../include/features.php:55 +msgid "Hide Rating" +msgstr "Amaga la Valoració" + +#: ../../include/features.php:55 +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 +msgid "Private Notes" +msgstr "Notes Privades" + +#: ../../include/features.php:56 +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 +msgid "Navigation Channel Select" +msgstr "Navegació pel Selector de Canals" + +#: ../../include/features.php:57 +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 +msgid "Photo Location" +msgstr "Ubicació de la Foto" + +#: ../../include/features.php:58 +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 +msgid "Access Controlled Chatrooms" +msgstr "Accés Controlat a les Sales de Xat" + +#: ../../include/features.php:59 +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 +msgid "Smart Birthdays" +msgstr "Aniversaris Intel·ligents" + +#: ../../include/features.php:60 +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 +msgid "Expert Mode" +msgstr "Manera Experta" + +#: ../../include/features.php:61 +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 +msgid "Premium Channel" +msgstr "Privilegis del Canal" + +#: ../../include/features.php:62 +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/items.php:1151 -msgid "Visible to all connections." -msgstr "Visible per a totes les connexions." +#: ../../include/features.php:67 +msgid "Post Composition Features" +msgstr "Característiques de Composició d'Entrades" -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visible per a les connexions aprovades." +#: ../../include/features.php:70 +msgid "Large Photos" +msgstr "Grans Fotos" -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visible per a específiques connexions." +#: ../../include/features.php:70 +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/items.php:3918 -msgid "Privacy group is empty." -msgstr "El grup privat està vuit." +#: ../../include/features.php:71 +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/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Grup privat: %s" +#: ../../include/features.php:72 +msgid "Even More Encryption" +msgstr "Encara Més Encriptació" -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Connexió no trobada." +#: ../../include/features.php:72 +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/items.php:4290 -msgid "profile photo" -msgstr "foto del perfil" +#: ../../include/features.php:73 +msgid "Enable Voting Tools" +msgstr "Habilitar Eines de Votació" -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Contingut embegut" +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" +msgstr "Proporcionar una classe d'entrada que altres puguin votar" -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Incorporació desactivada" +#: ../../include/features.php:74 +msgid "Delayed Posting" +msgstr "Retarda Publicació" -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" +#: ../../include/features.php:74 +msgid "Allow posts to be published at a later date" +msgstr "Permet que les publicacions es publiquin en data posterior" -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nova App" +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Suprimeix Duplicats de Publicacions/Comentaris" -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Suggerencies" +#: ../../include/features.php:75 +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/widgets.php:155 -msgid "See more..." -msgstr "Veure més....." +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" +msgstr "Filtrat de Xarxa i Flux" -#: ../../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/features.php:82 +msgid "Search by Date" +msgstr "Cerca per Data" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Afegeix una Nova Connexió" +#: ../../include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Capacitat per seleccionar entrades per rang de dates" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Introdueix l'adreça del canal" +#: ../../include/features.php:83 ../../include/group.php:311 +msgid "Privacy Groups" +msgstr "Grup Privat" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Exemples: bob@example.com, https://exemple.com/barbara" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" +msgstr "Habilita gestió i selecció de grups privats" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notes" +#: ../../include/features.php:84 +msgid "Save search terms for re-use" +msgstr "Guardar els termin de la cerca per a re-usar" -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Plaç de remoció" +#: ../../include/features.php:85 +msgid "Network Personal Tab" +msgstr "Pestanya Personal de Xarxa" -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tot" +#: ../../include/features.php:85 +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/widgets.php:354 -msgid "Archives" -msgstr "Arxius" +#: ../../include/features.php:86 +msgid "Network New Tab" +msgstr "Pestanya Nou a la Xarxa" -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Refresc" +#: ../../include/features.php:86 +msgid "Enable tab to display all new Network activity" +msgstr "Activa pestanya per mostrar tota l'activitat nova de la Xarxa" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Ajustos de Compte" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Eina d'Afinitat" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Ajustos de Canal" +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtre d'activitat del flux per importància de la relació" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Característiques addicionals" +#: ../../include/features.php:88 +msgid "Connection Filtering" +msgstr "Filtre de Connexió" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Ajustos de Complements" +#: ../../include/features.php:88 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtre de missatges d'entrada de conexions, basat en paraules clau/contingut " -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Ajustos de pantalla" +#: ../../include/features.php:89 +msgid "Show channel suggestions" +msgstr "Mostra suggerencies de canals" -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestiona ubicacions" +#: ../../include/features.php:94 +msgid "Post/Comment Tools" +msgstr "Eina d'Entrades/Comentaris" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exportat canal" +#: ../../include/features.php:95 +msgid "Community Tagging" +msgstr "Etiquetat per la Comunitat" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Apps connectades" +#: ../../include/features.php:95 +msgid "Ability to tag existing posts" +msgstr "Capacitat d'etiquetar entrades existents" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Ajustos Premium de Canal" +#: ../../include/features.php:96 +msgid "Post Categories" +msgstr "Categories d'Entrades" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menú de Correu Privat" +#: ../../include/features.php:96 +msgid "Add categories to your posts" +msgstr "Afegeix categoria a la teva entrada" -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vista Combinada" +#: ../../include/features.php:97 +msgid "Emoji Reactions" +msgstr "" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversacions" +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "" -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Missatges Rebuts" +#: ../../include/features.php:98 +msgid "Ability to file posts under folders" +msgstr "Capacitat de arxivar entrades en les carpetes" -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Missatges Enviats" +#: ../../include/features.php:99 +msgid "Dislike Posts" +msgstr "No Agrada l'Entrada" -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Sense missatges." +#: ../../include/features.php:99 +msgid "Ability to dislike posts/comments" +msgstr "Capacitat per marcar amb \"No Agrada\" les entrades/comentaris" -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Conversació esborrada" +#: ../../include/features.php:100 +msgid "Star Posts" +msgstr "Entrades Excel·lents" -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Eina d'Esdeveniments" +#: ../../include/features.php:100 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacitat per marcar entrades especials amb l'indicador d'excel·lencia" -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exportar Calendari" +#: ../../include/features.php:101 +msgid "Tag Cloud" +msgstr "Núvol d'Etiquetes." -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importar Calendari" +#: ../../include/features.php:101 +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/widgets.php:840 -msgid "Overview" -msgstr "Visió General" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Contingut embegut" -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Membres de la Sala de Xat" +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Incorporació desactivada" -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Llista de Wikis" +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "Qui pot veure això?" -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Pàgines de Wikis" +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "Selecció a mida" -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Sales de Xat Favorites" +#: ../../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/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Sales de Xat Suggerides" +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "Mostra" -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/imatge" +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "No mostrar" -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Fes clic per veure més" +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Altres xarxes i serveis de correu" -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Eines de Valoració" +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida.
Aquest ajust dels permisos indica qui pot veure l'entrada." -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Valora'm" +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Sortir." -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Veure Valoracions" +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Autenticació fallida" -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Forums" +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Aniversari" -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Tasques" +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Edat:" -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Documentació" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD o MM-DD" -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Informació del Projecte/Lloc" +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "mai" -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Per Membres" +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "fa menys d'un segon" -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Per Administradors" +#: ../../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/widgets.php:1453 -msgid "For Developers" -msgstr "Per Desenvolupadors" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "any" +msgstr[1] "anys" -#: ../../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/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mes" +msgstr[1] "mesos " -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Revisa cua" +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "setmana" +msgstr[1] "setmanes" -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Actualitzacions de Base de Dades" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dia" +msgstr[1] "dies" -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Característiques del Plugin" +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "hores" -#: ../../include/activities.php:41 -msgid " and " -msgstr "i" +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minut" +msgstr[1] "minuts" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "Perfil públic" +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "segon" +msgstr[1] "segons" -#: ../../include/activities.php:58 +#: ../../include/datetime.php:562 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s canviat %2$s a “%3$s”" +msgid "%1$s's birthday" +msgstr "Aniversari de %1$s" -#: ../../include/activities.php:59 +#: ../../include/datetime.php:563 #, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visita %1$s en %2$s" +msgid "Happy Birthday %1$s" +msgstr "Feliç Aniversari %1$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/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un grup esborrat amb aquest nom fou reviscolat. Els permisos dels items existents poden 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/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Adjuntat:" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Afegir noves connexions a aquest grup privat" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificació d'esdeveniment de $Projectname" +#: ../../include/group.php:289 +msgid "edit" +msgstr "edita" + +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Editar grup" + +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Afegir grup privat" + +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Sense canals en grups privats" #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Esborrar aquest item?" #: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "" +msgid "[-] show less" +msgstr "[-] mostra menys" #: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "" +msgid "[+] expand" +msgstr "[+] expandeix" #: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "" +msgid "[-] collapse" +msgstr "[-] colapsa" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9612,222 +9361,277 @@ msgctxt "calendar" msgid "All day" msgstr "Tot el dia" -#: ../../include/contact_widgets.php:11 +#: ../../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 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitació disponible" -msgstr[1] "%d invitacions disponibles" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "La imatge excedeix la mida limit pel lloc web en %lu bytes" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Troba Canals" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "El fitxer d'imatge esta buit." -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Entra un nom o interes" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "Fracassà l'emmagatzematge de la Foto" + +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "Una foto nova" + +#: ../../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/photos.php:506 +msgid "Upload New Photos" +msgstr "Puja Noves Fotos" + +#: ../../include/zot.php:699 +msgid "Invalid data packet" +msgstr "paquet de dades invàlid" + +#: ../../include/zot.php:715 +msgid "Unable to verify channel signature" +msgstr "No es pot verificar la signatura del canal" + +#: ../../include/zot.php:2363 +#, 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/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Conecta/Segueix" +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Pot veure les meves connexions" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Lionel Messi, Futbolista" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Pot veure al meu magatzem d'arxius i fotos" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Perfil Aleatori" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Pot veure les meves pàgines web" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Convida Amics" +#: ../../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/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Exemple avançat: nom=pep i pais=eire" +#: ../../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/contact_widgets.php:122 -#, 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ú" +#: ../../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/contact_widgets.php:127 -msgid "show more" -msgstr "mostrar més" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Pot enviar-me un missatge de correu privat" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opcions de Directori" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Pot dir si agrada/desagrada " -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Manera Segura" +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Perfils i altres coses a més d'entrades/comentaris" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Només Fòrums Públics" +#: ../../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/dir_fns.php:145 -msgid "This Website Only" -msgstr "Només Aquest Lloc Web" +#: ../../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:20 -msgid "No recipient provided." -msgstr "No s'ha proporcionat bústia." +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Pot xatejar amb mi (si estic disponible)" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[no subject]" +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Pot escriure al meu magatzem d'arxius i fotos" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "incapaç de determinar el remitent" +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Pot editar les meves pàgines web" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "L'entrada guardada no pot ser verificada" +#: ../../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:269 -msgid "Who can see this?" -msgstr "Qui pot veure això?" +#: ../../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:270 -msgid "Custom selection" -msgstr "Selecció a mida" +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Pot administrar els meus recursos del canal" -#: ../../include/acl_selectors.php:271 +#: ../../include/permissions.php:46 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\"." +"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/acl_selectors.php:272 -msgid "Show" -msgstr "Mostra" +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Xarxes Socials" -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "No mostrar" +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Social - Principalment Públic" -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Altres xarxes i serveis de correu" +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Social - Restingit" -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida.
Aquest ajust dels permisos indica qui pot veure l'entrada." +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Social - Privat" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Aniversari" +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Foro de Comunitat" -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Edat:" +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Fòrum - Principalment Públic" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD o MM-DD" +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Fòrum - Restringit" -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "mai" +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Fòrum - Privat" -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "fa menys d'un segon" +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Republicador" -#: ../../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:879 +msgid "Feed - Mostly Public" +msgstr "Realimentador - Públic Principalment" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "any" -msgstr[1] "anys" +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Retroalimentador - Restringit" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "mesos " +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Objectiu Especial" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "setmana" -msgstr[1] "setmanes" +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Espacial - Celebritat/Plataforma" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dia" -msgstr[1] "dies" +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Especial - Repositori d'un Grup" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "hores" +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Personalitzat/Manera Experta" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minut" -msgstr[1] "minuts" +#: ../../include/activities.php:41 +msgid " and " +msgstr "i" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "segon" -msgstr[1] "segons" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "Perfil públic" -#: ../../include/datetime.php:562 +#: ../../include/activities.php:58 #, php-format -msgid "%1$s's birthday" -msgstr "Aniversari de %1$s" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s canviat %2$s a “%3$s”" -#: ../../include/datetime.php:563 +#: ../../include/activities.php:59 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliç Aniversari %1$s" - -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Línia de Temps Pública" - -#: ../../include/zot.php:697 -msgid "Invalid data packet" -msgstr "paquet de dades invàlid" - -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" -msgstr "No es pot verificar la signatura del canal" +msgid "Visit %1$s's %2$s" +msgstr "Visita %1$s en %2$s" -#: ../../include/zot.php:2326 +#: ../../include/activities.php:62 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "No es pot verificar la signatura del lloc per %s" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s Ha actualitzat %2$s, canviant %3$s." -#: ../../include/zot.php:3703 -msgid "invalid target signature" -msgstr "Signatura objectiu invàlida" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Adjuntat:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificació d'esdeveniment de $Projectname" #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" @@ -9965,66 +9769,62 @@ 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: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 "L'actualització %s ha fallat. Mira el registre d'errors." -#: ../../boot.php:1484 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "Error d'Actualització a %s" -#: ../../boot.php:1685 +#: ../../boot.php:1684 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:1708 +#: ../../boot.php:1707 msgid "Remember me" msgstr "Recorda'm" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "Has perdut la Contrasenya?" -#: ../../boot.php:2277 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "canvia a format per a mòbils" -#: ../../boot.php:2432 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "El certificat SSL és invalid, soluciona-ho, si us plau." -#: ../../boot.php:2435 +#: ../../boot.php:2428 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Error de SSL per la web %s" -#: ../../boot.php:2478 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "No s'estan executant les tasques programades al cron." -#: ../../boot.php:2482 +#: ../../boot.php:2473 #, 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 d876aea80..7470f8c84 100644 --- a/view/ca/hstrings.php +++ b/view/ca/hstrings.php @@ -4,40 +4,8 @@ if(! function_exists("string_plural_select_ca")) { function string_plural_select_ca($n){ return ($n != 1);; }} -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["parent"] = "pare"; App::$strings["Collection"] = "Col·lecció"; App::$strings["Principal"] = "Principal"; App::$strings["Addressbook"] = "Llista d'Adreçes"; @@ -69,8 +37,63 @@ 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ó."; @@ -135,7 +158,6 @@ 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"; @@ -144,30 +166,6 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alguns permisos poden ser heretats dels teus canals ajustos de privacitat, Els quals tenen més prioritat que els ajustos individuals. Pots 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", @@ -198,74 +196,13 @@ 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["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."] = "Element no trobat."; App::$strings["Item not found"] = "No s'ha trobat l'element"; -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["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["Blocked"] = "Bloquejades"; App::$strings["Ignored"] = "Ignorades"; App::$strings["Hidden"] = "Amagades"; @@ -317,38 +254,51 @@ 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["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["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["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["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["Save to Folder:"] = "Guardar en la Carpeta"; +App::$strings["- select -"] = "- selecciona -"; +App::$strings["Save"] = "Guardar"; 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"; @@ -360,14 +310,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."; @@ -381,33 +331,16 @@ 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["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["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["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"; @@ -419,100 +352,8 @@ 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["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 login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Entra amb la teva identitat \$Projectname o registra't a \$Projectname 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["Apps"] = "Aplicatius"; +App::$strings["Item not available."] = "Article no disponible."; 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"; @@ -533,8 +374,6 @@ 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."; @@ -543,76 +382,60 @@ 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["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["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 login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Entra amb la teva identitat \$Projectname o registra't a \$Projectname 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["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ó."; @@ -635,12 +458,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. 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"; @@ -681,30 +507,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["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ú"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nom únic (no visible a la pàgina web) - requerit"; -App::$strings["Menu Title"] = "Títol del menú"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visible a la pàgina web - deixar buit per a no posar títol"; -App::$strings["Allow Bookmarks"] = "Permetre Marcadors"; -App::$strings["Menu may be used to store saved bookmarks"] = "El menú es pot emprar per a guardar marcadors"; -App::$strings["Submit and proceed"] = "Envia i procedeix"; -App::$strings["Menus"] = "Menús"; -App::$strings["Bookmarks allowed"] = "Marcadors permesos"; -App::$strings["Delete this menu"] = "Esborra el menú"; -App::$strings["Edit menu contents"] = "Edita el contingut del menú"; -App::$strings["Edit this menu"] = "Edita el menú"; -App::$strings["Menu could not be deleted."] = "El menu no es pot esborrar."; -App::$strings["Menu not found."] = "Menú no trobat."; -App::$strings["Edit Menu"] = "Edita Menú"; -App::$strings["Add or remove entries to this menu"] = "Afegeix o esborra entrades a aquest menú"; -App::$strings["Menu name"] = "Nom del Menú"; -App::$strings["Must be unique, only seen by you"] = "Ha de ser únic, nomes vist per tú"; -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)"; @@ -721,9 +523,37 @@ 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ú"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nom únic (no visible a la pàgina web) - requerit"; +App::$strings["Menu Title"] = "Títol del menú"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visible a la pàgina web - deixar buit per a no posar títol"; +App::$strings["Allow Bookmarks"] = "Permetre Marcadors"; +App::$strings["Menu may be used to store saved bookmarks"] = "El menú es pot emprar per a guardar marcadors"; +App::$strings["Submit and proceed"] = "Envia i procedeix"; +App::$strings["Menus"] = "Menús"; +App::$strings["Bookmarks allowed"] = "Marcadors permesos"; +App::$strings["Delete this menu"] = "Esborra el menú"; +App::$strings["Edit menu contents"] = "Edita el contingut del menú"; +App::$strings["Edit this menu"] = "Edita el menú"; +App::$strings["Menu could not be deleted."] = "El menu no es pot esborrar."; +App::$strings["Menu not found."] = "Menú no trobat."; +App::$strings["Edit Menu"] = "Edita Menú"; +App::$strings["Add or remove entries to this menu"] = "Afegeix o esborra entrades a aquest menú"; +App::$strings["Menu name"] = "Nom del Menú"; +App::$strings["Must be unique, only seen by you"] = "Ha de ser únic, nomes vist per tú"; +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["__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"; @@ -733,13 +563,6 @@ 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ú."; @@ -769,6 +592,203 @@ 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 import an existing channel from another location."] = "o importa un canal existent 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 may 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, proveu 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"; @@ -782,7 +802,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 d'inscripció"; +App::$strings["Pending registrations"] = "Comptes pendents de registre"; App::$strings["Registered channels"] = "Canals registrats"; App::$strings["Active plugins"] = "Plugins actius"; App::$strings["Version"] = "Versió"; @@ -799,7 +819,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"] = "Inscripcions"; +App::$strings["Registration"] = "Registre"; App::$strings["File upload"] = "Pujar arxiu"; App::$strings["Policies"] = "Polítiques"; App::$strings["Advanced"] = "Avançat"; @@ -816,12 +836,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 l'inscripció de nous membres?"; +App::$strings["Does this site allow new member registration?"] = "Permet aquest lloc registre 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 inscriure nous 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 registre de nos 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 d'inscripció"; -App::$strings["Will be displayed prominently on the registration page."] = "Es mostrarà preminentment a la pàgina d'inscripció"; +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["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"; @@ -918,12 +938,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"] = "Inscripcions esperant confirmació"; +App::$strings["Registrations waiting for confirm"] = ""; 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 d'inscripció"; +App::$strings["Register date"] = "Data de registre"; App::$strings["Last login"] = "Darrera identificació"; App::$strings["Expires"] = "Expira"; App::$strings["Service Class"] = "Classe de Servei"; @@ -992,7 +1012,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."] = "Ha de ser escribible pel servidor web. Relatiu al directori de nivell superior del servidor web"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; App::$strings["Log level"] = "Nivell de registre"; App::$strings["New Profile Field"] = "Camp de Perfil Nou"; App::$strings["Field nickname"] = "Àlies de Camp"; @@ -1011,105 +1031,33 @@ 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["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 import an existing channel from another location."] = "o importa un canal existent 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 hubzilla.org to learn more about \$Projectname."] = "Visita hubzilla.org 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 may 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, proveu 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["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["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 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["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["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."] = "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["Register at another affiliated hub."] = "Inscripció en altre node afiliat"; -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["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["Register at another affiliated hub."] = "Registre en altre node afiliat"; +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["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"; @@ -1120,8 +1068,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"] = "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["Register"] = "Registre"; +App::$strings["Proceed to create your first channel"] = "Comença a crear el teu primer canal"; 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"; @@ -1138,23 +1086,17 @@ 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["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 %2\$s"] = "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Aquests arxius de contingut poden ser importats o restaurats per visitar %2\$s 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["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["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."; @@ -1187,12 +1129,6 @@ 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 dropbox 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"; @@ -1290,7 +1226,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"] = "Inscripcions del Sistema"; +App::$strings["System Registrations"] = "Registres 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"; @@ -1355,6 +1291,7 @@ 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."; @@ -1365,6 +1302,7 @@ 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ó."; @@ -1376,7 +1314,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["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["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["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!"; @@ -1384,7 +1322,6 @@ 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»"; @@ -1396,20 +1333,19 @@ 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["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["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 hubzilla.org to learn more about \$Projectname."] = "Visita hubzilla.org 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["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."; @@ -1437,38 +1373,60 @@ 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["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["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 %2\$s"] = "Per seleccionar tots els missatges per a un any determinat, com aquest any, visiteu %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per seleccionar tots els missatges per a un mes determinat, com el de gener d'aquest any, visiteu %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Aquests arxius de contingut poden ser importats o restaurats per visitar %2\$s 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["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["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["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."; @@ -1516,27 +1474,6 @@ 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"; @@ -1573,7 +1510,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["%s show all"] = ""; +App::$strings["[+] show all"] = "[+] mostra tot"; App::$strings["Bold"] = "Negreta"; App::$strings["Italic"] = "Italica"; App::$strings["Underline"] = "Subratllat"; @@ -1582,93 +1519,9 @@ 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["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"; -App::$strings["Your posts and conversations"] = "Les teves entrades i converses"; -App::$strings["Your profile page"] = "La teva pàgina de perfil"; -App::$strings["Manage/Edit profiles"] = "Gestiona/Edita perfils"; -App::$strings["Edit Profile"] = "Edita Perfil"; -App::$strings["Edit your profile"] = "Edita el teu perfil"; -App::$strings["Your photos"] = "Les Teves Fotos"; -App::$strings["Your files"] = "Els teus arxius"; -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"; -App::$strings["Click to authenticate to your home hub"] = "Clica per autentificar-te en el teu node"; -App::$strings["Home Page"] = "Pàgina Personal"; -App::$strings["Create an account"] = "Crear un compte"; -App::$strings["Help and documentation"] = "Ajuda i documentació"; -App::$strings["Applications, utilities, links, games"] = "Aplicacions, utilitats, enllaços, jocs"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca pel lloc @name, #tag, ?docs, contingut"; -App::$strings["Channel Directory"] = "Directori de Canals"; -App::$strings["Your grid"] = "La teva malla"; -App::$strings["Mark all grid notifications seen"] = "Marca totes les notificacions de la malla vistes"; -App::$strings["Channel home"] = "Canal personal"; -App::$strings["Mark all channel notifications seen"] = "Marca totes les notificacions de canal vistes"; -App::$strings["Notices"] = "Noticies"; -App::$strings["Notifications"] = "Notificacions"; -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"; @@ -1678,196 +1531,34 @@ 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["%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:"; -App::$strings["View in context"] = "Veure en context"; -App::$strings["remove"] = "treu"; -App::$strings["Delete Selected Items"] = "Esborra els Articles Seleccionats"; -App::$strings["View Source"] = "Veure l'Origen"; -App::$strings["Follow Thread"] = "Segueix el Fil"; -App::$strings["Unfollow Thread"] = "Fil Abandonat"; -App::$strings["Activity/Posts"] = "Activitat/Entrades"; -App::$strings["Edit Connection"] = "Modifica la Connexió"; -App::$strings["Message"] = "Missatge"; -App::$strings["%s likes this."] = "%s agrada això."; -App::$strings["%s doesn't like this."] = "%s no agrada això."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d gent agrada això.", - 1 => "%2\$d gent agrada això.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d gent no agrada això.", - 1 => "%2\$d gent no agrada això.", -); -App::$strings["and"] = "i"; -App::$strings[", and %d other people"] = array( - 0 => ", i %d altra gent", - 1 => ", i %d altra gent", -); -App::$strings["%s like this."] = "%s agrada això."; -App::$strings["%s don't like this."] = "%s no agrada això."; -App::$strings["Set your location"] = "Ajusta la teva ubicació"; -App::$strings["Clear browser location"] = "Treu la localització del navegador"; -App::$strings["Tag term:"] = "Paraula de l'Etiqueta:"; -App::$strings["Where are you right now?"] = "On ets ara?"; -App::$strings["Page link name"] = "Nom de la pàgina enllaçada"; -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["Discover"] = "Descobrir"; -App::$strings["Imported public streams"] = "Importar fluxos públics"; -App::$strings["Commented Order"] = "Ordenar per Comentaris"; -App::$strings["Sort by Comment Date"] = "Ordenar per Data del Comentari"; -App::$strings["Posted Order"] = "Ordenar per Entrades"; -App::$strings["Sort by Post Date"] = "Ordenar per Data d' Entrada"; -App::$strings["Posts that mention or involve you"] = "Entrades que et mencionen o involucren"; -App::$strings["Activity Stream - by date"] = "Activitat del Flux - per data"; -App::$strings["Starred"] = "Preferit"; -App::$strings["Favourite Posts"] = "Entrades Favorites"; -App::$strings["Spam"] = "Spam"; -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["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( - 0 => "Assistint", - 1 => "Assistint", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Desassistint", - 1 => "Desassistint", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indecís", - 1 => "Indecisos", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Acord", - 1 => "Acords", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Desacord", - 1 => "Desacords", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Abstenirse", - 1 => "Abstenirse", -); +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["Frequently"] = "Freqüentment"; -App::$strings["Hourly"] = "Horariament"; -App::$strings["Twice daily"] = "Dos vegades al dia"; -App::$strings["Daily"] = "Diariament"; -App::$strings["Weekly"] = "Setmanalment"; -App::$strings["Monthly"] = "Mensualment"; -App::$strings["Currently Male"] = "Actualment Masculí"; -App::$strings["Currently Female"] = "Actualment Femení"; -App::$strings["Mostly Male"] = "Més aviat Masculí"; -App::$strings["Mostly Female"] = "Més Aviat Femení"; -App::$strings["Transgender"] = "Canvi de Sexe"; -App::$strings["Intersex"] = "Intersexual"; -App::$strings["Transsexual"] = "Transsexual"; -App::$strings["Hermaphrodite"] = "Hermafrodita"; -App::$strings["Neuter"] = "Neutre"; -App::$strings["Non-specific"] = "Indefinit"; -App::$strings["Undecided"] = "Indecís"; -App::$strings["Males"] = "Homes"; -App::$strings["Females"] = "Dones"; -App::$strings["Gay"] = "Gay"; -App::$strings["Lesbian"] = "Lesbianes"; -App::$strings["No Preference"] = "Sense Preferències"; -App::$strings["Bisexual"] = "Bisexual"; -App::$strings["Autosexual"] = "Autosexual"; -App::$strings["Abstinent"] = "Abstinent"; -App::$strings["Virgin"] = "Verge"; -App::$strings["Deviant"] = "Desviat"; -App::$strings["Fetish"] = "Fetixiste"; -App::$strings["Oodles"] = "Orgies"; -App::$strings["Nonsexual"] = "Asexual"; -App::$strings["Single"] = "Solter"; -App::$strings["Lonely"] = "Solitari"; -App::$strings["Available"] = "Disponible"; -App::$strings["Unavailable"] = "No Disponible"; -App::$strings["Has crush"] = "Aplastat"; -App::$strings["Infatuated"] = "Encapritxat"; -App::$strings["Dating"] = "Promés"; -App::$strings["Unfaithful"] = "Infidel"; -App::$strings["Sex Addict"] = "Adicte al Sexe"; -App::$strings["Friends/Benefits"] = "Amics amb Beneficis"; -App::$strings["Casual"] = "Casual"; -App::$strings["Engaged"] = "Ocupat"; -App::$strings["Married"] = "Casat"; -App::$strings["Imaginarily married"] = "Casat Imaginàriament"; -App::$strings["Partners"] = "Parella"; -App::$strings["Cohabiting"] = "Cohabitant"; -App::$strings["Common law"] = "Tradició"; -App::$strings["Happy"] = "Feliç"; -App::$strings["Not looking"] = "No Cerco"; -App::$strings["Swinger"] = "Llibertí"; -App::$strings["Betrayed"] = "Traït"; -App::$strings["Separated"] = "Separat"; -App::$strings["Unstable"] = "Inestable"; -App::$strings["Divorced"] = "Divorciat"; -App::$strings["Imaginarily divorced"] = "Divorciat Imaginàriament"; -App::$strings["Widowed"] = "Vidu/ua"; -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["%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["(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"; @@ -1877,6 +1568,7 @@ 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"; @@ -1939,21 +1631,385 @@ 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["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["Logout"] = "Desconectar"; +App::$strings["End this session"] = "Finalitza aquesta sessió"; +App::$strings["Home"] = "Inici"; +App::$strings["Your posts and conversations"] = "Les teves entrades i converses"; +App::$strings["Your profile page"] = "La teva pàgina de perfil"; +App::$strings["Manage/Edit profiles"] = "Gestiona/Edita perfils"; +App::$strings["Edit Profile"] = "Edita Perfil"; +App::$strings["Edit your profile"] = "Edita el teu perfil"; +App::$strings["Your photos"] = "Les Teves Fotos"; +App::$strings["Your files"] = "Els teus arxius"; +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["Sign in"] = "Signatura"; +App::$strings["%s - click to logout"] = "%s - click per desconectar"; +App::$strings["Remote authentication"] = "Autenticació remota"; +App::$strings["Click to authenticate to your home hub"] = "Clica per autentificar-te en el teu node"; +App::$strings["Home Page"] = "Pàgina Personal"; +App::$strings["Create an account"] = "Crear un compte"; +App::$strings["Help and documentation"] = "Ajuda i documentació"; +App::$strings["Applications, utilities, links, games"] = "Aplicacions, utilitats, enllaços, jocs"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca pel lloc @name, #tag, ?docs, contingut"; +App::$strings["Channel Directory"] = "Directori de Canals"; +App::$strings["Your grid"] = "La teva malla"; +App::$strings["Mark all grid notifications seen"] = "Marca totes les notificacions de la malla vistes"; +App::$strings["Channel home"] = "Canal personal"; +App::$strings["Mark all channel notifications seen"] = "Marca totes les notificacions de canal vistes"; +App::$strings["Notices"] = "Noticies"; +App::$strings["Notifications"] = "Notificacions"; +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["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["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["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["View %s's profile @ %s"] = "Vista %s del perfil @ %s"; +App::$strings["Categories:"] = "Categories:"; +App::$strings["Filed under:"] = "Arxivar a:"; +App::$strings["View in context"] = "Veure en context"; +App::$strings["remove"] = "treu"; +App::$strings["Delete Selected Items"] = "Esborra els Articles Seleccionats"; +App::$strings["View Source"] = "Veure l'Origen"; +App::$strings["Follow Thread"] = "Segueix el Fil"; +App::$strings["Unfollow Thread"] = "Fil Abandonat"; +App::$strings["Activity/Posts"] = "Activitat/Entrades"; +App::$strings["Edit Connection"] = "Modifica la Connexió"; +App::$strings["Message"] = "Missatge"; +App::$strings["%s likes this."] = "%s agrada això."; +App::$strings["%s doesn't like this."] = "%s no agrada això."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d gent agrada això.", + 1 => "%2\$d gent agrada això.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d gent no agrada això.", + 1 => "%2\$d gent no agrada això.", +); +App::$strings["and"] = "i"; +App::$strings[", and %d other people"] = array( + 0 => ", i %d altra gent", + 1 => ", i %d altra gent", +); +App::$strings["%s like this."] = "%s agrada això."; +App::$strings["%s don't like this."] = "%s no agrada això."; +App::$strings["Set your location"] = "Ajusta la teva ubicació"; +App::$strings["Clear browser location"] = "Treu la localització del navegador"; +App::$strings["Tag term:"] = "Paraula de l'Etiqueta:"; +App::$strings["Where are you right now?"] = "On ets ara?"; +App::$strings["Page link name"] = "Nom de la pàgina enllaçada"; +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"; +App::$strings["Sort by Comment Date"] = "Ordenar per Data del Comentari"; +App::$strings["Posted Order"] = "Ordenar per Entrades"; +App::$strings["Sort by Post Date"] = "Ordenar per Data d' Entrada"; +App::$strings["Posts that mention or involve you"] = "Entrades que et mencionen o involucren"; +App::$strings["Activity Stream - by date"] = "Activitat del Flux - per data"; +App::$strings["Starred"] = "Preferit"; +App::$strings["Favourite Posts"] = "Entrades Favorites"; +App::$strings["Spam"] = "Spam"; +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["Saved Bookmarks"] = "Marcadors Guardats"; +App::$strings["Manage Webpages"] = "Gestió de Pàgines Web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Assistint", + 1 => "Assistint", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Desassistint", + 1 => "Desassistint", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indecís", + 1 => "Indecisos", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "Acord", + 1 => "Acords", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Desacord", + 1 => "Desacords", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Abstenirse", + 1 => "Abstenirse", +); +App::$strings["Frequently"] = "Freqüentment"; +App::$strings["Hourly"] = "Horariament"; +App::$strings["Twice daily"] = "Dos vegades al dia"; +App::$strings["Daily"] = "Diariament"; +App::$strings["Weekly"] = "Setmanalment"; +App::$strings["Monthly"] = "Mensualment"; +App::$strings["Currently Male"] = "Actualment Masculí"; +App::$strings["Currently Female"] = "Actualment Femení"; +App::$strings["Mostly Male"] = "Més aviat Masculí"; +App::$strings["Mostly Female"] = "Més Aviat Femení"; +App::$strings["Transgender"] = "Canvi de Sexe"; +App::$strings["Intersex"] = "Intersexual"; +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"; +App::$strings["Gay"] = "Gay"; +App::$strings["Lesbian"] = "Lesbianes"; +App::$strings["No Preference"] = "Sense Preferències"; +App::$strings["Bisexual"] = "Bisexual"; +App::$strings["Autosexual"] = "Autosexual"; +App::$strings["Abstinent"] = "Abstinent"; +App::$strings["Virgin"] = "Verge"; +App::$strings["Deviant"] = "Desviat"; +App::$strings["Fetish"] = "Fetixiste"; +App::$strings["Oodles"] = "Orgies"; +App::$strings["Nonsexual"] = "Asexual"; +App::$strings["Single"] = "Solter"; +App::$strings["Lonely"] = "Solitari"; +App::$strings["Available"] = "Disponible"; +App::$strings["Unavailable"] = "No Disponible"; +App::$strings["Has crush"] = "Aplastat"; +App::$strings["Infatuated"] = "Encapritxat"; +App::$strings["Dating"] = "Promés"; +App::$strings["Unfaithful"] = "Infidel"; +App::$strings["Sex Addict"] = "Adicte al Sexe"; +App::$strings["Friends/Benefits"] = "Amics amb Beneficis"; +App::$strings["Casual"] = "Casual"; +App::$strings["Engaged"] = "Ocupat"; +App::$strings["Married"] = "Casat"; +App::$strings["Imaginarily married"] = "Casat Imaginàriament"; +App::$strings["Partners"] = "Parella"; +App::$strings["Cohabiting"] = "Cohabitant"; +App::$strings["Common law"] = "Tradició"; +App::$strings["Happy"] = "Feliç"; +App::$strings["Not looking"] = "No Cerco"; +App::$strings["Swinger"] = "Llibertí"; +App::$strings["Betrayed"] = "Traït"; +App::$strings["Separated"] = "Separat"; +App::$strings["Unstable"] = "Inestable"; +App::$strings["Divorced"] = "Divorciat"; +App::$strings["Imaginarily divorced"] = "Divorciat Imaginàriament"; +App::$strings["Widowed"] = "Vidu/ua"; +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["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."; @@ -1965,7 +2021,6 @@ 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"; @@ -1999,7 +2054,6 @@ 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"; @@ -2015,9 +2069,8 @@ 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"] = "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["Emoji Reactions"] = ""; +App::$strings["Add emoji reaction ability to posts"] = ""; 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"; @@ -2025,149 +2078,63 @@ 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.
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.
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 may 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 poden 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 “%3\$s”"] = "%1\$s canviat %2\$s a “%3\$s”"; -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["%s show less"] = ""; -App::$strings["%s expand"] = ""; -App::$strings["%s collapse"] = ""; +App::$strings["[-] show less"] = "[-] mostra menys"; +App::$strings["[+] expand"] = "[+] expandeix"; +App::$strings["[-] collapse"] = "[-] colapsa"; App::$strings["Password too short"] = "Contrasenya massa curta"; App::$strings["Passwords do not match"] = "Les paraules de pas no coincideixen"; App::$strings["everybody"] = "tothom"; @@ -2222,78 +2189,72 @@ 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["%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.
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.
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["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["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 “%3\$s”"] = "%1\$s canviat %2\$s a “%3\$s”"; +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"; @@ -2333,7 +2294,6 @@ 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/css/conversation.css b/view/css/conversation.css index d1adaf20f..68aa8bfbe 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -40,12 +40,6 @@ resize: vertical; } -#profile-jot-text.hover { - background-color: aliceblue; - opacity: 0.5; - box-shadow: inset 0 3px 4px #888; -} - .jot-attachment { border: 0px; padding: 10px; diff --git a/view/css/mod_cloud.css b/view/css/mod_cloud.css index 51c3709c1..ed07ceb6f 100644 --- a/view/css/mod_cloud.css +++ b/view/css/mod_cloud.css @@ -41,9 +41,3 @@ padding: 7px 10px; width: 100%; } - -#cloud-drag-area.hover { - background-color: aliceblue; - opacity: 0.5; - box-shadow: inset 0 0px 7px #5cb85c; -} diff --git a/view/de/hmessages.po b/view/de/hmessages.po index c160cd6bc..5c3b981ad 100644 --- a/view/de/hmessages.po +++ b/view/de/hmessages.po @@ -23,8 +23,8 @@ 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-28 09:16+0000\n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" +"PO-Revision-Date: 2016-06-15 09:43+0000\n" "Last-Translator: Phellmes \n" "Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" @@ -33,156 +33,11 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:904 -msgid "Social Networking" -msgstr "Soziales Netzwerk" - -#: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:904 -msgid "Social - Mostly Public" -msgstr "Soziales Netzwerk - Weitgehend öffentlich" - -#: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:904 -msgid "Social - Restricted" -msgstr "Soziales Netzwerk - Beschränkt" - -#: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:904 -msgid "Social - Private" -msgstr "Soziales Netzwerk - Privat" - -#: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:905 -msgid "Community Forum" -msgstr "Forum" - -#: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:905 -msgid "Forum - Mostly Public" -msgstr "Forum - Weitgehend öffentlich" - -#: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:905 -msgid "Forum - Restricted" -msgstr "Forum - Beschränkt" - -#: ../../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 "Teilen von Feeds" - -#: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:906 -msgid "Feed - Mostly Public" -msgstr "Feeds - Weitgehend öffentlich" - -#: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:906 -msgid "Feed - Restricted" -msgstr "Feeds - Beschränkt" - -#: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:907 -msgid "Special Purpose" -msgstr "Für besondere Zwecke" - -#: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:907 -msgid "Special - Celebrity/Soapbox" -msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)" - -#: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:907 -msgid "Special - Group Repository" -msgstr "Speziell - Gruppenarchiv" - -#: ../../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 "Andere" - -#: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:908 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" - -#: ../../Zotlabs/Access/Permissions.php:30 -msgid "Can view my channel stream and posts" -msgstr "Kann meinen Kanal-Stream und meine Beiträge sehen" - -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" - -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" - -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" - -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kann meine Datei- und Bilderordner sehen" - -#: ../../Zotlabs/Access/Permissions.php:35 -msgid "Can upload/modify my file storage and photos" -msgstr "Kann in meine Datei- und Bilderordner hochladen/ändern" - -#: ../../Zotlabs/Access/Permissions.php:36 -msgid "Can view my channel webpages" -msgstr "Kann die Webseiten meines Kanals sehen" - -#: ../../Zotlabs/Access/Permissions.php:37 -msgid "Can create/edit my channel webpages" -msgstr "Kann Webseiten in meinem Kanal erstellen/ändern" - -#: ../../Zotlabs/Access/Permissions.php:38 -msgid "Can post on my channel (wall) page" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" - -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" - -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" - -#: ../../Zotlabs/Access/Permissions.php:41 -msgid "Can like/dislike profiles and profile things" -msgstr "Kann Profile und Profilsachen mögen/nicht mögen" - -#: ../../Zotlabs/Access/Permissions.php:42 -msgid "Can forward to all my channel connections via @+ mentions in posts" -msgstr "Kann an alle meine Verbindungen via @-Erwähnungen Nachrichten weiterleiten" - -#: ../../Zotlabs/Access/Permissions.php:43 -msgid "Can chat with me" -msgstr "Kann mit mir chatten" - -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" - -#: ../../Zotlabs/Access/Permissions.php:45 -msgid "Can administer my channel" -msgstr "Kann meinen Kanal administrieren" - #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "Übergeordnetes Verzeichnis" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 msgid "Collection" msgstr "Sammlung" @@ -206,17 +61,16 @@ msgstr "Posteingang für überwachte Kalender" msgid "Schedule Outbox" msgstr "Postausgang für überwachte Kalender" -#: ../../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 "Unbekannt" #: ../../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 "Dateien" @@ -229,23 +83,22 @@ msgid "Shared" msgstr "Geteilt" #: ../../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 "Erstelle" #: ../../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 "Hochladen" #: ../../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 "Name" @@ -255,7 +108,7 @@ msgid "Type" msgstr "Typ" #: ../../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 "Größe" @@ -264,32 +117,34 @@ msgstr "Größe" msgid "Last Modified" msgstr "Zuletzt geändert" -#: ../../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 "Bearbeiten" -#: ../../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 "Löschen" @@ -315,73 +170,74 @@ msgstr "Neuen Ordner anlegen" msgid "Upload file" msgstr "Datei hochladen" -#: ../../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 "Keine Berechtigung" -#: ../../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 "Berechtigung verweigert." @@ -389,9 +245,9 @@ msgstr "Berechtigung verweigert." msgid "Not Found" msgstr "Nicht gefunden" -#: ../../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 "Seite nicht gefunden." @@ -407,380 +263,629 @@ msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angeme msgid "Welcome %s. Remote authentication successful." msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." -#: ../../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 "Das angefragte Profil ist nicht verfügbar." +msgstr "Erwünschte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Achievements.php:38 msgid "Some blurb about what to do when you're new here" msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" -#: ../../Zotlabs/Module/Chatsvc.php:117 -msgid "Away" -msgstr "Abwesend" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Block-Name" -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" -msgstr "Online" +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Blöcke" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Konnte nicht auf den Kontakteintrag zugreifen." +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Titel des Blocks" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Gewähltes Profil nicht gefunden." +#: ../../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 "Erstellt" -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "Connection updated." -msgstr "Verbindung aktualisiert." +#: ../../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 "Geändert" -#: ../../Zotlabs/Module/Connedit.php:250 -msgid "Failed to update connection record." -msgstr "Konnte den Verbindungseintrag nicht aktualisieren." +#: ../../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 "Teilen" -#: ../../Zotlabs/Module/Connedit.php:300 -msgid "is now connected to" -msgstr "ist jetzt verbunden mit" +#: ../../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 "Ansicht" -#: ../../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:1708 -msgid "No" -msgstr "Nein" +#: ../../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 "Kanal nicht gefunden." -#: ../../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:1708 -msgid "Yes" -msgstr "Ja" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Berechtigung verweigert." -#: ../../Zotlabs/Module/Connedit.php:435 -msgid "Could not access address book record." -msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l, j. F" -#: ../../Zotlabs/Module/Connedit.php:455 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Link zur Quelle" -#: ../../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 "Konnte die Adressbuch-Parameter nicht setzen." +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Termin bearbeiten" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Connection has been removed." -msgstr "Verbindung wurde gelöscht." +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Termin anlegen" -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 -msgid "View Profile" -msgstr "Profil ansehen" +#: ../../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 "Voriges" -#: ../../Zotlabs/Module/Connedit.php:552 -#, php-format -msgid "View %s's profile" -msgstr "%ss Profil ansehen" +#: ../../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 "Nächste" -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Refresh Permissions" -msgstr "Zugriffsrechte neu laden" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Exportieren" -#: ../../Zotlabs/Module/Connedit.php:559 -msgid "Fetch updated permissions" -msgstr "Aktualisierte Zugriffsrechte abfragen" +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Import" -#: ../../Zotlabs/Module/Connedit.php:563 -msgid "Recent Activity" -msgstr "Kürzliche Aktivitäten" +#: ../../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 "Bestätigen" -#: ../../Zotlabs/Module/Connedit.php:566 -msgid "View recent posts and comments" -msgstr "Betrachte die neuesten Beiträge und Kommentare" +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Heute" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Freigeben" +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Blockieren" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "Beiträge und Kommentare" -#: ../../Zotlabs/Module/Connedit.php:573 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "Nur Beiträge" -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "This connection is blocked!" -msgstr "Die Verbindung ist geblockt!" +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Unignore" -msgstr "Nicht ignorieren" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chatraum nicht gefunden" -#: ../../Zotlabs/Module/Connedit.php:578 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Ignorieren" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Raum verlassen" -#: ../../Zotlabs/Module/Connedit.php:581 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Raum löschen" -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "This connection is ignored!" -msgstr "Die Verbindung wird ignoriert!" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Ich bin gerade nicht da" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Ich bin online" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Archive" -msgstr "Archivieren" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Lesezeichen für diesen Raum setzen" -#: ../../Zotlabs/Module/Connedit.php:589 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)" +#: ../../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 "Gib eine URL ein:" -#: ../../Zotlabs/Module/Connedit.php:590 -msgid "This connection is archived!" -msgstr "Die Verbindung ist archiviert!" +#: ../../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 verschlüsseln" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Unhide" -msgstr "Wieder sichtbar machen" +#: ../../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 "Link einfügen" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Hide" -msgstr "Verstecken" +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funktion deaktiviert." -#: ../../Zotlabs/Module/Connedit.php:597 -msgid "Hide or Unhide this connection from your other connections" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Neuer Chatraum" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Chatraumname" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Verfall von Chats (Minuten)" + +#: ../../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 "Berechtigungen" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$ss Chaträume" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "Keine Chaträume verfügbar" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" +msgstr "Neu anlegen" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Verfall" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Chatsvc.php:117 +msgid "Away" +msgstr "Abwesend" + +#: ../../Zotlabs/Module/Chatsvc.php:122 +msgid "Online" +msgstr "Online" + +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Ungültiges Element." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Lesezeichen hinzugefügt" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Meine Lesezeichen" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Lesezeichen meiner Kontakte" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Fortfahren" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Premium-Kanal-Einrichtung" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Einschränkungen für einen Premium-Kanal aktivieren" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien 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 "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" + +#: ../../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 "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Eingeschränkter oder Premium-Kanal" + +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Konnte nicht auf den Kontakteintrag zugreifen." + +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Gewähltes Profil nicht gefunden." + +#: ../../Zotlabs/Module/Connedit.php:227 +msgid "Connection updated." +msgstr "Verbindung aktualisiert." + +#: ../../Zotlabs/Module/Connedit.php:229 +msgid "Failed to update connection record." +msgstr "Konnte den Verbindungseintrag nicht aktualisieren." + +#: ../../Zotlabs/Module/Connedit.php:276 +msgid "is now connected to" +msgstr "ist jetzt verbunden mit" + +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "No" +msgstr "Nein" + +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "Yes" +msgstr "Ja" + +#: ../../Zotlabs/Module/Connedit.php:411 +msgid "Could not access address book record." +msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." + +#: ../../Zotlabs/Module/Connedit.php:425 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." + +#: ../../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 "Konnte die Adressbuch-Parameter nicht setzen." + +#: ../../Zotlabs/Module/Connedit.php:503 +msgid "Connection has been removed." +msgstr "Verbindung wurde gelöscht." + +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 +msgid "View Profile" +msgstr "Profil ansehen" + +#: ../../Zotlabs/Module/Connedit.php:522 +#, php-format +msgid "View %s's profile" +msgstr "%ss Profil ansehen" + +#: ../../Zotlabs/Module/Connedit.php:526 +msgid "Refresh Permissions" +msgstr "Zugriffsrechte neu laden" + +#: ../../Zotlabs/Module/Connedit.php:529 +msgid "Fetch updated permissions" +msgstr "Aktualisierte Zugriffsrechte abfragen" + +#: ../../Zotlabs/Module/Connedit.php:533 +msgid "Recent Activity" +msgstr "Kürzliche Aktivitäten" + +#: ../../Zotlabs/Module/Connedit.php:536 +msgid "View recent posts and comments" +msgstr "Betrachte die neuesten Beiträge und Kommentare" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +msgid "Unblock" +msgstr "Freigeben" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +msgid "Block" +msgstr "Blockieren" + +#: ../../Zotlabs/Module/Connedit.php:543 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" + +#: ../../Zotlabs/Module/Connedit.php:544 +msgid "This connection is blocked!" +msgstr "Die Verbindung ist geblockt!" + +#: ../../Zotlabs/Module/Connedit.php:548 +msgid "Unignore" +msgstr "Nicht ignorieren" + +#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" +msgstr "Ignorieren" + +#: ../../Zotlabs/Module/Connedit.php:551 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" + +#: ../../Zotlabs/Module/Connedit.php:552 +msgid "This connection is ignored!" +msgstr "Die Verbindung wird ignoriert!" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Archive" +msgstr "Archivieren" + +#: ../../Zotlabs/Module/Connedit.php:559 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)" + +#: ../../Zotlabs/Module/Connedit.php:560 +msgid "This connection is archived!" +msgstr "Die Verbindung ist archiviert!" + +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Unhide" +msgstr "Wieder sichtbar machen" + +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Hide" +msgstr "Verstecken" + +#: ../../Zotlabs/Module/Connedit.php:567 +msgid "Hide or Unhide this connection from your other connections" msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "This connection is hidden!" msgstr "Die Verbindung ist versteckt!" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Delete this connection" msgstr "Verbindung löschen" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 msgid "Me" msgstr "Ich" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 msgid "Family" msgstr "Familie" -#: ../../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 "Freunde" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Bekannte" -#: ../../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 "Alle" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Approve this connection" msgstr "Verbindung genehmigen" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Accept connection to allow communication" msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:659 msgid "Set Affinity" msgstr "Beziehung festlegen" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:662 msgid "Set Profile" msgstr "Profil festlegen" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity & Profile" msgstr "Beziehung und Profile festlegen" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:698 msgid "none" msgstr "Keine" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 msgid "Connection Default Permissions" msgstr "Standardzugriffsrechte für neue Verbindungen:" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 #, php-format msgid "Connection: %s" msgstr "Verbindung: %s" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Apply these permissions automatically" msgstr "Diese Berechtigungen automatisch anwenden" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Connection requests will be approved without your interaction" msgstr "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist." -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:705 msgid "This connection's primary address is" msgstr "Die Hauptadresse der Verbindung ist" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Available locations:" msgstr "Verfügbare Klone:" -#: ../../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 "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet." -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "Connection Tools" msgstr "Verbindungswerkzeuge" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "Slide to adjust your degree of friendship" msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../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 "Bewertung" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:715 msgid "Slide to adjust your rating" msgstr "Verschieben, um Deine Bewertung einzustellen" -#: ../../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 "Optional kannst Du Deine Bewertung begründen" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Custom Filter" msgstr "Benutzerdefinierter Filter" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Only import posts with this text" msgstr "Nur Beiträge mit diesem Text importieren" -#: ../../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 "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren." -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:720 msgid "Do not import posts with this text" msgstr "Beiträge mit diesem Text nicht importieren" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "This information is public!" msgstr "Diese Information ist öffentlich!" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:727 msgid "Connection Pending Approval" msgstr "Verbindung wartet auf Bestätigung" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "inherited" msgstr "geerbt" -#: ../../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 "Bestätigen" - -#: ../../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 "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:734 msgid "Their Settings" msgstr "Deren Einstellungen" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:735 msgid "My Settings" msgstr "Meine Einstellungen" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Individual Permissions" msgstr "Individuelle Zugriffsrechte" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -788,7 +893,7 @@ msgid "" " settings here." msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden." -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:739 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -796,146 +901,42 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Last update:" msgstr "Letzte Aktualisierung:" -#: ../../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 "Öffentlichen Zugriff verweigert." -#: ../../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 nicht gefunden." +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d Bewertung" +msgstr[1] "%d Bewertungen" -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Vorname" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Geschlecht:" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Nachname" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Status:" -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Spitzname" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Webseite:" -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Voller Name" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 +msgid "Age:" +msgstr "Alter:" -#: ../../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-Mail" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Profilfoto" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profilfoto 16 px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profilfoto 32 px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profilfoto 48 px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profilfoto 64 px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profilfoto 80 px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profilfoto 128 px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Zeitzone" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Homepage-URL" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Sprache" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Geburtsjahr" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Geburtsmonat" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Geburtstag" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Geburtsdatum" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Geschlecht" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Männlich" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Weiblich" - -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanal hinzugefügt." - -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d Bewertung" -msgstr[1] "%d Bewertungen" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Geschlecht:" - -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Status:" - -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Webseite:" - -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 -msgid "Age:" -msgstr "Alter:" - -#: ../../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 "Ort:" @@ -944,18 +945,18 @@ msgstr "Ort:" msgid "Description:" msgstr "Beschreibung:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 msgid "Hometown:" msgstr "Heimatstadt:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 msgid "About:" msgstr "Über:" #: ../../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 "Verbinden" @@ -1031,406 +1032,122 @@ msgstr "Älteste zuerst" msgid "No entries (some entries may be hidden)." msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Fortfahren" +#: ../../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 nicht gefunden." -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Premium-Kanal-Einrichtung" +#: ../../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 "Element nicht gefunden" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Einschränkungen für einen Premium-Kanal aktivieren" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Titel (optional)" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Block bearbeiten" -#: ../../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 "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Kein Kanal." -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Gemeinsame Verbindungen" -#: ../../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 "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Keine gemeinsamen Verbindungen." -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Blockiert" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Eingeschränkter oder Premium-Kanal" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignoriert" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Kalendereinträge wurden importiert." +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Versteckt" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Keine Kalendereinträge gefunden." +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archiviert" -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Termin-Ende liegt vor dem Beginn." +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1535 +msgid "New" +msgstr "Neu" -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Vorschau konnte nicht erzeugt werden." +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Neue Verbindungen" -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Titel und Startzeit des Termins sind erforderlich." +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Termin nicht gefunden." +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Alle Verbindungen" -#: ../../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 "Termin" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Alle Verbindungen anzeigen" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Termintitel bearbeiten" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Nur blockierte Verbindungen anzeigen" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Termintitel" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Nur ignorierte Verbindungen anzeigen" -#: ../../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 "Benötigt" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Nur archivierte Verbindungen anzeigen" -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (Kommagetrennte Liste)" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Nur versteckte Verbindungen anzeigen" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Kategorie bearbeiten" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Wartet auf Genehmigung" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Kategorie" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Startdatum und -zeit bearbeiten" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Verbindung bearbeiten" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Startdatum und -zeit" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Verbindung löschen" -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "Enddatum und -zeit sind unbekannt oder irrelevant" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Enddatum und -zeit bearbeiten" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Enddatum und -zeit" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "An die Zeitzone des Betrachters anpassen" - -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Beschreibung bearbeiten" - -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Beschreibung" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Ort bearbeiten" - -#: ../../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 "Ort" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Den Termin teilen" - -#: ../../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 "Vorschau" - -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Berechtigungs-Einstellungen" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Weitere Optionen" - -#: ../../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 "Termin bearbeiten" - -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Termin löschen" - -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Link zur Quelle" - -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "Kalender" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Termin bearbeiten" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Termin anlegen" - -#: ../../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 "Voriges" - -#: ../../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 "Nächste" - -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Exportieren" - -#: ../../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 "Ansicht" - -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "Monat" - -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "Woche" - -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "Tag" - -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Heute" - -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "Termin gelöscht" - -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "Termin konnte nicht gelöscht werden" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Lesezeichen hinzugefügt" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Meine Lesezeichen" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Lesezeichen meiner Kontakte" - -#: ../../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 -msgid "Item not found" -msgstr "Element nicht gefunden" - -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." - -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Bearbeite Beitrag" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Fotos" - -#: ../../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 "Abbrechen" - -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Ungültiges 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 "Kanal nicht gefunden." - -#: ../../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 "Speichern in Ordner:" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "– auswählen –" - -#: ../../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 "Speichern" - -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Blockiert" - -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignoriert" - -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Versteckt" - -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archiviert" - -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 -msgid "New" -msgstr "Neu" - -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Neue Verbindungen" - -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" - -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Alle Verbindungen" - -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Alle Verbindungen anzeigen" - -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Nur blockierte Verbindungen anzeigen" - -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Nur ignorierte Verbindungen anzeigen" - -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Nur archivierte Verbindungen anzeigen" - -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Nur versteckte Verbindungen anzeigen" - -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "Wartet auf Genehmigung" - -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Verbindung bearbeiten" - -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Verbindung löschen" - -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Kanaladresse" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Kanaladresse" #: ../../Zotlabs/Module/Connections.php:267 msgid "Network" @@ -1461,15 +1178,15 @@ msgstr "Verbindung ignorieren" msgid "Recent activity" msgstr "Kürzliche Aktivitäten" -#: ../../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 "Verbindungen" #: ../../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 "Suche" @@ -1482,7 +1199,7 @@ msgid "Connections search" msgstr "Verbindung suchen" #: ../../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 "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." @@ -1492,66 +1209,66 @@ msgid "Cover Photos" msgstr "Cover Foto" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 +#: ../../Zotlabs/Module/Profile_photo.php:133 msgid "Image resize failed." msgstr "Bild-Anpassung fehlgeschlagen." #: ../../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 "Kann Bild nicht verarbeiten" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 +#: ../../Zotlabs/Module/Profile_photo.php:217 msgid "Image upload failed." msgstr "Hochladen des Bilds fehlgeschlagen." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 +#: ../../Zotlabs/Module/Profile_photo.php:236 msgid "Unable to process image." msgstr "Kann Bild nicht verarbeiten." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 msgid "female" msgstr "weiblich" -#: ../../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 "%1$s hat ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 msgid "male" msgstr "männlich" -#: ../../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 "%1$s hat sein %2$s aktualisiert" -#: ../../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 "%1$s hat sein/ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 msgid "cover photo" msgstr "Cover Foto" #: ../../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 nicht verfügbar." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:365 msgid "Upload File:" msgstr "Datei hochladen:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:366 msgid "Select a profile:" msgstr "Wähle ein Profil:" @@ -1560,256 +1277,315 @@ msgid "Upload Cover Photo" msgstr "Cover Foto hochladen" #: ../../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 "oder" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "skip this step" msgstr "diesen Schritt überspringen" #: ../../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 "ein Foto aus meinen Fotoalben" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 +#: ../../Zotlabs/Module/Profile_photo.php:390 msgid "Crop Image" msgstr "Bild zuschneiden" #: ../../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 "Bitte schneide das Bild für eine optimale Anzeige passend zu." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:393 msgid "Done Editing" msgstr "Bearbeitung fertigstellen" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "Webseite" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Element kann nicht bearbeitet werden." -#: ../../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 "Bearbeite Beitrag" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "Layout" +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "Kalendereinträge wurden importiert." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "Menü" +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "Keine Kalendereinträge gefunden." -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" +#: ../../Zotlabs/Module/Events.php:105 +msgid "Event can not end before it has started." +msgstr "Termin-Ende liegt vor dem Beginn." -#: ../../Zotlabs/Module/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "Installation des Elements %s fehlgeschlagen" +#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 +#: ../../Zotlabs/Module/Events.php:136 +msgid "Unable to generate preview." +msgstr "Vorschau konnte nicht erzeugt werden." -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Berechtigung verweigert." +#: ../../Zotlabs/Module/Events.php:114 +msgid "Event title and start time are required." +msgstr "Titel und Startzeit des Termins sind erforderlich." -#: ../../Zotlabs/Module/Cal.php:337 -msgid "Import" -msgstr "Import" +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "Termin nicht gefunden." -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Diese Webseite ist kein Verzeichnisserver" +#: ../../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 "Termin" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Termintitel bearbeiten" -#: ../../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 musst angemeldet sein, um diese Seite betrachten zu können." +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Termintitel" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chatraum nicht gefunden" +#: ../../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 "Benötigt" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Raum verlassen" +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (Kommagetrennte Liste)" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Raum löschen" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Kategorie bearbeiten" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Ich bin gerade nicht da" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Kategorie" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Ich bin online" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Startdatum und -zeit bearbeiten" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Lesezeichen für diesen Raum setzen" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Startdatum und -zeit" -#: ../../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 "Gib eine URL ein:" +#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 +msgid "Finish date and time are not known or not relevant" +msgstr "Enddatum und -zeit sind unbekannt oder irrelevant" -#: ../../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 verschlüsseln" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit finish date and time" +msgstr "Enddatum und -zeit bearbeiten" -#: ../../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 "Link einfügen" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Enddatum und -zeit" -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funktion deaktiviert." +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "An die Zeitzone des Betrachters anpassen" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Neuer Chatraum" +#: ../../Zotlabs/Module/Events.php:460 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Chatraumname" +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" +msgstr "Beschreibung bearbeiten" -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Verfall von Chats (Minuten)" +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Beschreibung" -#: ../../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 "Berechtigungen" +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Ort bearbeiten" -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss Chaträume" +#: ../../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 "Ort" -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "Keine Chaträume verfügbar" +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Den Termin teilen" -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Neu anlegen" +#: ../../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 "Vorschau" -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Verfall" +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Berechtigungs-Einstellungen" -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" +msgstr "Weitere Optionen" + +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "Termin bearbeiten" + +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "Termin löschen" + +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "Kalender" + +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" +msgstr "Termin gelöscht" + +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" +msgstr "Termin konnte nicht gelöscht werden" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:92 ../../include/conversation.php:1632 +msgid "Photos" +msgstr "Fotos" + +#: ../../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 "Abbrechen" + +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "Diese Webseite ist kein Verzeichnisserver" -#: ../../Zotlabs/Module/Dreport.php:44 +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Speichern in Ordner:" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "– auswählen –" + +#: ../../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 "Speichern" + +#: ../../Zotlabs/Module/Dreport.php:27 msgid "Invalid message" msgstr "Ungültige Beitrags-ID (mid)" -#: ../../Zotlabs/Module/Dreport.php:76 +#: ../../Zotlabs/Module/Dreport.php:59 msgid "no results" msgstr "keine Ergebnisse" -#: ../../Zotlabs/Module/Dreport.php:91 +#: ../../Zotlabs/Module/Dreport.php:64 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Zustellungsbericht für %1$s" + +#: ../../Zotlabs/Module/Dreport.php:78 msgid "channel sync processed" msgstr "Kanal-Sync verarbeitet" -#: ../../Zotlabs/Module/Dreport.php:95 +#: ../../Zotlabs/Module/Dreport.php:82 msgid "queued" msgstr "zur Warteschlange hinzugefügt" -#: ../../Zotlabs/Module/Dreport.php:99 +#: ../../Zotlabs/Module/Dreport.php:86 msgid "posted" msgstr "zugestellt" -#: ../../Zotlabs/Module/Dreport.php:103 +#: ../../Zotlabs/Module/Dreport.php:90 msgid "accepted for delivery" msgstr "für Zustellung akzeptiert" -#: ../../Zotlabs/Module/Dreport.php:107 +#: ../../Zotlabs/Module/Dreport.php:94 msgid "updated" msgstr "aktualisiert" -#: ../../Zotlabs/Module/Dreport.php:110 +#: ../../Zotlabs/Module/Dreport.php:97 msgid "update ignored" msgstr "Aktualisierung ignoriert" -#: ../../Zotlabs/Module/Dreport.php:113 +#: ../../Zotlabs/Module/Dreport.php:100 msgid "permission denied" msgstr "Zugriff verweigert" -#: ../../Zotlabs/Module/Dreport.php:117 +#: ../../Zotlabs/Module/Dreport.php:104 msgid "recipient not found" msgstr "Empfänger nicht gefunden." -#: ../../Zotlabs/Module/Dreport.php:120 +#: ../../Zotlabs/Module/Dreport.php:107 msgid "mail recalled" msgstr "Mail widerrufen" -#: ../../Zotlabs/Module/Dreport.php:123 +#: ../../Zotlabs/Module/Dreport.php:110 msgid "duplicate mail received" msgstr "Doppelte Mail erhalten" -#: ../../Zotlabs/Module/Dreport.php:126 +#: ../../Zotlabs/Module/Dreport.php:113 msgid "mail delivered" msgstr "Mail zugestellt" -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Zustellungsbericht für %1$s" - -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Optionen" - -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Erneut zustellen" - -#: ../../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 "Layout-Name" -#: ../../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 "Layout-Beschreibung (optional)" -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editlayout.php:135 msgid "Edit Layout" msgstr "Layout bearbeiten" -#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:143 msgid "Page link" msgstr "Seiten-Link" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 msgid "Edit Webpage" msgstr "Webseite bearbeiten" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Kanal hinzugefügt." + +#: ../../Zotlabs/Module/Acl.php:227 +msgid "network" +msgstr "Netzwerk" + +#: ../../Zotlabs/Module/Acl.php:237 +msgid "RSS" +msgstr "RSS" + #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Gruppe wurde erstellt." @@ -1819,7 +1595,7 @@ msgid "Could not create privacy group." msgstr "Gruppe konnte nicht erstellt werden." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 +#: ../../include/items.php:3893 msgid "Privacy group not found." msgstr "Gruppe nicht gefunden." @@ -1863,61 +1639,35 @@ msgstr "Alle verbundenen Kanäle" msgid "Click on a channel to add or remove." msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installiert." - -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Fehlerhafte App." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Inhalte von Firefox nach $Projectname teilen" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Code einbetten" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Aktiviert den $Projectname-Provider für firefox" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "App bearbeiten" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Zugriff für die Anwendung autorisieren" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "App erstellen" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Name der App" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Zum Weitermachen, bitte einloggen." -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Ort (URL) der 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 "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL zum Icon" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versions-ID" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Preis der App" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" - -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Suche in der Dokumentation" +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Suche in der Dokumentation" #: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 #: ../../Zotlabs/Module/Help.php:79 @@ -1925,8 +1675,8 @@ msgid "Help:" msgstr "Hilfe:" #: ../../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 "Hilfe" @@ -1934,5487 +1684,5098 @@ msgstr "Hilfe" msgid "$Projectname Documentation" msgstr "$Projectname-Dokumentation" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Element nicht verfügbar." - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Layout aktualisiert." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Systemseitenbeschreibung bearbeiten" - -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layout nicht gefunden." - -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulname:" - -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Layout-Hilfe" - -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Inhalte von Firefox nach $Projectname teilen" - -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Aktiviert den $Projectname-Provider für firefox" - -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "Netzwerk" - -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" - -#: ../../Zotlabs/Module/Filestorage.php:87 +#: ../../Zotlabs/Module/Filestorage.php:88 msgid "Permission Denied." msgstr "Zugriff verweigert." -#: ../../Zotlabs/Module/Filestorage.php:103 +#: ../../Zotlabs/Module/Filestorage.php:104 msgid "File not found." msgstr "Datei nicht gefunden." -#: ../../Zotlabs/Module/Filestorage.php:146 +#: ../../Zotlabs/Module/Filestorage.php:147 msgid "Edit file permissions" msgstr "Dateiberechtigungen bearbeiten" -#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:156 msgid "Set/edit permissions" msgstr "Berechtigungen setzen/ändern" -#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:157 msgid "Include all files and sub folders" msgstr "Alle Dateien und Unterverzeichnisse einbinden" -#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:158 msgid "Return to file list" msgstr "Zurück zur Dateiliste" -#: ../../Zotlabs/Module/Filestorage.php:159 +#: ../../Zotlabs/Module/Filestorage.php:160 msgid "Copy/paste this code to attach file to a post" msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" -#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:161 msgid "Copy/paste this URL to link file from a web page" msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" -#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Filestorage.php:163 msgid "Share this file" msgstr "Diese Datei freigeben" -#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Module/Filestorage.php:164 msgid "Show URL to this file" msgstr "URL zu dieser Datei anzeigen" -#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Filestorage.php:165 msgid "Notify your contacts about this file" msgstr "Meine Kontakte über diese Datei benachrichtigen" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 -msgid "Layouts" -msgstr "Layouts" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Apps" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Element nicht verfügbar." -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Layout-Beschreibung" +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Dein Vertrag erlaubt nur %d Kanäle." -#: ../../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 "Erstellt" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Nichts zu importieren." -#: ../../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 "Geändert" +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Daten können vom alten Server nicht heruntergeladen werden" -#: ../../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 "Teilen" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Die importierte Datei ist leer." -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "PDL-Datei herunterladen" +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Mögen/Nicht mögen" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." +msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Kein Kanal. Import fehlgeschlagen." -#: ../../Zotlabs/Module/Like.php:25 +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import abgeschlossen." + +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." +msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." + +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Kanal importieren" + +#: ../../Zotlabs/Module/Import.php:538 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Um fortzufahren melde Dich bitte mit Deiner $Projectname-ID an oder registriere Dich als neues $Projectname-Mitglied." +"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 "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Ungültige Anfrage." +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Hochzuladende Datei:" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "Kanal" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "Oder gib die Details Deines bisherigen $Projectname-Hubs ein" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "Sache" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Bisherige Kanal-Adresse (xyz@example.com)" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Kanal nicht vorhanden." +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Deine alte Login-E-Mail-Adresse" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Die vorherige Aktion wurde rückgängig gemacht." +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "Dein altes Passwort" -#: ../../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/Import.php:544 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige $Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 -msgid "status" -msgstr "Status" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Dieser $Pojectname-Hub ist mein primärer Hub." -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s" +#: ../../Zotlabs/Module/Import.php:546 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher" -#: ../../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 gefällt %2$ss %3$s nicht" +#: ../../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 "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s stimmt %2$ss %3$s zu" +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s lehnt %2$ss %3$s ab" +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s enthält sich zu %2$ss %3$s" +#: ../../Zotlabs/Module/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s teil" +#: ../../Zotlabs/Module/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "Doppelter Beitrag unterdrückt." + +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." + +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Item.php:1248 #, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s nicht teil" +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." -#: ../../Zotlabs/Module/Like.php:433 +#: ../../Zotlabs/Module/Item.php:1255 #, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." -#: ../../Zotlabs/Module/Like.php:536 -msgid "Action completed." -msgstr "Aktion durchgeführt." +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +msgid "Layouts" +msgstr "Layouts" -#: ../../Zotlabs/Module/Like.php:537 -msgid "Thank you." -msgstr "Vielen Dank." +#: ../../Zotlabs/Module/Layouts.php:183 +msgid "Comanche page description language help" +msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" -#: ../../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 nicht gefunden." +#: ../../Zotlabs/Module/Layouts.php:187 +msgid "Layout Description" +msgstr "Layout-Beschreibung" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profil gelöscht." +#: ../../Zotlabs/Module/Layouts.php:192 +msgid "Download PDL file" +msgstr "PDL-Datei herunterladen" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profil-" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Neues Profil erstellt." +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen auf %s" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Profil kann nicht geklont werden." +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Vorname" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Dieses Profil kann nicht exportiert werden." +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Nachname" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Profil-Name erforderlich." +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Spitzname" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Familienstand" +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Voller Name" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Romantische Partner" +#: ../../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-Mail" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Gefällt" +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 +msgid "Profile Photo" +msgstr "Profilfoto" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Gefällt nicht" +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Profilfoto 16 px" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Arbeit/Anstellung" +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Profilfoto 32 px" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religion" +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Profilfoto 48 px" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Politische Ansichten" +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Profilfoto 64 px" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Sexuelle Orientierung" +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Profilfoto 80 px" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Webseite" +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Profilfoto 128 px" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Hobbys/Interessen" +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Zeitzone" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Homepage-URL" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profil aktualisiert." +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" +msgstr "Sprache" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Deine Verbindungen vor Betrachtern dieses Profils verbergen" +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Geburtsjahr" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Bearbeite Profil-Details" +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Geburtsmonat" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Dieses Profil ansehen" +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Geburtstag" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Geburtsdatum" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Profilwerkzeuge" +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Geschlecht" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Titelbild ändern" +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Männlich" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 -msgid "Change profile photo" -msgstr "Profilfoto ändern" +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Weiblich" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "Webseite" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Dieses Profil klonen" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "Block" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Dieses Profil löschen" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "Layout" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Sachen zum Profil hinzufügen" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "Menü" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Persönlich" +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "Element für %s installiert" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Beziehung" +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Installation des Elements %s fehlgeschlagen" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Verschiedenes" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Mögen/Nicht mögen" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Profil aus einer Datei importieren" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Profil in eine Datei exportieren" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Um fortzufahren melde Dich bitte mit Deiner $Projectname-ID an oder registriere Dich als neues $Projectname-Mitglied." -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Dein Geschlecht" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Ungültige Anfrage." -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Familienstand" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "Kanal" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Sexuelle Orientierung" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "Sache" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Profilname" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Kanal nicht vorhanden." -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Das ist Dein Standardprofil." +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Die vorherige Aktion wurde rückgängig gemacht." -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Dein voller Name" +#: ../../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/Profiles.php:714 -msgid "Title/Description" -msgstr "Titel/Beschreibung" +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 +msgid "status" +msgstr "Status" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Straße und Hausnummer" +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Wohnort" +#: ../../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 gefällt %2$ss %3$s nicht" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Region/Bundesstaat" +#: ../../Zotlabs/Module/Like.php:424 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s stimmt %2$ss %3$s zu" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "Postleitzahl" +#: ../../Zotlabs/Module/Like.php:426 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s lehnt %2$ss %3$s ab" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "Land" +#: ../../Zotlabs/Module/Like.php:428 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s enthält sich zu %2$ss %3$s" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Wer (falls anwendbar)" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" - -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "Seit (Datum)" +#: ../../Zotlabs/Module/Like.php:430 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Erzähle uns ein wenig von Dir" +#: ../../Zotlabs/Module/Like.php:432 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s nicht teil" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Heimatort" +#: ../../Zotlabs/Module/Like.php:434 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Politische Ansichten" +#: ../../Zotlabs/Module/Like.php:537 +msgid "Action completed." +msgstr "Aktion durchgeführt." -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Religiöse Ansichten" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Thank you." +msgstr "Vielen Dank." -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Schlüsselwörter, die in Verzeichnis-Auflistungen verwendet werden" +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Import abgeschlossen" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Beispiel: Angeln Fotografie Software" +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Beiträge importieren" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Musikalische Interessen" +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren." -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Bücher, Literatur" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Einladungslimit überschritten." -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Fernsehen" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Keine gültige Email Adresse." -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film/Tanz/Kultur/Unterhaltung" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Schließe Dich uns auf $Projectname an!" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobbys/Interessen" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Liebe/Romantik" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Nachricht konnte nicht zugestellt werden." -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Schule/Ausbildung" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Kontaktinformation und soziale Netzwerke" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren verfügbare Einladungen" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Meine anderen Kanäle" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Einladungen senden" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 -msgid "Profile Image" -msgstr "Profilfoto:" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Email-Adressen eintragen, eine pro Zeile:" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 -msgid "Edit Profiles" -msgstr "Profile bearbeiten" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Deine Nachricht:" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Dein Vertrag erlaubt nur %d Kanäle." +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Schließe Dich uns auf $Projectname an!" -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Nichts zu importieren." +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Bitte verwende bei der Registrierung den folgenden Einladungscode:" -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Daten können vom alten Server nicht heruntergeladen werden" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Die importierte Datei ist leer." +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "oder besuche" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klicke auf [Verbinden]" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Kein Kanal. Import fehlgeschlagen." +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import abgeschlossen." +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Sichtbar für:" -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Klon nicht gefunden." -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Kanal importieren" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Locs.php:66 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 "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." +"Please select another location to become primary before removing the primary" +" location." +msgstr "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst." -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Hochzuladende Datei:" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Synchronisiere Klone" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Oder gib die Details Deines bisherigen $Projectname-Hubs ein" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Keine Klon-Adressen gefunden." -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Bisherige Kanal-Adresse (xyz@example.com)" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Klon-Adressen verwalten" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Deine alte Login-E-Mail-Adresse" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adresse" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Dein altes Passwort" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primär" -#: ../../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" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige $Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Löschen" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Dieser $Pojectname-Hub ist mein primärer Hub." +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Jetzt synchronisieren" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!" -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Module/Locs.php:124 msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst." -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt." -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Server nicht gefunden." -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Konnte den Empfänger nicht finden." -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." - -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Doppelter Beitrag unterdrückt." +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." +#: ../../Zotlabs/Module/Mail.php:78 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." +#: ../../Zotlabs/Module/Mail.php:143 +msgid "Messages" +msgstr "Nachrichten" -#: ../../Zotlabs/Module/Item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Nachricht widerrufen." -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verfällt YYYY-MM-DD HH;MM" -#: ../../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 "Profilfotos" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "Angeforderter Kanal ist nicht in diesem Netzwerk." -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album nicht gefunden." +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Private Nachricht senden" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Album löschen" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "An:" -#: ../../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 "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager" +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Betreff:" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Foto löschen" +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Datei anhängen" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Absenden" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Verfallsdatum" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "Nachricht löschen" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Zustellungsbericht" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Fotos hochladen" +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Nachricht widerrufen" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Namen für ein neues Album eingeben" +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "Die Nachricht wurde widerrufen." -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Unterhaltung löschen" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Einen Statusbeitrag für diesen Upload erzeugen" +#: ../../Zotlabs/Module/Mail.php:363 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Beschriftung (optional):" +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Send Reply" +msgstr "Antwort senden" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Beschreibung (optional):" +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Deine Nachricht für %s (%s):" -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Neuen Kanal anlegen" -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Neueste zuerst anzeigen" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Kanal-Manager" -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Älteste zuerst anzeigen" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Aktueller Kanal" -#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 -msgid "View Photo" -msgstr "Foto ansehen" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Album bearbeiten" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Standard Kanal" -#: ../../Zotlabs/Module/Photos.php:868 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Zum Standard machen" -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d neue Nachrichten" -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d neue Vorstellungen" -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Als Titelbild verwenden" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Delegierte Kanäle" -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Privates Foto" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Entfernen" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Nutzer (%s)" -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Foto bearbeiten" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Passwort-Rücksetzung auf %s angefordert" -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Zurücksetzen des Kennworts" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Gib einen Namen für ein neues Album ein" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie angefordert neu erstellt." -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Bildunterschrift" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort – und dann" -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "Klicke hier, um dich anzumelden" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "In der Albumansicht als nicht jugendfrei markieren" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Mir gefällt das (Umschalter)" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Kennwort vergessen?" -#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Mir gefällt das nicht (Umschalter)" +#: ../../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 "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Bitte warten" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-Mail Adresse" -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Das bist Du" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Zurücksetzen" -#: ../../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/Menu.php:49 +msgid "Unable to update menu." +msgstr "Kann Menü nicht aktualisieren." -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Gefällt mir" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Gefällt mir nicht" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "Zustimmungen" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Kann Menü nicht erstellen." -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Ablehnungen" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Name des Menüs" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Enthaltungen" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Zusagen" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menütitel" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Absagen" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Vielleicht" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Lesezeichen erlauben" -#: ../../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 "Alles anzeigen" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" -#: ../../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] "Gefällt mir" -msgstr[1] "Gefällt mir" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Absenden und fortfahren" -#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1765 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Gefällt nicht" -msgstr[1] "Gefällt nicht" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menüs" -#: ../../Zotlabs/Module/Photos.php:1233 -msgid "Photo Tools" -msgstr "Fotowerkzeuge" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Lesezeichen erlaubt" -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Karte" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Gefällt mir" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Gefällt nicht" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menü konnte nicht gelöscht werden." -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Schließen" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menü nicht gefunden" -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Album ansehen" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menü bearbeiten" -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Neueste Fotos" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Menü Name" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Sichtbar für:" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Import abgeschlossen" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Menü Titel" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Beiträge importieren" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Menü Titel wie er von anderen gesehen wird" -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren." +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Einladungslimit überschritten." +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Nicht gefunden." -#: ../../Zotlabs/Module/Invite.php:53 +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Keine gültige Email Adresse." +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s ist %2$s" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Schließe Dich uns auf $Projectname an!" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Laune" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "interessiert sich für:" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Einladungen senden" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Keine Übereinstimmungen" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Gruppe nicht gefunden" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Deine Nachricht:" +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Kanal nicht gefunden" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Schließe Dich uns auf $Projectname an!" +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "Forum" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Bitte verwende bei der Registrierung den folgenden Einladungscode:" +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Gruppe ist leer" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Gruppe:" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "oder besuche" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Keine System-Benachrichtigungen mehr." -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Klon nicht gefunden." +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "System-Benachrichtigungen" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Element konnte nicht erstellt werden." -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst." +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Kann Menü-Element nicht aktualisieren." -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Synchronisiere Klone" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Kann Menü-Bestandteil nicht hinzufügen." -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Keine Klon-Adressen gefunden." +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Klon-Adressen verwalten" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primär" +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Name des Links" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Löschen" +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Ziel des Links oder Untermenüs" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Jetzt synchronisieren" +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!" +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Magic-Auth verwenden, falls verfügbar" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst." +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Server nicht gefunden." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Konnte den Empfänger nicht finden." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Absenden und fertigstellen" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Absenden und fortfahren" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menü:" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Ziel des Links" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Nachrichten" +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Menü bearbeiten" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Nachricht widerrufen." +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Bestandteil löschen" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verfällt YYYY-MM-DD HH;MM" +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Neues Bestandteil" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Angeforderter Kanal ist nicht in diesem Netzwerk." +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Private Nachricht senden" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "An:" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Betreff:" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Datei anhängen" +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Absenden" +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Verfallsdatum" +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Nachricht löschen" +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Zustellungsbericht" +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Link Text" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Nachricht widerrufen" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Name oder Titel" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Die Nachricht wurde widerrufen." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Unterhaltung löschen" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Wähle einen kurzen Spitznamen" -#: ../../Zotlabs/Module/Mail.php:355 +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s" -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Antwort senden" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Kanaltyp und Privatspäre-Einstellungen" -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Deine Nachricht für %s (%s):" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre." -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Mehr Informationen über Rollen" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Neuen Kanal anlegen" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Einen neuen Kanal anlegen" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Kanal-Manager" +#: ../../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 "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen." -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Aktueller Kanal" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ungültiger Anfrage-Identifikator." -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Standard Kanal" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Verwerfen" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Zum Standard machen" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Markiere alle System-Benachrichtigungen als gesehen" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d neue Nachrichten" +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d neue Vorstellungen" +#: ../../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 "Profilfotos" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Delegierte Kanäle" +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Album nicht gefunden." -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Kann Menü nicht aktualisieren." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Kann Menü nicht erstellen." +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Album löschen" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Name des Menüs" +#: ../../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 "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Foto löschen" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menütitel" +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Lesezeichen erlauben" +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Absenden und fortfahren" +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Fotos hochladen" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menüs" +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Namen für ein neues Album eingeben" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Lesezeichen erlaubt" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Einen Statusbeitrag für diesen Upload erzeugen" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Beschriftung (optional):" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Beschreibung (optional):" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menü konnte nicht gelöscht werden." +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menü nicht gefunden" +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Menü bearbeiten" +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Neueste zuerst anzeigen" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Älteste zuerst anzeigen" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Menü Name" +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Foto ansehen" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Album bearbeiten" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Menü Titel" +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Menü Titel wie er von anderen gesehen wird" +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Nicht gefunden." +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Als Titelbild verwenden" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Privates Foto" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Entfernen" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Foto bearbeiten" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Gib einen Namen für ein neues Album ein" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort – und dann" +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Bildunterschrift" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "Klicke hier, um dich anzumelden" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "In der Albumansicht als nicht jugendfrei markieren" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Mir gefällt das (Umschalter)" -#: ../../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 "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Mir gefällt das nicht (Umschalter)" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-Mail Adresse" +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Bitte warten" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Zurücksetzen" +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Das bist Du" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s ist %2$s" +#: ../../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/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Laune" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Gefällt mir" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "Gefällt mir nicht" -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Gruppe nicht gefunden" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "Zustimmungen" -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Kanal nicht gefunden" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Ablehnungen" -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "Forum" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Enthaltungen" -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Zusagen" -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "Gruppe ist leer" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Absagen" -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Gruppe:" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Vielleicht" -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." +#: ../../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 "Alles anzeigen" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Keine System-Benachrichtigungen mehr." +#: ../../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] "Gefällt mir" +msgstr[1] "Gefällt mir" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "System-Benachrichtigungen" +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Gefällt nicht" +msgstr[1] "Gefällt nicht" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "Fotowerkzeuge" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessiert sich für:" +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Karte" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Keine Übereinstimmungen" +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Gefällt mir" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Beiträge und Kommentare" +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Gefällt nicht" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Nur Beiträge" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Schließen" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Album ansehen" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Element konnte nicht erstellt werden." +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Neueste Fotos" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "hat Dir eine private Nachricht geschickt" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "l, d. F, G:i \\U\\h\\r" -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[Heute]" -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Name des Links" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "hat einen Termin veröffentlicht" -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Ziel des Links oder Untermenüs" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Konnte Deinen Server nicht finden." -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Veröffentlichung erfolgreich." -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Magic-Auth verwenden, falls verfügbar" +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Login fehlgeschlagen." -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" +#: ../../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/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Absenden und fertigstellen" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Konfigurationseditor" -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Absenden und fortfahren" +#: ../../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 "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menü:" +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Layout aktualisiert." -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Ziel des Links" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Systemseitenbeschreibung bearbeiten" -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Menü bearbeiten" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Layout nicht gefunden." -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Modulname:" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Bestandteil löschen" +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Layout-Hilfe" -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Neues Bestandteil" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Anstupsen" -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Jemanden anstupsen" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Jemanden anstupsen, knuffen oder sonstiges" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Empfänger" -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" +#: ../../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 nicht gefunden." -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Link Text" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profil gelöscht." -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Theme-Einstellungen aktualisiert." +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profil-" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "Anzahl der Konten" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Neues Profil erstellt." -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "Anzahl der blockierten Konten" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Profil kann nicht geklont werden." -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "Anzahl der abgelaufenen Konten" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Dieses Profil kann nicht exportiert werden." -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "Anzahl der ablaufenden Konten" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Profil-Name erforderlich." -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "Anzahl der Kanäle" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Familienstand" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "Anzahl der primären Kanäle" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Romantische Partner" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "Anzahl der Klone" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Gefällt" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Gefällt nicht" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Die installierte Software sollte aktualisiert werden" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Arbeit/Anstellung" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" -msgstr "Administration" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religion" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Zusammenfassung" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Politische Ansichten" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Registrierte Konten" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Sexuelle Orientierung" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "Ausstehende Registrierungen" +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Webseite" -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Registrierte Kanäle" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Hobbys/Interessen" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" -msgstr "Aktive Plug-Ins" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profil aktualisiert." -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Version" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Deine Verbindungen vor Betrachtern dieses Profils verbergen" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Repository-Version (master)" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Bearbeite Profil-Details" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Repository-Version (dev)" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Dieses Profil ansehen" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Site-Einstellungen aktualisiert." +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:959 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 -msgid "Default" -msgstr "Standard" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Profilwerkzeuge" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 -msgid "mobile" -msgstr "mobil" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Titelbild ändern" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "experimentell" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +msgid "Change profile photo" +msgstr "Profilfoto ändern" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "nicht unterstützt" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Ja - mit Zustimmung" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Dieses Profil klonen" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "Mein Server ist kein öffentlicher Server" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Dieses Profil löschen" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "Meine Seite hat nur bezahlten Zugriff" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Sachen zum Profil hinzufügen" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "Meine Seite hat nur freien Zugriff" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 +msgid "Personal" +msgstr "Persönlich" -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Beziehung" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 -msgid "Site" -msgstr "Seite" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Verschiedenes" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Registrierung" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Profil aus einer Datei importieren" -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" -msgstr "Dateiupload" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Profil in eine Datei exportieren" -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" -msgstr "Richtlinien" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Dein Geschlecht" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Fortgeschritten" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Familienstand" -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" -msgstr "Seitenname" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Sexuelle Orientierung" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" -msgstr "Banner/Logo" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Profilname" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" -msgstr "Administrator-Informationen" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Das ist Dein Standardprofil." -#: ../../Zotlabs/Module/Admin.php:502 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Dein voller Name" -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "System-Sprache" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Titel/Beschreibung" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "System-Theme" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Straße und Hausnummer" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Wohnort" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" -msgstr "Mobile System-Theme:" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Region/Bundesstaat" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" -msgstr "Theme für mobile Geräte" - -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" -msgstr "Feeds als Verbindungen erlauben" - -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" -msgstr "(führt zu hoher Systemlast)" - -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" - -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." - -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" -msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" - -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" -msgstr "Nur mit Einladung" - -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden." - -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" - -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" -msgstr "Registrierungstext" - -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "Postleitzahl" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "Land" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Wer (falls anwendbar)" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" -msgstr "Homepage-URL schützen" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "Seit (Datum)" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" -msgstr "Konten gelten nach X Tagen als unbenutzt" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Erzähle uns ein wenig von Dir" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Heimatort" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Politische Ansichten" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Religiöse Ansichten" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Schlüsselwörter, die in Verzeichnis-Auflistungen verwendet werden" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Beispiel: Angeln Fotografie Software" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" -msgstr "Nicht erlaubte Domains für E-Mails" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Musikalische Interessen" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde." +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Bücher, Literatur" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" -msgstr "E-Mail-Adressen überprüfen" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Fernsehen" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film/Tanz/Kultur/Unterhaltung" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" -msgstr "Veröffentlichung erzwingen" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobbys/Interessen" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Liebe/Romantik" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" -msgstr "Öffentliche Beiträge importieren" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "Schule/Ausbildung" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert." +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Kontaktinformation und soziale Netzwerke" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" -msgstr "Log-in auf der Startseite" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Meine anderen Kanäle" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +msgid "Profile Image" +msgstr "Profilfoto:" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" -msgstr "Kontext-Hilfe aktivieren" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 +#: ../../include/channel.php:937 +msgid "Edit Profiles" +msgstr "Profile bearbeiten" -#: ../../Zotlabs/Module/Admin.php:523 +#: ../../Zotlabs/Module/Profile_photo.php:179 msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird." - -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" -msgstr "Verzeichnisserver-URL" - -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" -msgstr "Standard-Verzeichnisserver" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" -msgstr "Proxy Benutzer" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Lade neues Profilfoto hoch" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" -msgstr "Proxy URL" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Identifikator" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" -msgstr "Netzwerk-Timeout" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Profil-Sichtbarkeits-Editor" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profil" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" -msgstr "Auslieferung Intervall" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Sichtbar für" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" -msgstr "Zustellungen pro Prozess" +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Öffentliche Hubs" -#: ../../Zotlabs/Module/Admin.php:531 +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5." - -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" -msgstr "Abfrageintervall" - -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." - -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" -msgstr "Maximales Load Average" - -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen" - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" -msgstr "0 = keine Löschung importierter Inhalte" - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "Off" -msgstr "Aus" - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "On" -msgstr "An" - -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" -msgstr "Blockiere die Funktion %s" - -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" -msgstr "Zusätzliche Funktionen verwalten" - -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" -msgstr "Kein Server gefunden" - -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" -msgstr "ID" - -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" -msgstr "für Kanal" - -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" -msgstr "auf Server" - -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" -msgstr "Server" - -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher." - -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:" - -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" - -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert." - -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 -msgid "Security" -msgstr "Sicherheit" - -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" - -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist." - -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Setze den \"Transport Security\" HTTP Header" - -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Setze den \"Content Security Policy\" HTTP Header" - -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" -msgstr "Kommunikation nur von diesen Seiten erlauben" - -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben." - -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" -msgstr "Kommunikation von diesen Seiten blockieren" - -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" -msgstr "Kommunikation nur von diesen Kanälen erlauben" - -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. " - -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" -msgstr "Kommunikation von folgenden Kanälen blockieren" - -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links." - -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains" - -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." -msgstr "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert." - -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" -msgstr "Eingebettete HTML Inhalte von diesen Seiten blockieren" - -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" - -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." - -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s wurde erfolgreich ausgeführt." - -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." - -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-Funktion %s konnte nicht gefunden werden." - -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Aktualisierungen." - -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Aktualisierungen" - -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" - -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" -msgstr "Versuche, diesen Updateschritt automatisch auszuführen" - -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" -msgstr "Warteschlangenstatistiken" - -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" -msgstr "Einträge insgesamt" - -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" -msgstr "Priorität" - -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" -msgstr "Ziel-URL" - -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" -msgstr "Hub als permanent offline markieren" - -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" -msgstr "Warteschlange für diesen Hub leeren" - -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" -msgstr "Letzter Kontakt" - -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s Konto blockiert/freigegeben" -msgstr[1] "%s Konten blockiert/freigegeben" - -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s Konto gelöscht" -msgstr[1] "%s Konten gelöscht" - -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "Konto nicht gefunden" - -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "Konto '%s' gelöscht" - -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "Konto '%s' blockiert" - -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Konto '%s' freigegeben" - -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 -msgid "Accounts" -msgstr "Konten" - -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "Alle auswählen" - -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" -msgstr "Registrierungen warten auf Bestätigung" - -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "Antragsdatum" - -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "Keine Registrierungen." - -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "Verweigern" - -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" -msgstr "Alle Kanäle" - -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" -msgstr "Registrierungs-Datum" - -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" -msgstr "Letzte Anmeldung" - -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" -msgstr "Verfällt" - -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" -msgstr "Service-Klasse" - -#: ../../Zotlabs/Module/Admin.php:1054 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?" - -#: ../../Zotlabs/Module/Admin.php:1055 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" - -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s Kanal gesperrt/freigegeben" -msgstr[1] "%s Kanäle gesperrt/freigegeben" - -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "Code für %s Kanal gesperrt/freigegeben" -msgstr[1] "Code für %s Kanäle gesperrt/freigegeben" - -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s Kanal gelöscht" -msgstr[1] "%s Kanäle gelöscht" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im $Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen." -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "Kanal nicht gefunden" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Hub-URL" -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanal '%s' gelöscht" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Zugriffstyp" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanal '%s' gesperrt" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Registrierungsrichtlinien" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' freigegeben" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Statistiken" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Code für Kanal '%s' freigegeben" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Code für Kanal '%s' gesperrt" +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Bewertungen" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 -msgid "Channels" -msgstr "Kanäle" +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Bewerten" -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" -msgstr "Sperren" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Webseite:" -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" -msgstr "Freigeben" +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" -msgstr "Code erlauben" +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Bewertung (öffentlich sichtbar)" -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" -msgstr "Code sperren" +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 -msgid "Channel" -msgstr "Kanal" +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Keine Bewertungen" -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Bewertung: " -#: ../../Zotlabs/Module/Admin.php:1226 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Webseite: " -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Beschreibung: " -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-In %s deaktiviert." +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." +msgstr "Theme-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plug-In %s aktiviert." +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" +msgstr "Anzahl der Konten" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" -msgstr "Deaktivieren" +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" +msgstr "Anzahl der blockierten Konten" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" -msgstr "Aktivieren" +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" +msgstr "Anzahl der abgelaufenen Konten" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 -msgid "Plugins" -msgstr "Plug-Ins" +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" +msgstr "Anzahl der ablaufenden Konten" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" -msgstr "Umschalten" +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" +msgstr "Anzahl der Kanäle" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 -msgid "Settings" -msgstr "Einstellungen" +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" +msgstr "Anzahl der primären Kanäle" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " -msgstr "Autor: " +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" +msgstr "Anzahl der Klone" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " -msgstr "Betreuer:" +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " -msgstr "Minimale Version des Projekts:" +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" +msgstr "Die installierte Software sollte aktualisiert werden" -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " -msgstr "Maximale Version des Projekts:" +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 +#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 +#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 +#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 +#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 +#: ../../Zotlabs/Module/Admin.php:1731 +msgid "Administration" +msgstr "Administration" -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " -msgstr "Minimale PHP Version:" +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" +msgstr "Zusammenfassung" -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " -msgstr "Benötigt:" +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" +msgstr "Registrierte Konten" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" -msgstr "Abgeschaltet - Versionsinkompatibilität" +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +msgid "Pending registrations" +msgstr "Ausstehende Registrierungen" -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Gib die öffentliche Git-Repository-URL des Plugin-Repository an." +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" +msgstr "Registrierte Kanäle" -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" -msgstr "Plugin-Repository Git URL" +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +msgid "Active plugins" +msgstr "Aktive Plug-Ins" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" -msgstr "Benutzerdefinierter Repository-Name" +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" +msgstr "Version" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" -msgstr "(optional)" +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" +msgstr "Repository-Version (master)" -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" -msgstr "Plugin-Repository herunterladen" +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" +msgstr "Repository-Version (dev)" -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" -msgstr "Neues Repository installieren" +#: ../../Zotlabs/Module/Admin.php:373 +msgid "Site settings updated." +msgstr "Site-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Installieren" +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +msgid "Default" +msgstr "Standard" -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" -msgstr "Repositorien verwalten" +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +msgid "mobile" +msgstr "mobil" -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" -msgstr "Installierte Plugin-Repositorien" +#: ../../Zotlabs/Module/Admin.php:412 +msgid "experimental" +msgstr "experimentell" -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" -msgstr "Ein neues Plugin-Repository installieren" +#: ../../Zotlabs/Module/Admin.php:414 +msgid "unsupported" +msgstr "nicht unterstützt" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "Aktualisieren" +#: ../../Zotlabs/Module/Admin.php:460 +msgid "Yes - with approval" +msgstr "Ja - mit Zustimmung" + +#: ../../Zotlabs/Module/Admin.php:466 +msgid "My site is not a public server" +msgstr "Mein Server ist kein öffentlicher Server" -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" -msgstr "Zweig/Branch wechseln" +#: ../../Zotlabs/Module/Admin.php:467 +msgid "My site has paid access only" +msgstr "Meine Seite hat nur bezahlten Zugriff" -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." -msgstr "Keine Theme gefunden." +#: ../../Zotlabs/Module/Admin.php:468 +msgid "My site has free access only" +msgstr "Meine Seite hat nur freien Zugriff" -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" -msgstr "Bildschirmfoto" +#: ../../Zotlabs/Module/Admin.php:469 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 -msgid "Themes" -msgstr "Themes" +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +msgid "Site" +msgstr "Seite" -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" -msgstr "[Experimentell]" +#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 +msgid "Registration" +msgstr "Registrierung" -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" +#: ../../Zotlabs/Module/Admin.php:494 +msgid "File upload" +msgstr "Dateiupload" -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." -msgstr "Protokoll-Einstellungen aktualisiert." +#: ../../Zotlabs/Module/Admin.php:495 +msgid "Policies" +msgstr "Richtlinien" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 -msgid "Logs" -msgstr "Protokolle" +#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Fortgeschritten" -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" -msgstr "Leeren" +#: ../../Zotlabs/Module/Admin.php:500 +msgid "Site name" +msgstr "Seitenname" -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" -msgstr "Debugging" +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Banner/Logo" +msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" -msgstr "Protokolldatei" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "Administrator Information" +msgstr "Administrator-Informationen" -#: ../../Zotlabs/Module/Admin.php:1741 +#: ../../Zotlabs/Module/Admin.php:502 msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis." - -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "Protokollstufe" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "Neues Profilfeld" +#: ../../Zotlabs/Module/Admin.php:503 +msgid "System language" +msgstr "System-Sprache" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "Kurzname für das Feld" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "System theme" +msgstr "System-Theme" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "Systemname des Feldes" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "Art des Inhalts" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Mobile system theme" +msgstr "Mobile System-Theme:" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "Feldname" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Theme for mobile devices" +msgstr "Theme für mobile Geräte" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" -msgstr "Bezeichnung auf Profilseiten" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "Allow Feeds as Connections" +msgstr "Feeds als Verbindungen erlauben" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" -msgstr "Hilfetext" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "(Heavy system resource usage)" +msgstr "(führt zu hoher Systemlast)" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" -msgstr "Zusätzliche Informationen (optional)" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" -msgstr "Feld-Definition nicht gefunden" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" -msgstr "Profilfeld bearbeiten" +#: ../../Zotlabs/Module/Admin.php:509 +msgid "Does this site allow new member registration?" +msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 -msgid "Profile Fields" -msgstr "Profil Felder" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Invitation only" +msgstr "Nur mit Einladung" -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" -msgstr "Notwendige Profil Felder" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden." -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" -msgstr "Erweiterte Profil Felder" +#: ../../Zotlabs/Module/Admin.php:511 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" -msgstr "(zusätzlich zu notwendige Felder)" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Register text" +msgstr "Registrierungstext" -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" -msgstr "Alle verfügbaren Felder" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" -msgstr "Benutzerdefinierte Felder" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" -msgstr "Erstelle benutzerdefiniertes Feld" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Name oder Titel" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Preserve site homepage URL" +msgstr "Homepage-URL schützen" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " +#: ../../Zotlabs/Module/Admin.php:514 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Wähle einen kurzen Spitznamen" +#: ../../Zotlabs/Module/Admin.php:515 +msgid "Accounts abandoned after x days" +msgstr "Konten gelten nach X Tagen als unbenutzt" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format +#: ../../Zotlabs/Module/Admin.php:515 msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanaltyp und Privatspäre-Einstellungen" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre." +#: ../../Zotlabs/Module/Admin.php:516 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Mehr Informationen über Rollen" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Einen neuen Kanal anlegen" +#: ../../Zotlabs/Module/Admin.php:517 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" -#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Admin.php:517 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 "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen." +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Not allowed email domains" +msgstr "Nicht erlaubte Domains für E-Mails" + +#: ../../Zotlabs/Module/Admin.php:518 msgid "" -"or import an existing channel from another location." -msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde." -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "hat Dir eine private Nachricht geschickt" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "Verify Email Addresses" +msgstr "E-Mail-Adressen überprüfen" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "l, d. F, G:i \\U\\h\\r" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Force publish" +msgstr "Veröffentlichung erzwingen" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[Heute]" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "hat einen Termin veröffentlicht" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Import Public Streams" +msgstr "Öffentliche Beiträge importieren" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ungültiger Anfrage-Identifikator." +#: ../../Zotlabs/Module/Admin.php:521 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert." -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Verwerfen" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Login on Homepage" +msgstr "Log-in auf der Startseite" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Anstupsen" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Enable context help" +msgstr "Kontext-Hilfe aktivieren" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Jemanden anstupsen" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird." -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Directory Server URL" +msgstr "Verzeichnisserver-URL" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Jemanden anstupsen, knuffen oder sonstiges" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Default directory server" +msgstr "Standard-Verzeichnisserver" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Empfänger" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Proxy user" +msgstr "Proxy Benutzer" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Proxy URL" +msgstr "Proxy URL" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Network timeout" +msgstr "Netzwerk-Timeout" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Konnte Deinen Server nicht finden." +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Veröffentlichung erfolgreich." +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Delivery interval" +msgstr "Auslieferung Intervall" -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." +#: ../../Zotlabs/Module/Admin.php:530 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Login fehlgeschlagen." +#: ../../Zotlabs/Module/Admin.php:531 +msgid "Deliveries per process" +msgstr "Zustellungen pro Prozess" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" +#: ../../Zotlabs/Module/Admin.php:531 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5." -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Poll interval" +msgstr "Abfrageintervall" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profil" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." +#: ../../Zotlabs/Module/Admin.php:533 +msgid "Maximum Load Average" +msgstr "Maximales Load Average" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Sichtbar für" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." +#: ../../Zotlabs/Module/Admin.php:534 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Konfigurationseditor" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "0 for no expiration of imported content" +msgstr "0 = keine Löschung importierter Inhalte" -#: ../../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 "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "Off" +msgstr "Aus" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "On" +msgstr "An" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Admin.php:678 #, php-format -msgid "Version %s" -msgstr "Version %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Addons/Apps" +msgid "Lock feature %s" +msgstr "Blockiere die Funktion %s" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Keine installierten Plugins/Addons/Apps" +#: ../../Zotlabs/Module/Admin.php:686 +msgid "Manage Additional Features" +msgstr "Zusätzliche Funktionen verwalten" -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." +#: ../../Zotlabs/Module/Admin.php:703 +msgid "No server found" +msgstr "Kein Server gefunden" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Schlagwort: " +#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +msgid "ID" +msgstr "ID" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Letzter Hintergrundabruf:" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "for channel" +msgstr "für Kanal" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Aktuelles Load Average:" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "on server" +msgstr "auf Server" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Erreichbar unter der Web-Adresse" +#: ../../Zotlabs/Module/Admin.php:712 +msgid "Server" +msgstr "Server" -#: ../../Zotlabs/Module/Siteinfo.php:59 +#: ../../Zotlabs/Module/Admin.php:746 msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bitte besuchen Sie hubzilla.org, um mehr über $Projectname zu erfahren." +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher." -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: ../../Zotlabs/Module/Admin.php:749 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "$projectname-Bugtracker" +#: ../../Zotlabs/Module/Admin.php:750 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" +msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" -#: ../../Zotlabs/Module/Siteinfo.php:63 +#: ../../Zotlabs/Module/Admin.php:751 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert." -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Administratoren" +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +msgid "Security" +msgstr "Sicherheit" -#: ../../Zotlabs/Module/Rmagic.php:44 +#: ../../Zotlabs/Module/Admin.php:758 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" + +#: ../../Zotlabs/Module/Admin.php:758 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist." -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" +#: ../../Zotlabs/Module/Admin.php:759 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Setze den \"Transport Security\" HTTP Header" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." +#: ../../Zotlabs/Module/Admin.php:760 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Setze den \"Content Security Policy\" HTTP Header" -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "Allow communications only from these sites" +msgstr "Kommunikation nur von diesen Seiten erlauben" -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben." -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authentifizieren" +#: ../../Zotlabs/Module/Admin.php:762 +msgid "Block communications from these sites" +msgstr "Kommunikation von diesen Seiten blockieren" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Öffentliche Hubs" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "Allow communications only from these channels" +msgstr "Kommunikation nur von diesen Kanälen erlauben" -#: ../../Zotlabs/Module/Pubsites.php:25 +#: ../../Zotlabs/Module/Admin.php:763 msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im $Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Hub-URL" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. " -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Zugriffstyp" +#: ../../Zotlabs/Module/Admin.php:764 +msgid "Block communications from these channels" +msgstr "Kommunikation von folgenden Kanälen blockieren" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Registrierungsrichtlinien" +#: ../../Zotlabs/Module/Admin.php:765 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links." -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistiken" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "One site per line. By default embedded content is filtered." +msgstr "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert." -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Bewertungen" +#: ../../Zotlabs/Module/Admin.php:767 +msgid "Block embedded HTML from these domains" +msgstr "Eingebettete HTML Inhalte von diesen Seiten blockieren" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Bewerten" +#: ../../Zotlabs/Module/Admin.php:785 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." +#: ../../Zotlabs/Module/Admin.php:795 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" +#: ../../Zotlabs/Module/Admin.php:798 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s wurde erfolgreich ausgeführt." -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Block-Name" +#: ../../Zotlabs/Module/Admin.php:802 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Blöcke" +#: ../../Zotlabs/Module/Admin.php:805 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-Funktion %s konnte nicht gefunden werden." -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titel des Blocks" +#: ../../Zotlabs/Module/Admin.php:821 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Aktualisierungen." -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Webseite:" +#: ../../Zotlabs/Module/Admin.php:825 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Aktualisierungen" -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" +#: ../../Zotlabs/Module/Admin.php:827 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Bewertung (öffentlich sichtbar)" +#: ../../Zotlabs/Module/Admin.php:828 +msgid "Attempt to execute this update step automatically" +msgstr "Versuche, diesen Updateschritt automatisch auszuführen" -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" +#: ../../Zotlabs/Module/Admin.php:859 +msgid "Queue Statistics" +msgstr "Warteschlangenstatistiken" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Keine Bewertungen" +#: ../../Zotlabs/Module/Admin.php:860 +msgid "Total Entries" +msgstr "Einträge insgesamt" -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Bewertung: " +#: ../../Zotlabs/Module/Admin.php:861 +msgid "Priority" +msgstr "Priorität" -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Webseite: " +#: ../../Zotlabs/Module/Admin.php:862 +msgid "Destination URL" +msgstr "Ziel-URL" -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Beschreibung: " +#: ../../Zotlabs/Module/Admin.php:863 +msgid "Mark hub permanently offline" +msgstr "Hub als permanent offline markieren" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Apps" +#: ../../Zotlabs/Module/Admin.php:864 +msgid "Empty queue for this hub" +msgstr "Warteschlange für diesen Hub leeren" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Titel (optional)" +#: ../../Zotlabs/Module/Admin.php:865 +msgid "Last known contact" +msgstr "Letzter Kontakt" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Block bearbeiten" +#: ../../Zotlabs/Module/Admin.php:901 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s Konto blockiert/freigegeben" +msgstr[1] "%s Konten blockiert/freigegeben" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Kein Kanal." +#: ../../Zotlabs/Module/Admin.php:908 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s Konto gelöscht" +msgstr[1] "%s Konten gelöscht" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Gemeinsame Verbindungen" +#: ../../Zotlabs/Module/Admin.php:944 +msgid "Account not found" +msgstr "Konto nicht gefunden" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." +#: ../../Zotlabs/Module/Admin.php:955 +#, php-format +msgid "Account '%s' deleted" +msgstr "Konto '%s' gelöscht" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Lesezeichenordner wählen" +#: ../../Zotlabs/Module/Admin.php:963 +#, php-format +msgid "Account '%s' blocked" +msgstr "Konto '%s' blockiert" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Lesezeichen speichern" +#: ../../Zotlabs/Module/Admin.php:971 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Konto '%s' freigegeben" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL des Lesezeichens" +#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 +#: ../../include/widgets.php:1383 +msgid "Accounts" +msgstr "Konten" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" +#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +msgid "select all" +msgstr "Alle auswählen" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." +#: ../../Zotlabs/Module/Admin.php:1034 +msgid "Registrations waiting for confirm" +msgstr "Registrierungen warten auf Bestätigung" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." +#: ../../Zotlabs/Module/Admin.php:1035 +msgid "Request date" +msgstr "Antragsdatum" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." +#: ../../Zotlabs/Module/Admin.php:1036 +msgid "No registrations." +msgstr "Keine Registrierungen." -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." +#: ../../Zotlabs/Module/Admin.php:1038 +msgid "Deny" +msgstr "Verweigern" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." +#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +msgid "All Channels" +msgstr "Alle Kanäle" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "Register date" +msgstr "Registrierungs-Datum" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Die Registrierung auf diesem Hub ist nicht möglich." +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Last login" +msgstr "Letzte Anmeldung" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator." +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Expires" +msgstr "Verfällt" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registriere Dich auf einem der anderen verbundenen Hubs." +#: ../../Zotlabs/Module/Admin.php:1052 +msgid "Service Class" +msgstr "Service-Klasse" -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Admin.php:1054 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?" -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Nutzungsbedingungen" +#: ../../Zotlabs/Module/Admin.php:1055 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" -#: ../../Zotlabs/Module/Register.php:221 +#: ../../Zotlabs/Module/Admin.php:1091 #, php-format -msgid "I accept the %s for this website" -msgstr "Ich akzeptiere die %s für diese Webseite" +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s Kanal gesperrt/freigegeben" +msgstr[1] "%s Kanäle gesperrt/freigegeben" -#: ../../Zotlabs/Module/Register.php:223 +#: ../../Zotlabs/Module/Admin.php:1100 #, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" - -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Ihre E-Mail Adresse" - -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Passwort" +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "Code für %s Kanal gesperrt/freigegeben" +msgstr[1] "Code für %s Kanäle gesperrt/freigegeben" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Bitte gib Dein Passwort noch einmal ein" +#: ../../Zotlabs/Module/Admin.php:1106 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s Kanal gelöscht" +msgstr[1] "%s Kanäle gelöscht" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Bitte trage Deinen Einladungs-Code ein" +#: ../../Zotlabs/Module/Admin.php:1126 +msgid "Channel not found" +msgstr "Kanal nicht gefunden" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "nein" +#: ../../Zotlabs/Module/Admin.php:1136 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanal '%s' gelöscht" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "ja" +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanal '%s' gesperrt" -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanal '%s' freigegeben" -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 -msgid "Register" -msgstr "Registrieren" +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Code für Kanal '%s' freigegeben" -#: ../../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 "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Ansenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte auf neue Mail mit entsprechenden Hinweisen." +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Code für Kanal '%s' gesperrt" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Bitte melde dich an." +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +msgid "Channels" +msgstr "Kanäle" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." +#: ../../Zotlabs/Module/Admin.php:1214 +msgid "Censor" +msgstr "Sperren" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Dieses Konto löschen" +#: ../../Zotlabs/Module/Admin.php:1215 +msgid "Uncensor" +msgstr "Freigeben" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "WARNUNG: " +#: ../../Zotlabs/Module/Admin.php:1216 +msgid "Allow Code" +msgstr "Code erlauben" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht." +#: ../../Zotlabs/Module/Admin.php:1217 +msgid "Disallow Code" +msgstr "Code sperren" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" -msgstr "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!" +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +msgid "Channel" +msgstr "Kanal" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" +#: ../../Zotlabs/Module/Admin.php:1222 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Admin.php:1226 msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Admin.php:1227 msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Standardmäßig werden nur die Kanalklone auf diesem $Projectname-Hub aus dem Netzwerk entfernt" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 -msgid "Remove Account" -msgstr "Konto entfernen" +#: ../../Zotlabs/Module/Admin.php:1284 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plug-In %s deaktiviert." -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." +#: ../../Zotlabs/Module/Admin.php:1288 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plug-In %s aktiviert." -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Diesen Kanal löschen" +#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +msgid "Disable" +msgstr "Deaktivieren" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht." +#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +msgid "Enable" +msgstr "Aktivieren" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" +#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 +#: ../../include/widgets.php:1387 +msgid "Plugins" +msgstr "Plug-Ins" -#: ../../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 "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" +#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +msgid "Toggle" +msgstr "Umschalten" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 -msgid "Remove Channel" -msgstr "Kanal löschen" +#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 +msgid "Settings" +msgstr "Einstellungen" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Kanal exportieren" +#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +msgid "Author: " +msgstr "Autor: " -#: ../../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 "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." +#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +msgid "Maintainer: " +msgstr "Betreuer:" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Kanal und Inhalte exportieren" +#: ../../Zotlabs/Module/Admin.php:1341 +msgid "Minimum project version: " +msgstr "Minimale Version des Projekts:" -#: ../../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 "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." +#: ../../Zotlabs/Module/Admin.php:1342 +msgid "Maximum project version: " +msgstr "Maximale Version des Projekts:" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exportiert die Beiträge des angegebenen Jahres." +#: ../../Zotlabs/Module/Admin.php:1343 +msgid "Minimum PHP version: " +msgstr "Minimale PHP Version:" -#: ../../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 kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne." +#: ../../Zotlabs/Module/Admin.php:1344 +msgid "Requires: " +msgstr "Benötigt:" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2$s." +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +msgid "Disabled - version incompatibility" +msgstr "Abgeschaltet - Versionsinkompatibilität" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2$s." +#: ../../Zotlabs/Module/Admin.php:1394 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Gib die öffentliche Git-Repository-URL des Plugin-Repository an." -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." +#: ../../Zotlabs/Module/Admin.php:1395 +msgid "Plugin repo git URL" +msgstr "Plugin-Repository Git URL" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" -msgstr "Beiträge mit Schlagwort: %s" +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "Custom repo name" +msgstr "Benutzerdefinierter Repository-Name" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Suchergebnisse für: %s" +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "(optional)" +msgstr "(optional)" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Keine Dienstklassenbeschränkungen gefunden." +#: ../../Zotlabs/Module/Admin.php:1397 +msgid "Download Plugin Repo" +msgstr "Plugin-Repository herunterladen" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "Name ist erforderlich" +#: ../../Zotlabs/Module/Admin.php:1404 +msgid "Install new repo" +msgstr "Neues Repository installieren" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "Schlüssel und Geheimnis werden benötigt" +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +msgid "Install" +msgstr "Installieren" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Dieser Kanal ist auf %d Token begrenzt" +#: ../../Zotlabs/Module/Admin.php:1427 +msgid "Manage Repos" +msgstr "Repositorien verwalten" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Name und Passwort sind erforderlich." +#: ../../Zotlabs/Module/Admin.php:1428 +msgid "Installed Plugin Repositories" +msgstr "Installierte Plugin-Repositorien" -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "Token gespeichert." +#: ../../Zotlabs/Module/Admin.php:1429 +msgid "Install a New Plugin Repository" +msgstr "Ein neues Plugin-Repository installieren" -#: ../../Zotlabs/Module/Settings.php:274 -msgid "Not valid email." -msgstr "Keine gültige E-Mail Adresse." +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +msgid "Update" +msgstr "Aktualisieren" -#: ../../Zotlabs/Module/Settings.php:277 -msgid "Protected email address. Cannot change to that email." -msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." +#: ../../Zotlabs/Module/Admin.php:1436 +msgid "Switch branch" +msgstr "Zweig/Branch wechseln" -#: ../../Zotlabs/Module/Settings.php:286 -msgid "System failure storing new email. Please try again." -msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." +#: ../../Zotlabs/Module/Admin.php:1550 +msgid "No themes found." +msgstr "Keine Theme gefunden." -#: ../../Zotlabs/Module/Settings.php:303 -msgid "Password verification failed." -msgstr "Passwortüberprüfung fehlgeschlagen." +#: ../../Zotlabs/Module/Admin.php:1606 +msgid "Screenshot" +msgstr "Bildschirmfoto" -#: ../../Zotlabs/Module/Settings.php:310 -msgid "Passwords do not match. Password unchanged." -msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." +#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 +#: ../../include/widgets.php:1388 +msgid "Themes" +msgstr "Themes" -#: ../../Zotlabs/Module/Settings.php:314 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." +#: ../../Zotlabs/Module/Admin.php:1652 +msgid "[Experimental]" +msgstr "[Experimentell]" -#: ../../Zotlabs/Module/Settings.php:328 -msgid "Password changed." -msgstr "Kennwort geändert." +#: ../../Zotlabs/Module/Admin.php:1653 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" -#: ../../Zotlabs/Module/Settings.php:330 -msgid "Password update failed. Please try again." -msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." +#: ../../Zotlabs/Module/Admin.php:1677 +msgid "Log settings updated." +msgstr "Protokoll-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Settings.php:579 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 +msgid "Logs" +msgstr "Protokolle" -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 -msgid "Add application" -msgstr "Anwendung hinzufügen" +#: ../../Zotlabs/Module/Admin.php:1734 +msgid "Clear" +msgstr "Leeren" -#: ../../Zotlabs/Module/Settings.php:646 -msgid "Name of application" -msgstr "Name der Anwendung" +#: ../../Zotlabs/Module/Admin.php:1740 +msgid "Debugging" +msgstr "Debugging" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "Log file" +msgstr "Protokolldatei" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis." -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../Zotlabs/Module/Admin.php:1742 +msgid "Log level" +msgstr "Protokollstufe" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 -msgid "Redirect" -msgstr "Umleitung" +#: ../../Zotlabs/Module/Admin.php:2028 +msgid "New Profile Field" +msgstr "Neues Profilfeld" -#: ../../Zotlabs/Module/Settings.php:649 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "Field nickname" +msgstr "Kurzname für das Feld" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 -msgid "Icon url" -msgstr "Symbol-URL" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "System name of field" +msgstr "Systemname des Feldes" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Optional" +#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +msgid "Input type" +msgstr "Art des Inhalts" -#: ../../Zotlabs/Module/Settings.php:661 -msgid "Application not found." -msgstr "Die Anwendung wurde nicht gefunden." +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Field Name" +msgstr "Feldname" -#: ../../Zotlabs/Module/Settings.php:704 -msgid "Connected Apps" -msgstr "Verbundene Apps" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Label on profile pages" +msgstr "Bezeichnung auf Profilseiten" -#: ../../Zotlabs/Module/Settings.php:708 -msgid "Client key starts with" -msgstr "Client Key beginnt mit" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Help text" +msgstr "Hilfetext" -#: ../../Zotlabs/Module/Settings.php:709 -msgid "No name" -msgstr "Kein Name" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Additional info (optional)" +msgstr "Zusätzliche Informationen (optional)" -#: ../../Zotlabs/Module/Settings.php:710 -msgid "Remove authorization" -msgstr "Authorisierung aufheben" +#: ../../Zotlabs/Module/Admin.php:2042 +msgid "Field definition not found" +msgstr "Feld-Definition nicht gefunden" -#: ../../Zotlabs/Module/Settings.php:723 -msgid "No feature settings configured" -msgstr "Keine Funktions-Einstellungen konfiguriert" +#: ../../Zotlabs/Module/Admin.php:2048 +msgid "Edit Profile Field" +msgstr "Profilfeld bearbeiten" -#: ../../Zotlabs/Module/Settings.php:730 -msgid "Feature/Addon Settings" -msgstr "Funktions-/Addon-Einstellungen" +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +msgid "Profile Fields" +msgstr "Profil Felder" -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Account Settings" -msgstr "Konto-Einstellungen" +#: ../../Zotlabs/Module/Admin.php:2107 +msgid "Basic Profile Fields" +msgstr "Notwendige Profil Felder" -#: ../../Zotlabs/Module/Settings.php:754 -msgid "Current Password" -msgstr "Aktuelles Passwort" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "Advanced Profile Fields" +msgstr "Erweiterte Profil Felder" -#: ../../Zotlabs/Module/Settings.php:755 -msgid "Enter New Password" -msgstr "Gib ein neues Passwort ein" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "(In addition to basic fields)" +msgstr "(zusätzlich zu notwendige Felder)" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Confirm New Password" -msgstr "Bestätige das neue Passwort" +#: ../../Zotlabs/Module/Admin.php:2110 +msgid "All available fields" +msgstr "Alle verfügbaren Felder" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Leave password fields blank unless changing" -msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" +#: ../../Zotlabs/Module/Admin.php:2111 +msgid "Custom Fields" +msgstr "Benutzerdefinierte Felder" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 -msgid "Email Address:" -msgstr "Email Adresse:" +#: ../../Zotlabs/Module/Admin.php:2115 +msgid "Create Custom Field" +msgstr "Erstelle benutzerdefiniertes Feld" -#: ../../Zotlabs/Module/Settings.php:760 -msgid "Remove this account including all its channels" -msgstr "Dieses Konto inklusive all seiner Kanäle löschen" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installiert." -#: ../../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 "Mit diesem Formular kannst Du temporäre Zugangs-IDs anlegen, um Inhalte mit Nicht-Mitgliedern zu teilen. Die IDs können in Berechtigungslisten (ACLs) verwendet werden, und Besucher können sich damit einloggen, um auf private Inhalte zuzugreifen." +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Fehlerhafte App." -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "Du kannst auch Dropbox-ähnliche Zugriffslinks an Andere weitergeben, indem du das Login-Passwort an eine entsprechende URL anhängst wie nachfolgend gezeigt. Beispiele:" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Code einbetten" -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Gastzugangstoken" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "App bearbeiten" -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "Anmeldename" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "App erstellen" -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "Anmeldepasswort" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Name der App" -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "Läuft ab (jjjj-mm-tt)" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" -#: ../../Zotlabs/Module/Settings.php:830 -msgid "Additional Features" -msgstr "Zusätzliche Funktionen" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL zum Icon" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "Connector Settings" -msgstr "Connector-Einstellungen" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" -#: ../../Zotlabs/Module/Settings.php:893 -msgid "No special theme for mobile devices" -msgstr "Keine spezielle Theme für mobile Geräte" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" -#: ../../Zotlabs/Module/Settings.php:896 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s – (experimentell)" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versions-ID" -#: ../../Zotlabs/Module/Settings.php:938 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Preis der App" -#: ../../Zotlabs/Module/Settings.php:939 -msgid "Theme Settings" -msgstr "Theme-Einstellungen" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" -#: ../../Zotlabs/Module/Settings.php:940 -msgid "Custom Theme Settings" -msgstr "Benutzerdefinierte Theme-Einstellungen" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Lesezeichenordner wählen" -#: ../../Zotlabs/Module/Settings.php:941 -msgid "Content Settings" -msgstr "Inhaltseinstellungen" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Lesezeichen speichern" -#: ../../Zotlabs/Module/Settings.php:947 -msgid "Display Theme:" -msgstr "Anzeige-Theme:" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL des Lesezeichens" -#: ../../Zotlabs/Module/Settings.php:948 -msgid "Mobile Theme:" -msgstr "Mobile Theme:" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" -#: ../../Zotlabs/Module/Settings.php:949 -msgid "Preload images before rendering the page" -msgstr "Bilder im voraus laden, bevor die Seite angezeigt wird" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Register.php:55 msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." -#: ../../Zotlabs/Module/Settings.php:950 -msgid "Enable user zoom on mobile devices" -msgstr "Zoom auf Mobilgeräten aktivieren" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Passwörter stimmen nicht überein." -#: ../../Zotlabs/Module/Settings.php:951 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." -#: ../../Zotlabs/Module/Settings.php:951 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 Sekunden, kein Maximum" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: ../../Zotlabs/Module/Settings.php:952 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." -#: ../../Zotlabs/Module/Settings.php:952 -msgid "Maximum of 100 items" -msgstr "Maximum: 100 Beiträge" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Die Registrierung auf diesem Hub ist nicht möglich." -#: ../../Zotlabs/Module/Settings.php:953 -msgid "Show emoticons (smilies) as images" -msgstr "Emoticons (Smilies) als Bilder anzeigen" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator." -#: ../../Zotlabs/Module/Settings.php:954 -msgid "Link post titles to source" -msgstr "Beitragstitel zum Originalbeitrag verlinken" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registriere Dich auf einem der anderen verbundenen Hubs." -#: ../../Zotlabs/Module/Settings.php:955 -msgid "System Page Layout Editor - (advanced)" -msgstr "System-Seitenlayout-Editor (für Experten)" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." -#: ../../Zotlabs/Module/Settings.php:958 -msgid "Use blog/list mode on channel page" -msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" +msgstr "Nutzungsbedingungen" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 -msgid "(comments displayed separately)" -msgstr "(Kommentare werden separat angezeigt)" +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ich akzeptiere die %s für diese Webseite" -#: ../../Zotlabs/Module/Settings.php:959 -msgid "Use blog/list mode on grid page" -msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden" +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" -#: ../../Zotlabs/Module/Settings.php:960 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "Ihre E-Mail Adresse" -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 -msgid "click to expand content exceeding this height" -msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" +msgstr "Passwort" -#: ../../Zotlabs/Module/Settings.php:961 -msgid "Grid page max height of content (in pixels)" -msgstr "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite" +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" +msgstr "Bitte gib Dein Passwort noch einmal ein" -#: ../../Zotlabs/Module/Settings.php:990 -msgid "Nobody except yourself" -msgstr "Niemand außer Dir selbst" +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" +msgstr "Bitte trage Deinen Einladungs-Code ein" -#: ../../Zotlabs/Module/Settings.php:991 -msgid "Only those you specifically allow" -msgstr "Nur die, denen Du es explizit erlaubst" +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" +msgstr "nein" -#: ../../Zotlabs/Module/Settings.php:992 -msgid "Approved connections" -msgstr "Angenommene Verbindungen" +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "ja" -#: ../../Zotlabs/Module/Settings.php:993 -msgid "Any connections" -msgstr "Beliebige Verbindungen" +#: ../../Zotlabs/Module/Register.php:250 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../Zotlabs/Module/Settings.php:994 -msgid "Anybody on this website" -msgstr "Jeder auf dieser Website" +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 +msgid "Register" +msgstr "Registrieren" -#: ../../Zotlabs/Module/Settings.php:995 -msgid "Anybody in this network" -msgstr "Alle $Projectname-Mitglieder" +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Fortfahren und Deinen ersten Kanal anlegen" -#: ../../Zotlabs/Module/Settings.php:996 -msgid "Anybody authenticated" -msgstr "Jeder authentifizierte" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Bitte melde dich an." -#: ../../Zotlabs/Module/Settings.php:997 -msgid "Anybody on the internet" -msgstr "Jeder im Internet" +#: ../../Zotlabs/Module/Removeaccount.php:34 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." -#: ../../Zotlabs/Module/Settings.php:1071 -msgid "Publish your default profile in the network directory" -msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" +#: ../../Zotlabs/Module/Removeaccount.php:56 +msgid "Remove This Account" +msgstr "Dieses Konto löschen" -#: ../../Zotlabs/Module/Settings.php:1076 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "WARNING: " +msgstr "WARNUNG: " -#: ../../Zotlabs/Module/Settings.php:1085 -msgid "Your channel address is" -msgstr "Deine Kanal-Adresse lautet" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht." -#: ../../Zotlabs/Module/Settings.php:1127 -msgid "Channel Settings" -msgstr "Kanal-Einstellungen" +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "This action is permanent and can not be undone!" +msgstr "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!" -#: ../../Zotlabs/Module/Settings.php:1134 -msgid "Basic Settings" -msgstr "Grundeinstellungen" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Please enter your password for verification:" +msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" + +#: ../../Zotlabs/Module/Removeaccount.php:59 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 -msgid "Full Name:" -msgstr "Voller Name:" +#: ../../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 "Standardmäßig werden nur die Kanalklone auf diesem $Projectname-Hub aus dem Netzwerk entfernt" -#: ../../Zotlabs/Module/Settings.php:1137 -msgid "Your Timezone:" -msgstr "Ihre Zeitzone:" +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 +msgid "Remove Account" +msgstr "Konto entfernen" -#: ../../Zotlabs/Module/Settings.php:1138 -msgid "Default Post Location:" -msgstr "Standardstandort:" +#: ../../Zotlabs/Module/Removeme.php:33 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." -#: ../../Zotlabs/Module/Settings.php:1138 -msgid "Geographical location to display on your posts" -msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" +#: ../../Zotlabs/Module/Removeme.php:58 +msgid "Remove This Channel" +msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Settings.php:1139 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "This channel will be completely removed from the network. " +msgstr "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht." -#: ../../Zotlabs/Module/Settings.php:1141 -msgid "Adult Content" -msgstr "Nicht jugendfreie Inhalte" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "Remove this channel and all its clones from the network" +msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" -#: ../../Zotlabs/Module/Settings.php:1143 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Datenschutz-Einstellungen" +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 +msgid "Remove Channel" +msgstr "Kanal löschen" -#: ../../Zotlabs/Module/Settings.php:1146 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" +#: ../../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 "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." -#: ../../Zotlabs/Module/Settings.php:1148 -msgid "Hide my online presence" -msgstr "Meine Online-Präsenz verbergen" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Die Fehlermeldung war:" -#: ../../Zotlabs/Module/Settings.php:1148 -msgid "Prevents displaying in your profile that you are online" -msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." -#: ../../Zotlabs/Module/Settings.php:1150 -msgid "Simple Privacy Settings:" -msgstr "Einfache Privatsphäre-Einstellungen" +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" -#: ../../Zotlabs/Module/Settings.php:1151 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" -#: ../../Zotlabs/Module/Settings.php:1152 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Authentifizieren" -#: ../../Zotlabs/Module/Settings.php:1153 -msgid "Private - default private, never open or public" -msgstr "Privat – Standard privat, nie offen oder öffentlich" +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "Beiträge mit Schlagwort: %s" -#: ../../Zotlabs/Module/Settings.php:1154 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blockiert – Alle standardmäßig blockiert" +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Suchergebnisse für: %s" -#: ../../Zotlabs/Module/Settings.php:1156 -msgid "Allow others to tag your posts" -msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Keine Dienstklassenbeschränkungen gefunden." -#: ../../Zotlabs/Module/Settings.php:1156 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" +#: ../../Zotlabs/Module/Settings.php:69 +msgid "Name is required" +msgstr "Name ist erforderlich" -#: ../../Zotlabs/Module/Settings.php:1158 -msgid "Advanced Privacy Settings" -msgstr "Fortgeschrittene Privatsphäre-Einstellungen" +#: ../../Zotlabs/Module/Settings.php:73 +msgid "Key and Secret are required" +msgstr "Schlüssel und Geheimnis werden benötigt" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "Expire other channel content after this many days" -msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" +#: ../../Zotlabs/Module/Settings.php:225 +msgid "Not valid email." +msgstr "Keine gültige E-Mail Adresse." -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "0 or blank to use the website limit." -msgstr "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden." +#: ../../Zotlabs/Module/Settings.php:228 +msgid "Protected email address. Cannot change to that email." +msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." -#: ../../Zotlabs/Module/Settings.php:1160 -#, php-format -msgid "This website expires after %d days." -msgstr "Diese Webseite läuft nach %d Tagen ab." +#: ../../Zotlabs/Module/Settings.php:237 +msgid "System failure storing new email. Please try again." +msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "This website does not expire imported content." -msgstr "Diese Webseite lässt importierte Inhalte nicht verfallen." +#: ../../Zotlabs/Module/Settings.php:254 +msgid "Password verification failed." +msgstr "Passwortüberprüfung fehlgeschlagen." -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist." +#: ../../Zotlabs/Module/Settings.php:261 +msgid "Passwords do not match. Password unchanged." +msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." -#: ../../Zotlabs/Module/Settings.php:1161 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Kontaktanfragen pro Tag:" +#: ../../Zotlabs/Module/Settings.php:265 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." -#: ../../Zotlabs/Module/Settings.php:1161 -msgid "May reduce spam activity" -msgstr "Kann die Spam-Aktivität verringern" +#: ../../Zotlabs/Module/Settings.php:279 +msgid "Password changed." +msgstr "Kennwort geändert." -#: ../../Zotlabs/Module/Settings.php:1162 -msgid "Default Post and Publish Permissions" -msgstr "Standard-Berechtigungen für Beiträge und andere Inhalte" +#: ../../Zotlabs/Module/Settings.php:281 +msgid "Password update failed. Please try again." +msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." -#: ../../Zotlabs/Module/Settings.php:1164 -msgid "Use my default audience setting for the type of object published" -msgstr "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps" +#: ../../Zotlabs/Module/Settings.php:525 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Settings.php:1167 -msgid "Channel permissions category:" -msgstr "Zugriffsrechte-Kategorie des Kanals:" +#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 +#: ../../Zotlabs/Module/Settings.php:651 +msgid "Add application" +msgstr "Anwendung hinzufügen" -#: ../../Zotlabs/Module/Settings.php:1173 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" +#: ../../Zotlabs/Module/Settings.php:592 +msgid "Name of application" +msgstr "Name der Anwendung" -#: ../../Zotlabs/Module/Settings.php:1173 -msgid "Useful to reduce spamming" -msgstr "Nützlich, um Spam zu verringern" +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../Zotlabs/Module/Settings.php:1176 -msgid "Notification Settings" -msgstr "Benachrichtigungs-Einstellungen" +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" -#: ../../Zotlabs/Module/Settings.php:1177 -msgid "By default post a status message when:" -msgstr "Sende standardmäßig Status-Nachrichten, wenn:" +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Settings.php:1178 -msgid "accepting a friend request" -msgstr "Du eine Verbindungsanfrage annimmst" +#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 +msgid "Redirect" +msgstr "Umleitung" -#: ../../Zotlabs/Module/Settings.php:1179 -msgid "joining a forum/community" -msgstr "Du einem Forum beitrittst" +#: ../../Zotlabs/Module/Settings.php:595 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" -#: ../../Zotlabs/Module/Settings.php:1180 -msgid "making an interesting profile change" -msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 +msgid "Icon url" +msgstr "Symbol-URL" -#: ../../Zotlabs/Module/Settings.php:1181 -msgid "Send a notification email when:" -msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Optional" -#: ../../Zotlabs/Module/Settings.php:1182 -msgid "You receive a connection request" -msgstr "Du eine Verbindungsanfrage erhältst" +#: ../../Zotlabs/Module/Settings.php:607 +msgid "Application not found." +msgstr "Die Anwendung wurde nicht gefunden." -#: ../../Zotlabs/Module/Settings.php:1183 -msgid "Your connections are confirmed" -msgstr "Eine Verbindung bestätigt wurde" +#: ../../Zotlabs/Module/Settings.php:650 +msgid "Connected Apps" +msgstr "Verbundene Apps" -#: ../../Zotlabs/Module/Settings.php:1184 -msgid "Someone writes on your profile wall" -msgstr "Jemand auf Deine Pinnwand schreibt" +#: ../../Zotlabs/Module/Settings.php:654 +msgid "Client key starts with" +msgstr "Client Key beginnt mit" -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Someone writes a followup comment" -msgstr "Jemand einen Beitrag kommentiert" +#: ../../Zotlabs/Module/Settings.php:655 +msgid "No name" +msgstr "Kein Name" -#: ../../Zotlabs/Module/Settings.php:1186 -msgid "You receive a private message" -msgstr "Du eine private Nachricht erhältst" +#: ../../Zotlabs/Module/Settings.php:656 +msgid "Remove authorization" +msgstr "Authorisierung aufheben" -#: ../../Zotlabs/Module/Settings.php:1187 -msgid "You receive a friend suggestion" -msgstr "Du einen Kontaktvorschlag erhältst" +#: ../../Zotlabs/Module/Settings.php:669 +msgid "No feature settings configured" +msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../Zotlabs/Module/Settings.php:1188 -msgid "You are tagged in a post" -msgstr "Du in einem Beitrag erwähnt wurdest" +#: ../../Zotlabs/Module/Settings.php:676 +msgid "Feature/Addon Settings" +msgstr "Funktions-/Addon-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1189 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Account Settings" +msgstr "Konto-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1192 -msgid "Show visual notifications including:" -msgstr "Visuelle Benachrichtigungen anzeigen für:" +#: ../../Zotlabs/Module/Settings.php:700 +msgid "Current Password" +msgstr "Aktuelles Passwort" -#: ../../Zotlabs/Module/Settings.php:1194 -msgid "Unseen grid activity" -msgstr "Ungesehene Netzwerk-Aktivität" +#: ../../Zotlabs/Module/Settings.php:701 +msgid "Enter New Password" +msgstr "Gib ein neues Passwort ein" -#: ../../Zotlabs/Module/Settings.php:1195 -msgid "Unseen channel activity" -msgstr "Ungesehene Kanal-Aktivität" +#: ../../Zotlabs/Module/Settings.php:702 +msgid "Confirm New Password" +msgstr "Bestätige das neue Passwort" -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Unseen private messages" -msgstr "Ungelesene persönliche Nachrichten" +#: ../../Zotlabs/Module/Settings.php:702 +msgid "Leave password fields blank unless changing" +msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" -#: ../../Zotlabs/Module/Settings.php:1196 -#: ../../Zotlabs/Module/Settings.php:1201 -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Settings.php:1203 -msgid "Recommended" -msgstr "Empfohlen" +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 +msgid "Email Address:" +msgstr "Email Adresse:" -#: ../../Zotlabs/Module/Settings.php:1197 -msgid "Upcoming events" -msgstr "Baldige Termine" +#: ../../Zotlabs/Module/Settings.php:706 +msgid "Remove this account including all its channels" +msgstr "Dieses Konto inklusive all seiner Kanäle löschen" -#: ../../Zotlabs/Module/Settings.php:1198 -msgid "Events today" -msgstr "Heutige Termine" +#: ../../Zotlabs/Module/Settings.php:729 +msgid "Additional Features" +msgstr "Zusätzliche Funktionen" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Upcoming birthdays" -msgstr "Baldige Geburtstage" +#: ../../Zotlabs/Module/Settings.php:753 +msgid "Connector Settings" +msgstr "Connector-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Not available in all themes" -msgstr "Nicht in allen Themes verfügbar" +#: ../../Zotlabs/Module/Settings.php:792 +msgid "No special theme for mobile devices" +msgstr "Keine spezielle Theme für mobile Geräte" + +#: ../../Zotlabs/Module/Settings.php:795 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s – (experimentell)" -#: ../../Zotlabs/Module/Settings.php:1200 -msgid "System (personal) notifications" -msgstr "System – (persönliche) Benachrichtigungen" +#: ../../Zotlabs/Module/Settings.php:837 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1201 -msgid "System info messages" -msgstr "System – Info-Nachrichten" +#: ../../Zotlabs/Module/Settings.php:838 +msgid "Theme Settings" +msgstr "Theme-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1202 -msgid "System critical alerts" -msgstr "System – kritische Warnungen" +#: ../../Zotlabs/Module/Settings.php:839 +msgid "Custom Theme Settings" +msgstr "Benutzerdefinierte Theme-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1203 -msgid "New connections" -msgstr "Neue Verbindungen" +#: ../../Zotlabs/Module/Settings.php:840 +msgid "Content Settings" +msgstr "Inhaltseinstellungen" -#: ../../Zotlabs/Module/Settings.php:1204 -msgid "System Registrations" -msgstr "System – Registrierungen" +#: ../../Zotlabs/Module/Settings.php:846 +msgid "Display Theme:" +msgstr "Anzeige-Theme:" -#: ../../Zotlabs/Module/Settings.php:1205 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen anzeigen" +#: ../../Zotlabs/Module/Settings.php:847 +msgid "Mobile Theme:" +msgstr "Mobile Theme:" -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Notify me of events this many days in advance" -msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" +#: ../../Zotlabs/Module/Settings.php:848 +msgid "Preload images before rendering the page" +msgstr "Bilder im voraus laden, bevor die Seite angezeigt wird" -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Must be greater than 0" -msgstr "Muss größer als 0 sein" +#: ../../Zotlabs/Module/Settings.php:848 +msgid "" +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird" -#: ../../Zotlabs/Module/Settings.php:1209 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Account- und Seitenart-Einstellungen" +#: ../../Zotlabs/Module/Settings.php:849 +msgid "Enable user zoom on mobile devices" +msgstr "Zoom auf Mobilgeräten aktivieren" -#: ../../Zotlabs/Module/Settings.php:1210 -msgid "Change the behaviour of this account for special situations" -msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" +#: ../../Zotlabs/Module/Settings.php:850 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../Zotlabs/Module/Settings.php:1213 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" +#: ../../Zotlabs/Module/Settings.php:850 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 Sekunden, kein Maximum" -#: ../../Zotlabs/Module/Settings.php:1214 -msgid "Miscellaneous Settings" -msgstr "Sonstige Einstellungen" +#: ../../Zotlabs/Module/Settings.php:851 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" -#: ../../Zotlabs/Module/Settings.php:1215 -msgid "Default photo upload folder" -msgstr "Voreingestellter Ordner für hochgeladene Fotos" +#: ../../Zotlabs/Module/Settings.php:851 +msgid "Maximum of 100 items" +msgstr "Maximum: 100 Beiträge" -#: ../../Zotlabs/Module/Settings.php:1215 -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "%Y - current year, %m - current month" -msgstr "%Y - aktuelles Jahr, %m - aktueller Monat" +#: ../../Zotlabs/Module/Settings.php:852 +msgid "Show emoticons (smilies) as images" +msgstr "Emoticons (Smilies) als Bilder anzeigen" -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "Default file upload folder" -msgstr "Voreingestellter Ordner für hochgeladene Dateien" +#: ../../Zotlabs/Module/Settings.php:853 +msgid "Link post titles to source" +msgstr "Beitragstitel zum Originalbeitrag verlinken" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "Personal menu to display in your channel pages" -msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" +#: ../../Zotlabs/Module/Settings.php:854 +msgid "System Page Layout Editor - (advanced)" +msgstr "System-Seitenlayout-Editor (für Experten)" -#: ../../Zotlabs/Module/Settings.php:1220 -msgid "Remove this channel." -msgstr "Diesen Kanal löschen" +#: ../../Zotlabs/Module/Settings.php:857 +msgid "Use blog/list mode on channel page" +msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" -#: ../../Zotlabs/Module/Settings.php:1221 -msgid "Firefox Share $Projectname provider" -msgstr "$Projectname-Provider für Firefox Share" +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +msgid "(comments displayed separately)" +msgstr "(Kommentare werden separat angezeigt)" -#: ../../Zotlabs/Module/Settings.php:1222 -msgid "Start calendar week on monday" -msgstr "Montag als erster Tag der Kalenderwoche" +#: ../../Zotlabs/Module/Settings.php:858 +msgid "Use blog/list mode on grid page" +msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "$Projectname Server-Einrichtung" +#: ../../Zotlabs/Module/Settings.php:859 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr "Kann nicht mit der Datenbank verbinden." +#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 +msgid "click to expand content exceeding this height" +msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." +#: ../../Zotlabs/Module/Settings.php:860 +msgid "Grid page max height of content (in pixels)" +msgstr "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "Kann Tabelle nicht erstellen." +#: ../../Zotlabs/Module/Settings.php:894 +msgid "Nobody except yourself" +msgstr "Niemand außer Dir selbst" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "Die Datenbank Deines Hubs wurde installiert." +#: ../../Zotlabs/Module/Settings.php:895 +msgid "Only those you specifically allow" +msgstr "Nur die, denen Du es explizit erlaubst" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." +#: ../../Zotlabs/Module/Settings.php:896 +msgid "Approved connections" +msgstr "Angenommene Verbindungen" -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Lies die Datei \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Settings.php:897 +msgid "Any connections" +msgstr "Beliebige Verbindungen" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "Systemprüfung" +#: ../../Zotlabs/Module/Settings.php:898 +msgid "Anybody on this website" +msgstr "Jeder auf dieser Website" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "Bitte nochmal prüfen" +#: ../../Zotlabs/Module/Settings.php:899 +msgid "Anybody in this network" +msgstr "Alle $Projectname-Mitglieder" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Datenbank Verbindung" +#: ../../Zotlabs/Module/Settings.php:900 +msgid "Anybody authenticated" +msgstr "Jeder authentifizierte" -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Um $Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." +#: ../../Zotlabs/Module/Settings.php:901 +msgid "Anybody on the internet" +msgstr "Jeder im Internet" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." +#: ../../Zotlabs/Module/Settings.php:976 +msgid "Publish your default profile in the network directory" +msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." +#: ../../Zotlabs/Module/Settings.php:981 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "Datenbank-Servername" +#: ../../Zotlabs/Module/Settings.php:990 +msgid "Your channel address is" +msgstr "Deine Kanal-Adresse lautet" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "Standard ist 127.0.0.1" +#: ../../Zotlabs/Module/Settings.php:1032 +msgid "Channel Settings" +msgstr "Kanal-Einstellungen" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Datenbank-Port" +#: ../../Zotlabs/Module/Settings.php:1039 +msgid "Basic Settings" +msgstr "Grundeinstellungen" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 +msgid "Full Name:" +msgstr "Voller Name:" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Datenbank-Benutzername" +#: ../../Zotlabs/Module/Settings.php:1042 +msgid "Your Timezone:" +msgstr "Ihre Zeitzone:" -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Datenbank-Kennwort" +#: ../../Zotlabs/Module/Settings.php:1043 +msgid "Default Post Location:" +msgstr "Standardstandort:" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Datenbank-Name" +#: ../../Zotlabs/Module/Settings.php:1043 +msgid "Geographical location to display on your posts" +msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "Datenbanktyp" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "E-Mail Adresse des Seiten-Administrators" +#: ../../Zotlabs/Module/Settings.php:1046 +msgid "Adult Content" +msgstr "Nicht jugendfreie Inhalte" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "Server-URL" +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Datenschutz-Einstellungen" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Nutze wenn möglich eine SSL-URL (https)." +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Standard-Zeitzone für Deinen Server" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Hide my online presence" +msgstr "Meine Online-Präsenz verbergen" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Seiteneinstellungen" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Prevents displaying in your profile that you are online" +msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "Erweiterte Funktionen für $Projectname aktivieren?" +#: ../../Zotlabs/Module/Settings.php:1055 +msgid "Simple Privacy Settings:" +msgstr "Einfache Privatsphäre-Einstellungen" -#: ../../Zotlabs/Module/Setup.php:347 +#: ../../Zotlabs/Module/Settings.php:1056 msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Einige erweiterte Funktionen können ungeachtet ihrer Nützlichkeit eher für eine technisch versierte Zielgruppe geeignet sein." +"Very Public - extremely permissive (should be used with caution)" +msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" + +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" + +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Private - default private, never open or public" +msgstr "Privat – Standard privat, nie offen oder öffentlich" + +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blockiert – Alle standardmäßig blockiert" + +#: ../../Zotlabs/Module/Settings.php:1061 +msgid "Allow others to tag your posts" +msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." -msgstr "PHP Version 5.5 oder höher wird benötigt." +#: ../../Zotlabs/Module/Settings.php:1061 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" -msgstr "PHP-Version" +#: ../../Zotlabs/Module/Settings.php:1063 +msgid "Advanced Privacy Settings" +msgstr "Fortgeschrittene Privatsphäre-Einstellungen" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "Expire other channel content after this many days" +msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" -#: ../../Zotlabs/Module/Setup.php:405 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "0 or blank to use the website limit." +msgstr "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden." -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" -msgstr "PHP Pfad zu ausführbarer Datei" +#: ../../Zotlabs/Module/Settings.php:1065 +#, php-format +msgid "This website expires after %d days." +msgstr "Diese Webseite läuft nach %d Tagen ab." -#: ../../Zotlabs/Module/Setup.php:409 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "This website does not expire imported content." +msgstr "Diese Webseite lässt importierte Inhalte nicht verfallen." -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" -msgstr "PHP Befehlszeile" +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist." -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Kontaktanfragen pro Tag:" -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." -msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "May reduce spam activity" +msgstr "Kann die Spam-Aktivität verringern" -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Settings.php:1067 +msgid "Default Post and Publish Permissions" +msgstr "Standard-Berechtigungen für Beiträge und andere Inhalte" -#: ../../Zotlabs/Module/Setup.php:445 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden." +#: ../../Zotlabs/Module/Settings.php:1069 +msgid "Use my default audience setting for the type of object published" +msgstr "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps" -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Du kannst diese Einstellungen in der php.ini des Servers ändern." +#: ../../Zotlabs/Module/Settings.php:1072 +msgid "Channel permissions category:" +msgstr "Zugriffsrechte-Kategorie des Kanals:" -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" -msgstr "PHP-Hochladebeschränkungen" +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" -#: ../../Zotlabs/Module/Setup.php:475 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "Useful to reduce spamming" +msgstr "Nützlich, um Spam zu verringern" -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." +#: ../../Zotlabs/Module/Settings.php:1081 +msgid "Notification Settings" +msgstr "Benachrichtigungs-Einstellungen" -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" -msgstr "Verschlüsselungsschlüssel generieren" +#: ../../Zotlabs/Module/Settings.php:1082 +msgid "By default post a status message when:" +msgstr "Sende standardmäßig Status-Nachrichten, wenn:" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" -msgstr "libCurl-PHP-Modul" +#: ../../Zotlabs/Module/Settings.php:1083 +msgid "accepting a friend request" +msgstr "Du eine Verbindungsanfrage annimmst" -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" -msgstr "GD-Grafik-PHP-Modul" +#: ../../Zotlabs/Module/Settings.php:1084 +msgid "joining a forum/community" +msgstr "Du einem Forum beitrittst" -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" -msgstr "OpenSSL-PHP-Modul" +#: ../../Zotlabs/Module/Settings.php:1085 +msgid "making an interesting profile change" +msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" -msgstr "mysqli oder postgres PHP-Modul" +#: ../../Zotlabs/Module/Settings.php:1086 +msgid "Send a notification email when:" +msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" -msgstr "mb_string-PHP-Modul" +#: ../../Zotlabs/Module/Settings.php:1087 +msgid "You receive a connection request" +msgstr "Du eine Verbindungsanfrage erhältst" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "xml PHP module" -msgstr "xml-PHP-Modul" +#: ../../Zotlabs/Module/Settings.php:1088 +msgid "Your connections are confirmed" +msgstr "Eine Verbindung bestätigt wurde" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 -msgid "Apache mod_rewrite module" -msgstr "Apache-mod_rewrite-Modul" +#: ../../Zotlabs/Module/Settings.php:1089 +msgid "Someone writes on your profile wall" +msgstr "Jemand auf Deine Pinnwand schreibt" -#: ../../Zotlabs/Module/Setup.php:500 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "Someone writes a followup comment" +msgstr "Jemand einen Beitrag kommentiert" -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "You receive a private message" +msgstr "Du eine private Nachricht erhältst" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "You receive a friend suggestion" +msgstr "Du einen Kontaktvorschlag erhältst" -#: ../../Zotlabs/Module/Setup.php:514 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings.php:1093 +msgid "You are tagged in a post" +msgstr "Du in einem Beitrag erwähnt wurdest" -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings.php:1094 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" -#: ../../Zotlabs/Module/Setup.php:522 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Show visual notifications including:" +msgstr "Visuelle Benachrichtigungen anzeigen für:" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." +#: ../../Zotlabs/Module/Settings.php:1099 +msgid "Unseen grid activity" +msgstr "Ungesehene Netzwerk-Aktivität" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings.php:1100 +msgid "Unseen channel activity" +msgstr "Ungesehene Kanal-Aktivität" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings.php:1101 +msgid "Unseen private messages" +msgstr "Ungelesene persönliche Nachrichten" -#: ../../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 "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." +#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "Recommended" +msgstr "Empfohlen" -#: ../../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 "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." +#: ../../Zotlabs/Module/Settings.php:1102 +msgid "Upcoming events" +msgstr "Baldige Termine" -#: ../../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 "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst." +#: ../../Zotlabs/Module/Settings.php:1103 +msgid "Events today" +msgstr "Heutige Termine" -#: ../../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 "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." +#: ../../Zotlabs/Module/Settings.php:1104 +msgid "Upcoming birthdays" +msgstr "Baldige Geburtstage" -#: ../../Zotlabs/Module/Setup.php:558 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php ist beschreibbar" +#: ../../Zotlabs/Module/Settings.php:1104 +msgid "Not available in all themes" +msgstr "Nicht in allen Themes verfügbar" -#: ../../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 verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." +#: ../../Zotlabs/Module/Settings.php:1105 +msgid "System (personal) notifications" +msgstr "System – (persönliche) Benachrichtigungen" -#: ../../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 "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses." +#: ../../Zotlabs/Module/Settings.php:1106 +msgid "System info messages" +msgstr "System – Info-Nachrichten" -#: ../../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 "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." +#: ../../Zotlabs/Module/Settings.php:1107 +msgid "System critical alerts" +msgstr "System – kritische Warnungen" -#: ../../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 "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält." +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "New connections" +msgstr "Neue Verbindungen" -#: ../../Zotlabs/Module/Setup.php:578 -#, php-format -msgid "%s is writable" -msgstr "%s ist beschreibbar" +#: ../../Zotlabs/Module/Settings.php:1109 +msgid "System Registrations" +msgstr "System – Registrierungen" -#: ../../Zotlabs/Module/Setup.php:594 +#: ../../Zotlabs/Module/Settings.php:1110 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 "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Hubzilla-Stammverzeichnisses" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen anzeigen" -#: ../../Zotlabs/Module/Setup.php:598 -msgid "store is writable" -msgstr "store ist schreibbar" +#: ../../Zotlabs/Module/Settings.php:1112 +msgid "Notify me of events this many days in advance" +msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" -#: ../../Zotlabs/Module/Setup.php:631 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." +#: ../../Zotlabs/Module/Settings.php:1112 +msgid "Must be greater than 0" +msgstr "Muss größer als 0 sein" -#: ../../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 "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." +#: ../../Zotlabs/Module/Settings.php:1114 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Account- und Seitenart-Einstellungen" -#: ../../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 "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." +#: ../../Zotlabs/Module/Settings.php:1115 +msgid "Change the behaviour of this account for special situations" +msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" -#: ../../Zotlabs/Module/Setup.php:634 +#: ../../Zotlabs/Module/Settings.php:1118 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 "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer $Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" -#: ../../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 "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen." +#: ../../Zotlabs/Module/Settings.php:1119 +msgid "Miscellaneous Settings" +msgstr "Sonstige Einstellungen" -#: ../../Zotlabs/Module/Setup.php:636 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." +#: ../../Zotlabs/Module/Settings.php:1120 +msgid "Default photo upload folder" +msgstr "Voreingestellter Ordner für hochgeladene Fotos" -#: ../../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 "Wenn Du sicher bist, dass das Zertifikat gültig und von einer vertrauenswürdigen Zertifizierungsstelle signiert ist, prüfe auf ggf. noch zu installierende Zwischenzertifikate (intermediate). Diese werden nicht unbedingt von Browsern benötigt, aber sehr wohl für die Kommunikation zwischen Servern." +#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1121 +msgid "%Y - current year, %m - current month" +msgstr "%Y - aktuelles Jahr, %m - aktueller Monat" -#: ../../Zotlabs/Module/Setup.php:641 -msgid "SSL certificate validation" -msgstr "SSL Zertifikatverifizierung" +#: ../../Zotlabs/Module/Settings.php:1121 +msgid "Default file upload folder" +msgstr "Voreingestellter Ordner für hochgeladene Dateien" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" +#: ../../Zotlabs/Module/Settings.php:1123 +msgid "Personal menu to display in your channel pages" +msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" -#: ../../Zotlabs/Module/Setup.php:650 -msgid "Url rewrite is working" -msgstr "Url rewrite funktioniert" +#: ../../Zotlabs/Module/Settings.php:1125 +msgid "Remove this channel." +msgstr "Diesen Kanal löschen" -#: ../../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 "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." +#: ../../Zotlabs/Module/Settings.php:1126 +msgid "Firefox Share $Projectname provider" +msgstr "$Projectname-Provider für Firefox Share" -#: ../../Zotlabs/Module/Setup.php:683 -msgid "Errors encountered creating database tables." -msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." +#: ../../Zotlabs/Module/Settings.php:1127 +msgid "Start calendar week on monday" +msgstr "Montag als erster Tag der Kalenderwoche" -#: ../../Zotlabs/Module/Setup.php:720 -msgid "

What next

" -msgstr "

Was als Nächstes

" +#: ../../Zotlabs/Module/Setup.php:179 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Server-Einrichtung" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:183 +msgid "Could not connect to database." +msgstr "Kann nicht mit der Datenbank verbinden." + +#: ../../Zotlabs/Module/Setup.php:187 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Dateien, die mit mir geteilt wurden" +#: ../../Zotlabs/Module/Setup.php:194 +msgid "Could not create table." +msgstr "Kann Tabelle nicht erstellen." -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NEU" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Your site database has been installed." +msgstr "Die Datenbank Deines Hubs wurde installiert." -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Alle Dateien löschen" +#: ../../Zotlabs/Module/Setup.php:203 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Diese Datei löschen" +#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 +#: ../../Zotlabs/Module/Setup.php:721 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Lies die Datei \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Sache aktualisiert" +#: ../../Zotlabs/Module/Setup.php:263 +msgid "System check" +msgstr "Systemprüfung" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "Check again" +msgstr "Bitte nochmal prüfen" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Sache hinzugefügt" +#: ../../Zotlabs/Module/Setup.php:290 +msgid "Database connection" +msgstr "Datenbank Verbindung" -#: ../../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/Setup.php:291 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Um $Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Sache anzeigen" +#: ../../Zotlabs/Module/Setup.php:292 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "Eintrag nicht gefunden" +#: ../../Zotlabs/Module/Setup.php:293 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Sache bearbeiten" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Server Name" +msgstr "Datenbank-Servername" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Wähle ein Profil" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Default is 127.0.0.1" +msgstr "Standard ist 127.0.0.1" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Port" +msgstr "Datenbank-Port" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Nur an Betrachter des ausgewählten Profils senden" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Communication port number - use 0 for default" +msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" +#: ../../Zotlabs/Module/Setup.php:299 +msgid "Database Login Name" +msgstr "Datenbank-Benutzername" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" +#: ../../Zotlabs/Module/Setup.php:300 +msgid "Database Login Password" +msgstr "Datenbank-Kennwort" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Name" +msgstr "Datenbank-Name" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Type" +msgstr "Datenbanktyp" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "Site administrator email address" +msgstr "E-Mail Adresse des Seiten-Administrators" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Quelle erstellt." +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Quelle aktualisiert." +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Website URL" +msgstr "Server-URL" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Please use SSL (https) URL if available." +msgstr "Nutze wenn möglich eine SSL-URL (https)." -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 -msgid "Channel Sources" -msgstr "Kanal-Quellen" +#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 +msgid "Please select a default timezone for your website" +msgstr "Standard-Zeitzone für Deinen Server" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." +#: ../../Zotlabs/Module/Setup.php:333 +msgid "Site settings" +msgstr "Seiteneinstellungen" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Neue Quelle" +#: ../../Zotlabs/Module/Setup.php:347 +msgid "Enable $Projectname advanced features?" +msgstr "Erweiterte Funktionen für $Projectname aktivieren?" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Module/Setup.php:347 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." +"Some advanced features, while useful - may be best suited for technically " +"proficient audiences" +msgstr "Einige erweiterte Funktionen können ungeachtet ihrer Nützlichkeit eher für eine technisch versierte Zielgruppe geeignet sein." -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" +#: ../../Zotlabs/Module/Setup.php:388 +msgid "PHP version 5.5 or greater is required." +msgstr "PHP Version 5.5 oder höher wird benötigt." -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" +#: ../../Zotlabs/Module/Setup.php:389 +msgid "PHP version" +msgstr "PHP-Version" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Name des Kanals" +#: ../../Zotlabs/Module/Setup.php:404 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Setup.php:405 msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Quelle nicht gefunden." +#: ../../Zotlabs/Module/Setup.php:409 +msgid "PHP executable path" +msgstr "PHP Pfad zu ausführbarer Datei" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Quelle bearbeiten" +#: ../../Zotlabs/Module/Setup.php:409 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Quelle löschen" +#: ../../Zotlabs/Module/Setup.php:414 +msgid "Command line PHP" +msgstr "PHP Befehlszeile" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Quelle gelöscht" +#: ../../Zotlabs/Module/Setup.php:423 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Konnte die Quelle nicht löschen." +#: ../../Zotlabs/Module/Setup.php:424 +msgid "This is required for message delivery to work." +msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt nun %2$ss %3$s" +#: ../../Zotlabs/Module/Setup.php:427 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Subthread.php:120 +#: ../../Zotlabs/Module/Setup.php:445 #, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s folgt %2$ss %3$s nicht mehr" - -#: ../../Zotlabs/Module/Suggest.php:39 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden." -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verstecken" +#: ../../Zotlabs/Module/Setup.php:450 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Du kannst diese Einstellungen in der php.ini des Servers ändern." -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "Beitrag" +#: ../../Zotlabs/Module/Setup.php:452 +msgid "PHP upload limits" +msgstr "PHP-Hochladebeschränkungen" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 -msgid "comment" -msgstr "Kommentar" +#: ../../Zotlabs/Module/Setup.php:475 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" +#: ../../Zotlabs/Module/Setup.php:476 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Schlagwort entfernt" +#: ../../Zotlabs/Module/Setup.php:479 +msgid "Generate encryption keys" +msgstr "Verschlüsselungsschlüssel generieren" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Schlagwort entfernen" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "libCurl PHP module" +msgstr "libCurl-PHP-Modul" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Schlagwort zum Entfernen auswählen:" +#: ../../Zotlabs/Module/Setup.php:492 +msgid "GD graphics PHP module" +msgstr "GD-Grafik-PHP-Modul" -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Webseiten" +#: ../../Zotlabs/Module/Setup.php:493 +msgid "OpenSSL PHP module" +msgstr "OpenSSL-PHP-Modul" -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Aktionen" +#: ../../Zotlabs/Module/Setup.php:494 +msgid "mysqli or postgres PHP module" +msgstr "mysqli oder postgres PHP-Modul" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Seiten-Link" +#: ../../Zotlabs/Module/Setup.php:495 +msgid "mb_string PHP module" +msgstr "mb_string-PHP-Modul" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Seitentitel" +#: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "mcrypt-PHP-Modul" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "Nicht gefunden" +#: ../../Zotlabs/Module/Setup.php:497 +msgid "xml PHP module" +msgstr "xml-PHP-Modul" + +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 +msgid "Apache mod_rewrite module" +msgstr "Apache-mod_rewrite-Modul" -#: ../../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/Setup.php:501 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "Sandbox" +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Setup.php:507 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "\"# Wiki Sandkasten\\n\\nInhalte, die Du hier **veränderst** und **als Vorschau anzeigst**, *werden nicht gespeichert*.\"" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Revisionsvergleich" +#: ../../Zotlabs/Module/Setup.php:515 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Rückgängig machen" +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Gib einen Namen für Dein neues Wiki ein:" +#: ../../Zotlabs/Module/Setup.php:523 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Geben Sie den Namen der neuen Seite ein:" +#: ../../Zotlabs/Module/Setup.php:527 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Geben Sie den neuen Namen ein:" +#: ../../Zotlabs/Module/Setup.php:531 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Bild aus Fotoalben einbetten" +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "Betten Sie ein Bild aus Ihren Alben ein" +#: ../../Zotlabs/Module/Setup.php:539 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "Ok" +#: ../../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 "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "Wählen Sie Bilder zum Einbetten aus" +#: ../../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 "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Wählen Sie ein Album aus" +#: ../../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 "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst." -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Wählen Sie ein anderes Album aus..." +#: ../../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 "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "Fehler beim Holen der Albenliste" +#: ../../Zotlabs/Module/Setup.php:563 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php ist beschreibbar" -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "Fehler beim Holen des Fotolinks" +#: ../../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 "$Projectname verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Fehler beim Holen des Albums" +#: ../../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 "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses." -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Keine Verbindungen." +#: ../../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 "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Setup.php:580 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "%ss Profil [%s] besuchen" +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 "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält." -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" -msgstr "Verbindungen anzeigen" +#: ../../Zotlabs/Module/Setup.php:583 +#, php-format +msgid "%s is writable" +msgstr "%s ist beschreibbar" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Quelle des Elements" +#: ../../Zotlabs/Module/Setup.php:599 +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 benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" +#: ../../Zotlabs/Module/Setup.php:603 +msgid "store is writable" +msgstr "store ist schreibbar" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" +#: ../../Zotlabs/Module/Setup.php:636 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Zum Weitermachen, bitte einloggen." +#: ../../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 "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." -#: ../../Zotlabs/Module/Api.php:87 +#: ../../Zotlabs/Module/Setup.php:638 msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Xchan-Suche" +#: ../../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 "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer $Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" +#: ../../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 "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen." + +#: ../../Zotlabs/Module/Setup.php:641 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "Der Chatraum hat keinen Namen" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "SSL certificate validation" +msgstr "SSL Zertifikatverifizierung" -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "Name des Chatraums bereits vergeben" +#: ../../Zotlabs/Module/Setup.php:649 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "Ungültiger Raumbezeichner." +#: ../../Zotlabs/Module/Setup.php:652 +msgid "Url rewrite is working" +msgstr "Url rewrite funktioniert" -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "Chatraum konnte nicht gefunden werden." +#: ../../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 "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "Der Chatraum ist voll" +#: ../../Zotlabs/Module/Setup.php:685 +msgid "Errors encountered creating database tables." +msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 -msgid "$Projectname Notification" -msgstr "$Projectname-Benachrichtigung" +#: ../../Zotlabs/Module/Setup.php:719 +msgid "

What next

" +msgstr "

Was als Nächstes

" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 -msgid "$projectname" -msgstr "$projectname" +#: ../../Zotlabs/Module/Setup.php:720 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 -msgid "Thank You," -msgstr "Danke." +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Dateien, die mit mir geteilt wurden" -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NEU" -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Alle Dateien löschen" -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:Benachrichtigung] Neue Mail empfangen auf %s" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Diese Datei löschen" -#: ../../Zotlabs/Lib/Enotify.php:106 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s hat Dir eine private Nachricht auf %3$s gesendet." +msgid "Version %s" +msgstr "Version %s" -#: ../../Zotlabs/Lib/Enotify.php:107 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s hat Dir %2$s geschickt." +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Addons/Apps" -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" -msgstr "eine private Nachricht" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Keine installierten Plugins/Addons/Apps" -#: ../../Zotlabs/Lib/Enotify.php:108 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." -#: ../../Zotlabs/Lib/Enotify.php:164 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]einen %4$s[/zrl] kommentiert" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Schlagwort: " -#: ../../Zotlabs/Lib/Enotify.php:172 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Letzter Hintergrundabruf:" -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Aktuelles Load Average:" -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Erreichbar unter der Web-Adresse" -#: ../../Zotlabs/Lib/Enotify.php:193 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s hat eine Unterhaltung kommentiert, der Du folgst." +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bitte besuchen Sie hubzilla.org, um mehr über $Projectname zu erfahren." -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:Benachrichtigung] %s schrieb auf Deine Pinnwand" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "$projectname-Bugtracker" -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" +#: ../../Zotlabs/Module/Siteinfo.php:80 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" -#: ../../Zotlabs/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Administratoren" -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla:Benachrichtigung] %s hat Dich erwähnt" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." -#: ../../Zotlabs/Lib/Enotify.php:231 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Quelle erstellt." -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]hat Dich erwähnt[/zrl]." +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Quelle aktualisiert." -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla:Benachrichtigung] %1$s hat Dich angestupst" +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Lib/Enotify.php:245 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:71 +msgid "Channel Sources" +msgstr "Kanal-Quellen" -#: ../../Zotlabs/Lib/Enotify.php:246 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]hat Dich angestupst[/zrl]." +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." -#: ../../Zotlabs/Lib/Enotify.php:262 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Neue Quelle" -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." -#: ../../Zotlabs/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla:Benachrichtigung] Vorstellung erhalten" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" -#: ../../Zotlabs/Lib/Enotify.php:277 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Name des Kanals" -#: ../../Zotlabs/Lib/Enotify.php:278 -#, php-format +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." - -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Du kannst Dir das Profil unter %s ansehen" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)" -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Quelle nicht gefunden." -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:Benachrichtigung] Freundschaftsvorschlag erhalten" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Quelle bearbeiten" -#: ../../Zotlabs/Lib/Enotify.php:292 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Quelle löschen" -#: ../../Zotlabs/Lib/Enotify.php:293 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Quelle gelöscht" -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "Name:" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Konnte die Quelle nicht löschen." -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "Foto:" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt nun %2$ss %3$s" -#: ../../Zotlabs/Lib/Enotify.php:303 +#: ../../Zotlabs/Module/Subthread.php:120 #, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s folgt %2$ss %3$s nicht mehr" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:Benachrichtigung]" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "Neuer Beitrag wurde erzeugt" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verstecken" -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" -msgstr "hat %s's Beitrag kommentiert" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +msgid "post" +msgstr "Beitrag" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Hub-Administration" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "Kommentar" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Fehler-Rückmeldung" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Lesezeichen ansehen" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Schlagwort entfernt" -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Meine Chaträume" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Schlagwort entfernen" -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Teilen-Knopf für Firefox" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Ferndiagnose" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Sache aktualisiert" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Kanäle vorschlagen" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Anmelden" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Sache hinzugefügt" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Grid" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Mein Kanal" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Sache anzeigen" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Termine" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Eintrag nicht gefunden" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Verzeichnis" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Sache bearbeiten" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Mail" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Wähle ein Profil" -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Testen" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Nur an Betrachter des ausgewählten Profils senden" -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Empfehlen" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Zufälliger Kanal" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Einladen" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "URL eines Fotos der Sache (optional)" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funktionen" +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Beitrag schreiben" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanal exportieren" -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Kaufen" +#: ../../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 "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Private Nachricht" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Kanal und Inhalte exportieren" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "Auswählen" +#: ../../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 "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "In Ordner speichern" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exportiert die Beiträge des angegebenen Jahres." -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Ich werde teilnehmen" +#: ../../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 kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne." -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "Ich werde nicht teilnehmen" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2$s." -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Ich werde vielleicht teilnehmen" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2$s." -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Ich stimme zu" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "Ich lehne ab" +#: ../../Zotlabs/Module/Viewconnections.php:62 +msgid "No connections." +msgstr "Keine Verbindungen." -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Ich enthalte mich" +#: ../../Zotlabs/Module/Viewconnections.php:75 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "%ss Profil [%s] besuchen" -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Stern hinzufügen" +#: ../../Zotlabs/Module/Viewconnections.php:104 +msgid "View Connections" +msgstr "Verbindungen anzeigen" -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Stern entfernen" +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Quelle des Elements" -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Markierungsstatus (Stern) umschalten" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Webseiten" -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "markiert" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Aktionen" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Signatur überprüft" +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Seiten-Link" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Signatur nicht korrekt" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Seitentitel" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Tag hinzufügen" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Xchan-Suche" -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 -msgid "like" -msgstr "mag" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "verurteile" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Hub-Administration" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "Share This" -msgstr "Teilen" +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "Fehler-Rückmeldung" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "share" -msgstr "Teilen" +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "Lesezeichen ansehen" -#: ../../Zotlabs/Lib/ThreadItem.php:275 -msgid "Delivery Report" -msgstr "Zustellungsbericht" +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "Meine Chaträume" -#: ../../Zotlabs/Lib/ThreadItem.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "Teilen-Knopf für Firefox" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 -#, php-format -msgid "View %s's profile - %s" -msgstr "Schaue Dir %ss Profil an – %s" +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "Ferndiagnose" -#: ../../Zotlabs/Lib/ThreadItem.php:326 -msgid "to" -msgstr "an" +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Kanäle vorschlagen" -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "via" -msgstr "via" +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Anmelden" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Grid" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Mein Kanal" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 -#, php-format -msgid "from %s" -msgstr "via %s" +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Termine" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" -msgstr "zuletzt bearbeitet: %s" +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Verzeichnis" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" -msgstr "Verfällt: %s" +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Mail" -#: ../../Zotlabs/Lib/ThreadItem.php:370 -msgid "Save Bookmarks" -msgstr "Favoriten speichern" +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Add to Calendar" -msgstr "Zum Kalender hinzufügen" +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Testen" -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Mark all seen" -msgstr "Alle als gelesen markieren" +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Empfehlen" -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mehr anzeigen" +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Zufälliger Kanal" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 -msgid "Bold" -msgstr "Fett" +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Einladen" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 -msgid "Italic" -msgstr "Kursiv" +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Funktionen" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 -msgid "Underline" -msgstr "Unterstrichen" +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Beitrag schreiben" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 -msgid "Quote" -msgstr "Zitat" +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Kaufen" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 -msgid "Code" -msgstr "Code" +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" +msgstr "Der Chatraum hat keinen Namen" -#: ../../Zotlabs/Lib/ThreadItem.php:716 -msgid "Image" -msgstr "Bild" +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" +msgstr "Name des Chatraums bereits vergeben" -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Insert Link" -msgstr "Link einfügen" +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." +msgstr "Ungültiger Raumbezeichner." -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Video" -msgstr "Video" +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." +msgstr "Chatraum konnte nicht gefunden werden." -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" +msgstr "Der Chatraum ist voll" -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Nur ich" +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +msgid "$Projectname Notification" +msgstr "$Projectname-Benachrichtigung" -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Öffentlich" +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +msgid "$projectname" +msgstr "$projectname" -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Jeder innerhalb des $Projectname Netzwerks" +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +msgid "Thank You," +msgstr "Danke." -#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format -msgid "Any account on %s" -msgstr "Jedes Nutzerkonto auf %s" +msgid "%s Administrator" +msgstr "der Administrator von %s" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Alle meine Verbindungen" +#: ../../Zotlabs/Lib/Enotify.php:100 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Nur Verbindungen, denen ich es explizit erlaube" +#: ../../Zotlabs/Lib/Enotify.php:104 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Benachrichtigung] Neue Mail empfangen auf %s" -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" +#: ../../Zotlabs/Lib/Enotify.php:106 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s hat Dir eine private Nachricht auf %3$s gesendet." -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "Alle Verbindungen einschließlich der noch nicht bestätigten" +#: ../../Zotlabs/Lib/Enotify.php:107 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s hat Dir %2$s geschickt." -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)." +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" +msgstr "eine private Nachricht" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils." +#: ../../Zotlabs/Lib/Enotify.php:108 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen." +#: ../../Zotlabs/Lib/Enotify.php:164 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]einen %4$s[/zrl] kommentiert" -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos." +#: ../../Zotlabs/Lib/Enotify.php:172 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten." +#: ../../Zotlabs/Lib/Enotify.php:181 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Kein Benutzername in der Importdatei gefunden." +#: ../../Zotlabs/Lib/Enotify.php:192 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." +#: ../../Zotlabs/Lib/Enotify.php:193 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s hat eine Unterhaltung kommentiert, der Du folgst." + +#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 +#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 +#: ../../Zotlabs/Lib/Enotify.php:269 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." -#: ../../include/dba/dba_driver.php:171 +#: ../../Zotlabs/Lib/Enotify.php:202 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla:Benachrichtigung] %s schrieb auf Deine Pinnwand" -#: ../../include/photos.php:114 +#: ../../Zotlabs/Lib/Enotify.php:204 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." +#: ../../Zotlabs/Lib/Enotify.php:206 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Fotospeicherung fehlgeschlagen." +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla:Benachrichtigung] %s hat Dich erwähnt" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "ein neues Foto" +#: ../../Zotlabs/Lib/Enotify.php:231 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" -#: ../../include/photos.php:303 +#: ../../Zotlabs/Lib/Enotify.php:232 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s hat %2$s auf %3$s veröffentlicht" +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]hat Dich erwähnt[/zrl]." -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Fotoalben" +#: ../../Zotlabs/Lib/Enotify.php:244 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla:Benachrichtigung] %1$s hat Dich angestupst" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" +#: ../../Zotlabs/Lib/Enotify.php:245 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Abmelden" +#: ../../Zotlabs/Lib/Enotify.php:246 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]hat Dich angestupst[/zrl]." -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Beende diese Sitzung" +#: ../../Zotlabs/Lib/Enotify.php:262 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Home" +#: ../../Zotlabs/Lib/Enotify.php:263 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" +#: ../../Zotlabs/Lib/Enotify.php:264 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Deine Profilseite" +#: ../../Zotlabs/Lib/Enotify.php:276 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla:Benachrichtigung] Vorstellung erhalten" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" +#: ../../Zotlabs/Lib/Enotify.php:277 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Profile bearbeiten" +#: ../../Zotlabs/Lib/Enotify.php:278 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Profil bearbeiten" +#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Du kannst Dir das Profil unter %s ansehen" -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Deine Bilder" +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Deine Dateien" +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Benachrichtigung] Freundschaftsvorschlag erhalten" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Deine Chaträume" +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Lesezeichen" +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" +msgstr "Name:" -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Deine Webseiten" +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" +msgstr "Foto:" + +#: ../../Zotlabs/Lib/Enotify.php:303 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "Dein Wiki" +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Benachrichtigung]" -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Anmelden" +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" +msgstr "Neuer Beitrag wurde erzeugt" -#: ../../include/nav.php:129 +#: ../../Zotlabs/Lib/Enotify.php:668 #, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" +msgid "commented on %s's post" +msgstr "hat %s's Beitrag kommentiert" -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +msgid "Private Message" +msgstr "Private Nachricht" -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Homepage" +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +msgid "Select" +msgstr "Auswählen" -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Erzeuge ein Konto" +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "In Ordner speichern" -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Ich werde teilnehmen" -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "Ich werde nicht teilnehmen" -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Ich werde vielleicht teilnehmen" -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Kanal-Verzeichnis" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "Ich stimme zu" -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Dein Grid" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "Ich lehne ab" -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "Ich enthalte mich" -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Mein Kanal" +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" +msgstr "Stern hinzufügen" -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" +msgstr "Stern entfernen" -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Benachrichtigungen" +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" +msgstr "Markierungsstatus (Stern) umschalten" -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Benachrichtigungen" +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" +msgstr "markiert" -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +msgid "Message signature validated" +msgstr "Signatur überprüft" -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Persönliche Mail" +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +msgid "Message signature incorrect" +msgstr "Signatur nicht korrekt" -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" +msgstr "Tag hinzufügen" -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" +#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +msgid "like" +msgstr "mag" -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Eingang" +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "verurteile" -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Ausgang" +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "Share This" +msgstr "Teilen" -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Neue Nachricht" +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "share" +msgstr "Teilen" -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Terminkalender" +#: ../../Zotlabs/Lib/ThreadItem.php:275 +msgid "Delivery Report" +msgstr "Zustellungsbericht" -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Alle Termine ansehen" +#: ../../Zotlabs/Lib/ThreadItem.php:293 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" +#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#, php-format +msgid "View %s's profile - %s" +msgstr "Schaue Dir %ss Profil an – %s" -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" +#: ../../Zotlabs/Lib/ThreadItem.php:326 +msgid "to" +msgstr "an" -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "via" +msgstr "via" -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Administration" +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Lädt ..." +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#, php-format +msgid "from %s" +msgstr "via %s" -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#, php-format +msgid "last edited: %s" +msgstr "zuletzt bearbeitet: %s" -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Bitte warten..." +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#, php-format +msgid "Expires: %s" +msgstr "Verfällt: %s" -#: ../../include/network.php:704 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" +#: ../../Zotlabs/Lib/ThreadItem.php:370 +msgid "Save Bookmarks" +msgstr "Favoriten speichern" -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrator" +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Add to Calendar" +msgstr "Zum Kalender hinzufügen" -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Kein Betreff" +#: ../../Zotlabs/Lib/ThreadItem.php:380 +msgid "Mark all seen" +msgstr "Alle als gelesen markieren" -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" +#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] Alle anzeigen" -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +msgid "Bold" +msgstr "Fett" -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU-Social" +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +msgid "Italic" +msgstr "Kursiv" -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +msgid "Underline" +msgstr "Unterstrichen" -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +msgid "Quote" +msgstr "Zitat" -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +msgid "Code" +msgstr "Code" -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot!" +#: ../../Zotlabs/Lib/ThreadItem.php:716 +msgid "Image" +msgstr "Bild" -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Insert Link" +msgstr "Link einfügen" -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Video" +msgstr "Video" -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Kein Benutzername in der Importdatei gefunden." -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Neue Seite" +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titel" +#: ../../include/dba/dba_driver.php:171 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 @@ -7454,1412 +6815,1582 @@ msgstr "gefällt" msgid "dislikes" msgstr "missfällt" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" +#: ../../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, H:i" + +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Beginnt:" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Endet:" + +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" + +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Keine Angabe" + +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Aktion erforderlich" + +#: ../../include/event.php:1014 +msgid "Completed" +msgstr "Abgeschlossen" + +#: ../../include/event.php:1015 +msgid "In Process" +msgstr "In Bearbeitung" + +#: ../../include/event.php:1016 +msgid "Cancelled" +msgstr "gestrichen" + +#: ../../include/import.php:29 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." + +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." + +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Unbekannt)" + +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Für jeden im Internet sichtbar." + +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Nur für Dich sichtbar." + +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Für jedes $Projectname-Mitglied sichtbar." + +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Für jeden sichtbar, der angemeldet ist." + +#: ../../include/items.php:1144 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Für jeden auf %s sichtbar." + +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Für alle Verbindungen sichtbar." + +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Nur für akzeptierte Verbindungen sichtbar." + +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Sichtbar für bestimmte Verbindungen." + +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "Gruppe ist leer." + +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppe: %s" + +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Die Verbindung wurde nicht gefunden." + +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "Profilfoto" + +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Kein Empfänger angegeben" + +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[no subject]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kann Absender nicht bestimmen." + +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." + +#: ../../include/text.php:428 +msgid "prev" +msgstr "vorherige" + +#: ../../include/text.php:430 +msgid "first" +msgstr "erste" + +#: ../../include/text.php:459 +msgid "last" +msgstr "letzte" + +#: ../../include/text.php:462 +msgid "next" +msgstr "nächste" + +#: ../../include/text.php:472 +msgid "older" +msgstr "älter" + +#: ../../include/text.php:474 +msgid "newer" +msgstr "neuer" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "Keine Verbindungen" + +#: ../../include/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "Alle Verbindungen von %s anzeigen" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "anstupsen" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "stupste" -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Namensfeld leer" +#: ../../include/text.php:1039 +msgid "ping" +msgstr "anpingen" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Name ist zu lang" +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "pingte" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Keine Account-Kennung" +#: ../../include/text.php:1040 +msgid "prod" +msgstr "knuffen" -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "knuffte" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." +#: ../../include/text.php:1041 +msgid "slap" +msgstr "ohrfeigen" -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "ohrfeigte" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" +#: ../../include/text.php:1042 +msgid "finger" +msgstr "befummeln" -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Standard-Profil" +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "befummelte" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "zurückgewiesen" -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" +#: ../../include/text.php:1055 +msgid "happy" +msgstr "glücklich" -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Geschlecht:" +#: ../../include/text.php:1056 +msgid "sad" +msgstr "traurig" -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Status:" +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "sanft" -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Homepage:" +#: ../../include/text.php:1058 +msgid "tired" +msgstr "müde" -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "gerade online" +#: ../../include/text.php:1059 +msgid "perky" +msgstr "frech" -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" +#: ../../include/text.php:1060 +msgid "angry" +msgstr "sauer" -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j. F Y" +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "verblüfft" -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j. F" +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "verwirrt" -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Geburtstag:" +#: ../../include/text.php:1063 +msgid "interested" +msgstr "interessiert" -#: ../../include/channel.php:1232 -#, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "verbittert" -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "fröhlich" -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Schlagworte:" +#: ../../include/text.php:1066 +msgid "alive" +msgstr "lebendig" -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Politische Ansichten:" +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "verärgert" -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "unruhig" -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "schrullig" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Gefällt:" +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "verstört" -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Gefällt nicht:" +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustriert" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "deprimiert" -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motiviert" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "entspannt" -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "überrascht" -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Fernsehen:" +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "Montag" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "Dienstag" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "Mittwoch" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "Donnerstag" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Schule/Ausbildung:" +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "Freitag" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Gefällt mir" +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "Samstag" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Neues Fenster" +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "Sonntag" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab" +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "Januar" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Benutzer '%s' gelöscht" +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "Februar" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ist jetzt mit %2$s verbunden" +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "März" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s an" +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "April" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "stupste" +#: ../../include/text.php:1261 +msgid "May" +msgstr "Mai" -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "%ss Profil auf %s ansehen" +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "Juni" -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Kategorien:" +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "Juli" -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Gespeichert unter:" +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "August" -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "Im Zusammenhang anschauen" +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "September" -#: ../../include/conversation.php:850 -msgid "remove" -msgstr "lösche" +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "Oktober" -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" -msgstr "Lösche die ausgewählten Elemente" +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "November" -#: ../../include/conversation.php:951 -msgid "View Source" -msgstr "Quelle anzeigen" +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "Dezember" -#: ../../include/conversation.php:952 -msgid "Follow Thread" -msgstr "Unterhaltung folgen" +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Unbekannter Anhang" -#: ../../include/conversation.php:953 -msgid "Unfollow Thread" -msgstr "Unterhaltung nicht mehr folgen" +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "unbekannt" -#: ../../include/conversation.php:958 -msgid "Activity/Posts" -msgstr "Aktivitäten/Beiträge" +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "Kategorie entfernen" -#: ../../include/conversation.php:960 -msgid "Edit Connection" -msgstr "Verbindung bearbeiten" +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "aus der Datei entfernen" -#: ../../include/conversation.php:961 -msgid "Message" -msgstr "Nachricht" +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "Standard" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s likes this." -msgstr "%s gefällt das." +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Seiten-Layout" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s doesn't like this." -msgstr "%s gefällt das nicht." +#: ../../include/text.php:1761 +msgid "You can create your own with the layouts tool" +msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d Person gefällt das." -msgstr[1] "%2$d Leuten gefällt das." +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Art des Seiteninhalts" -#: ../../include/conversation.php:1084 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d Person gefällt das nicht." -msgstr[1] "%2$d Leuten gefällt das nicht." +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" -#: ../../include/conversation.php:1090 -msgid "and" -msgstr "und" +#: ../../include/text.php:1953 +msgid "activity" +msgstr "Aktivität" -#: ../../include/conversation.php:1093 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] ", und %d andere" +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Gestaltungswerkzeuge" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s like this." -msgstr "%s gefällt das." +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Seiten" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s don't like this." -msgstr "%s gefällt das nicht." +#: ../../include/widgets.php:103 +msgid "System" +msgstr "System" -#: ../../include/conversation.php:1133 -msgid "Set your location" -msgstr "Standort" +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Neue App" -#: ../../include/conversation.php:1134 -msgid "Clear browser location" -msgstr "Browser-Standort löschen" +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Vorschläge" -#: ../../include/conversation.php:1182 -msgid "Tag term:" -msgstr "Schlagwort:" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Mehr anzeigen …" -#: ../../include/conversation.php:1183 -msgid "Where are you right now?" -msgstr "Wo bist Du jetzt grade?" +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." -#: ../../include/conversation.php:1221 -msgid "Page link name" -msgstr "Link zur Seite" +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" -#: ../../include/conversation.php:1224 -msgid "Post as" -msgstr "Veröffentlichen als" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Adresse des Kanals eingeben" -#: ../../include/conversation.php:1238 -msgid "Toggle voting" -msgstr "Umfragewerkzeug aktivieren" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" -#: ../../include/conversation.php:1246 -msgid "Categories (optional, comma-separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notizen" -#: ../../include/conversation.php:1269 -msgid "Set publish date" -msgstr "Veröffentlichungsdatum festlegen" +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Eintrag löschen" -#: ../../include/conversation.php:1518 -msgid "Discover" -msgstr "Entdecken" +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" -#: ../../include/conversation.php:1521 -msgid "Imported public streams" -msgstr "Importierte öffentliche Beiträge" +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "hinzufügen" -#: ../../include/conversation.php:1526 -msgid "Commented Order" -msgstr "Neueste Kommentare" +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" -#: ../../include/conversation.php:1529 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortiert" +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Alles" -#: ../../include/conversation.php:1533 -msgid "Posted Order" -msgstr "Neueste Beiträge" +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archive" -#: ../../include/conversation.php:1536 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortiert" +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Aktualisieren" -#: ../../include/conversation.php:1544 -msgid "Posts that mention or involve you" -msgstr "Beiträge mit Beteiligung Deinerseits" +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Konto-Einstellungen" -#: ../../include/conversation.php:1553 -msgid "Activity Stream - by date" -msgstr "Activity Stream – nach Datum sortiert" +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" -#: ../../include/conversation.php:1559 -msgid "Starred" -msgstr "Markiert" +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" -#: ../../include/conversation.php:1562 -msgid "Favourite Posts" -msgstr "Markierte Beiträge" +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Plugin-Einstellungen" -#: ../../include/conversation.php:1569 -msgid "Spam" -msgstr "Spam" +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" -#: ../../include/conversation.php:1572 -msgid "Posts flagged as SPAM" -msgstr "Nachrichten, die als SPAM markiert wurden" +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Klon-Adressen verwalten" -#: ../../include/conversation.php:1629 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Kanal exportieren" -#: ../../include/conversation.php:1638 -msgid "About" -msgstr "Über" +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Verbundene Apps" -#: ../../include/conversation.php:1641 -msgid "Profile Details" -msgstr "Profil-Details" +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" -#: ../../include/conversation.php:1657 -msgid "Files and Storage" -msgstr "Dateien und Speicher" +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Private Nachrichten" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Chaträume" +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Kombinierte Anzeige" -#: ../../include/conversation.php:1693 -msgid "Saved Bookmarks" -msgstr "Gespeicherte Lesezeichen" +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Eingang" -#: ../../include/conversation.php:1703 -msgid "Manage Webpages" -msgstr "Webseiten verwalten" +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Ausgang" -#: ../../include/conversation.php:1768 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Zusage" -msgstr[1] "Zusagen" +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Neue Nachricht" -#: ../../include/conversation.php:1771 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Absage" -msgstr[1] "Absagen" +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Konversationen" -#: ../../include/conversation.php:1774 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] " Unentschlossen" -msgstr[1] "Unentschlossene" +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Erhaltene Nachrichten" -#: ../../include/conversation.php:1777 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Zustimmung" -msgstr[1] "Zustimmungen" +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Gesendete Nachrichten" -#: ../../include/conversation.php:1780 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Ablehnung" -msgstr[1] "Ablehnungen" +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Keine Nachrichten." -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Enthaltung" -msgstr[1] "Enthaltungen" +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Kalendermenü" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Tagesansicht" -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Häufig" +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Wochenansicht" -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Stündlich" +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Monatsansicht" -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Zwei Mal am Tag" +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Kalenderwerkzeuge" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Täglich" +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Kalender exportieren" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Wöchentlich" +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Kalender importieren" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Monatlich" +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Chaträume" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Momentan männlich" +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Übersicht" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Momentan weiblich" +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Chatmitglieder" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Größtenteils männlich" +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Größtenteils weiblich" +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transsexuell" +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "Foto/Bild" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Zwischengeschlechtlich" +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Klick, um mehr anzuzeigen" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transsexuell" +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Bewertungswerkzeuge" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Zwitter" +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Bewerte mich" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Geschlechtslos" +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Bewertungen ansehen" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "unklar" +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Foren" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Unentschieden" +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Aufgaben" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Männer" +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Dokumentation" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Frauen" +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Informationen über das Projekt und diesen Hub" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Schwul" +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Für Mitglieder" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbisch" +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Für Administratoren" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Keine Bevorzugung" +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Für Entwickler" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisexuell" +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosexuell" +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Warteschlange kontrollieren" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Enthaltsam" +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "DB-Aktualisierungen" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Jungfräulich" +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Administration" -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Abweichend" +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetisch" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Der Kanal ist auf dieser Seite blockiert " -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Unmengen" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Adresse des Kanals fehlt." -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Sexlos" +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Single" +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Einsam" +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Verfügbar" +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "Kanalsuche fehlgeschlagen" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Nicht verfügbar" +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Du kannst Dich nicht mit Dir selbst verbinden." -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Verguckt" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Verknallt" +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Lerne gerade jemanden kennen" +#: ../../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 "Bild/Foto" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Treulos" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Sexabhängig" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Element %s installieren: " -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Freunde/Begünstigte" +#: ../../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 "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Lose" +#: ../../include/bbcode.php:254 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schrieb den folgenden %2$s %3$s" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Verlobt" +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Verheiratet" +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "Spoiler" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Gewissermaßen verheiratet" +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partner" +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 schrieb:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Lebensgemeinschaft" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Verzeichnisoptionen" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Informelle Ehe" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Sicherer Modus" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Glücklich" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Nur öffentliche Foren" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Nicht Ausschau haltend" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Nur dieser Hub" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Swinger" +#: ../../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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Betrogen" +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Abmelden" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Getrennt" +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Beende diese Sitzung" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Labil" +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Geschieden" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Deine Profilseite" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Gewissermaßen geschieden" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Verwitwet" +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Profile bearbeiten" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Ungewiss" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Profil bearbeiten" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Es ist kompliziert" +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Deine Bilder" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Interessiert mich nicht" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Deine Dateien" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Frag mich mal" +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Deine Chaträume" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Lesezeichen" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "Gast:" +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" -#: ../../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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Deine Webseiten" -#: ../../include/text.php:404 -msgid "prev" -msgstr "vorherige" +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Anmelden" -#: ../../include/text.php:406 -msgid "first" -msgstr "erste" +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" -#: ../../include/text.php:435 -msgid "last" -msgstr "letzte" +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" -#: ../../include/text.php:438 -msgid "next" -msgstr "nächste" +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" -#: ../../include/text.php:448 -msgid "older" -msgstr "älter" +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Homepage" -#: ../../include/text.php:450 -msgid "newer" -msgstr "neuer" +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Erzeuge ein Konto" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Keine Verbindungen" +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" -msgstr "Alle Verbindungen von %s anzeigen" +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "anstupsen" +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "anpingen" +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Kanal-Verzeichnis" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "pingte" +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Dein Grid" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "knuffen" +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "knuffte" +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Mein Kanal" -#: ../../include/text.php:1021 -msgid "slap" -msgstr "ohrfeigen" +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ohrfeigte" +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Benachrichtigungen" -#: ../../include/text.php:1022 -msgid "finger" -msgstr "befummeln" +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Benachrichtigungen" -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "befummelte" +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Persönliche Mail" -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "zurückgewiesen" +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" -#: ../../include/text.php:1035 -msgid "happy" -msgstr "glücklich" +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" -#: ../../include/text.php:1036 -msgid "sad" -msgstr "traurig" +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Terminkalender" -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "sanft" +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Alle Termine ansehen" -#: ../../include/text.php:1038 -msgid "tired" -msgstr "müde" +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Markiere alle Termine als gesehen" -#: ../../include/text.php:1039 -msgid "perky" -msgstr "frech" +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" -#: ../../include/text.php:1040 -msgid "angry" -msgstr "sauer" +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanal-Einstellungen" -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "verblüfft" +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "verwirrt" +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Lädt ..." -#: ../../include/text.php:1043 -msgid "interested" -msgstr "interessiert" +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "verbittert" +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Bitte warten..." -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "fröhlich" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Neues Fenster" -#: ../../include/text.php:1046 -msgid "alive" -msgstr "lebendig" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab" -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "verärgert" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Benutzer '%s' gelöscht" -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "unruhig" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "schrullig" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Finde Kanäle" -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "verstört" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustriert" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "deprimiert" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiele: Robert Morgenstein, Angeln" -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motiviert" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Zufallsprofil" -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "entspannt" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Lade Freunde ein" -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "überrascht" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Montag" +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeinsame Verbindung" +msgstr[1] "%d gemeinsame Verbindungen" -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Dienstag" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mehr zeigen" -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Mittwoch" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ist jetzt mit %2$s verbunden" -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Donnerstag" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s an" -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Freitag" +#: ../../include/conversation.php:691 +#, php-format +msgid "View %s's profile @ %s" +msgstr "%ss Profil auf %s ansehen" -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Samstag" +#: ../../include/conversation.php:710 +msgid "Categories:" +msgstr "Kategorien:" -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Sonntag" +#: ../../include/conversation.php:711 +msgid "Filed under:" +msgstr "Gespeichert unter:" -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "Januar" +#: ../../include/conversation.php:738 +msgid "View in context" +msgstr "Im Zusammenhang anschauen" -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "Februar" +#: ../../include/conversation.php:847 +msgid "remove" +msgstr "lösche" -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "März" +#: ../../include/conversation.php:852 +msgid "Delete Selected Items" +msgstr "Lösche die ausgewählten Elemente" -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "April" +#: ../../include/conversation.php:948 +msgid "View Source" +msgstr "Quelle anzeigen" -#: ../../include/text.php:1241 -msgid "May" -msgstr "Mai" +#: ../../include/conversation.php:949 +msgid "Follow Thread" +msgstr "Unterhaltung folgen" -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juni" +#: ../../include/conversation.php:950 +msgid "Unfollow Thread" +msgstr "Unterhaltung nicht mehr folgen" -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juli" +#: ../../include/conversation.php:955 +msgid "Activity/Posts" +msgstr "Aktivitäten/Beiträge" -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "August" +#: ../../include/conversation.php:957 +msgid "Edit Connection" +msgstr "Verbindung bearbeiten" -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "September" +#: ../../include/conversation.php:958 +msgid "Message" +msgstr "Nachricht" -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "Oktober" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s likes this." +msgstr "%s gefällt das." -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "November" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s doesn't like this." +msgstr "%s gefällt das nicht." -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "Dezember" +#: ../../include/conversation.php:1079 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d Person gefällt das." +msgstr[1] "%2$d Leuten gefällt das." -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Unbekannter Anhang" +#: ../../include/conversation.php:1081 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d Person gefällt das nicht." +msgstr[1] "%2$d Leuten gefällt das nicht." -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "unbekannt" +#: ../../include/conversation.php:1087 +msgid "and" +msgstr "und" -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "Kategorie entfernen" +#: ../../include/conversation.php:1090 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] ", und %d andere" -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "aus der Datei entfernen" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s like this." +msgstr "%s gefällt das." -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "Standard" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s don't like this." +msgstr "%s gefällt das nicht." -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Seiten-Layout" +#: ../../include/conversation.php:1130 +msgid "Set your location" +msgstr "Standort" -#: ../../include/text.php:1742 -msgid "You can create your own with the layouts tool" -msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" +#: ../../include/conversation.php:1131 +msgid "Clear browser location" +msgstr "Browser-Standort löschen" -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Art des Seiteninhalts" +#: ../../include/conversation.php:1177 +msgid "Tag term:" +msgstr "Schlagwort:" -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" +#: ../../include/conversation.php:1178 +msgid "Where are you right now?" +msgstr "Wo bist Du jetzt grade?" -#: ../../include/text.php:1934 -msgid "activity" -msgstr "Aktivität" +#: ../../include/conversation.php:1210 +msgid "Page link name" +msgstr "Link zur Seite" -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Gestaltungswerkzeuge" +#: ../../include/conversation.php:1213 +msgid "Post as" +msgstr "Veröffentlichen als" -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Seiten" +#: ../../include/conversation.php:1223 +msgid "Toggle voting" +msgstr "Umfragewerkzeug aktivieren" -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Ausgeloggt." +#: ../../include/conversation.php:1231 +msgid "Categories (optional, comma-separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" +#: ../../include/conversation.php:1254 +msgid "Set publish date" +msgstr "Veröffentlichungsdatum festlegen" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "Ok" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" +#: ../../include/conversation.php:1503 +msgid "Discover" +msgstr "Entdecken" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" +#: ../../include/conversation.php:1506 +msgid "Imported public streams" +msgstr "Importierte öffentliche Beiträge" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" +#: ../../include/conversation.php:1511 +msgid "Commented Order" +msgstr "Neueste Kommentare" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" +#: ../../include/conversation.php:1514 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortiert" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" +#: ../../include/conversation.php:1518 +msgid "Posted Order" +msgstr "Neueste Beiträge" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" +#: ../../include/conversation.php:1521 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortiert" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" +#: ../../include/conversation.php:1529 +msgid "Posts that mention or involve you" +msgstr "Beiträge mit Beteiligung Deinerseits" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kann in meine Datei- und Bilderordner schreiben" +#: ../../include/conversation.php:1538 +msgid "Activity Stream - by date" +msgstr "Activity Stream – nach Datum sortiert" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" +#: ../../include/conversation.php:1544 +msgid "Starred" +msgstr "Markiert" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" +#: ../../include/conversation.php:1547 +msgid "Favourite Posts" +msgstr "Markierte Beiträge" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" +#: ../../include/conversation.php:1554 +msgid "Spam" +msgstr "Spam" -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" +#: ../../include/conversation.php:1557 +msgid "Posts flagged as SPAM" +msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../include/features.php:48 -msgid "General Features" -msgstr "Allgemeine Funktionen" +#: ../../include/conversation.php:1614 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Verfall von Inhalten" +#: ../../include/conversation.php:1623 +msgid "About" +msgstr "Über" -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum." +#: ../../include/conversation.php:1626 +msgid "Profile Details" +msgstr "Profil-Details" -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Mehrfachprofile" +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Fotoalben" -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Ermöglicht das Anlegen mehrerer Profile pro Kanal" +#: ../../include/conversation.php:1642 +msgid "Files and Storage" +msgstr "Dateien und Speicher" -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Erweiterte Profile" +#: ../../include/conversation.php:1678 +msgid "Saved Bookmarks" +msgstr "Gespeicherte Lesezeichen" -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" +#: ../../include/conversation.php:1688 +msgid "Manage Webpages" +msgstr "Webseiten verwalten" -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Profil-Import/Export" +#: ../../include/conversation.php:1747 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Zusage" +msgstr[1] "Zusagen" -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren" +#: ../../include/conversation.php:1750 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Absage" +msgstr[1] "Absagen" -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Webseiten" +#: ../../include/conversation.php:1753 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] " Unentschlossen" +msgstr[1] "Unentschlossene" -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Ermöglicht das Erstellen von Webseiten in Deinem Kanal" +#: ../../include/conversation.php:1756 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Zustimmung" +msgstr[1] "Zustimmungen" -#: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "Stelle ein Wiki in Deinem Kanal zur Verfügung" +#: ../../include/conversation.php:1759 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Ablehnung" +msgstr[1] "Ablehnungen" -#: ../../include/features.php:56 -msgid "Hide Rating" -msgstr "Bewertung verbergen" +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Enthaltung" +msgstr[1] "Enthaltungen" -#: ../../include/features.php:56 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten." +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Häufig" -#: ../../include/features.php:57 -msgid "Private Notes" -msgstr "Private Notizen" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Stündlich" -#: ../../include/features.php:57 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Zwei Mal am Tag" -#: ../../include/features.php:58 -msgid "Navigation Channel Select" -msgstr "Kanal-Auswahl in der Navigationsleiste" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Täglich" -#: ../../include/features.php:58 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Wöchentlich" -#: ../../include/features.php:59 -msgid "Photo Location" -msgstr "Aufnahmeort" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Monatlich" -#: ../../include/features.php:59 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Momentan männlich" -#: ../../include/features.php:60 -msgid "Access Controlled Chatrooms" -msgstr "Zugriffskontrollierte Chaträume" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Momentan weiblich" -#: ../../include/features.php:60 -msgid "Provide chatrooms and chat services with access control." -msgstr "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an." +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Größtenteils männlich" -#: ../../include/features.php:61 -msgid "Smart Birthdays" -msgstr "Smarte Geburtstage" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Größtenteils weiblich" -#: ../../include/features.php:61 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind." +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transsexuell" -#: ../../include/features.php:62 -msgid "Expert Mode" -msgstr "Expertenmodus" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Zwischengeschlechtlich" -#: ../../include/features.php:62 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Aktiviert den Expertenmodus, der fortgeschrittene Konfigurationsoptionen zur Verfügung stellt" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transsexuell" -#: ../../include/features.php:63 -msgid "Premium Channel" -msgstr "Premium-Kanal" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Zwitter" -#: ../../include/features.php:63 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Geschlechtslos" -#: ../../include/features.php:68 -msgid "Post Composition Features" -msgstr "Nachbearbeitungsfunktionen" +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "unklar" -#: ../../include/features.php:71 -msgid "Large Photos" -msgstr "Große Fotos" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "Andere" -#: ../../include/features.php:71 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet." +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Unentschieden" -#: ../../include/features.php:72 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Männer" -#: ../../include/features.php:73 -msgid "Even More Encryption" -msgstr "Noch mehr Verschlüsselung" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Frauen" -#: ../../include/features.php:73 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)" +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Schwul" -#: ../../include/features.php:74 -msgid "Enable Voting Tools" -msgstr "Umfragewerkzeuge aktivieren" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbisch" -#: ../../include/features.php:74 -msgid "Provide a class of post which others can vote on" -msgstr "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Keine Bevorzugung" -#: ../../include/features.php:75 -msgid "Delayed Posting" -msgstr "Verzögertes Senden" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisexuell" -#: ../../include/features.php:75 -msgid "Allow posts to be published at a later date" -msgstr "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen" +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosexuell" -#: ../../include/features.php:76 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Doppelte Beiträge unterdrücken" +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Enthaltsam" -#: ../../include/features.php:76 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden." +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Jungfräulich" -#: ../../include/features.php:82 -msgid "Network and Stream Filtering" -msgstr "Netzwerk- und Stream-Filter" +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Abweichend" -#: ../../include/features.php:83 -msgid "Search by Date" -msgstr "Suche nach Datum" +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetisch" -#: ../../include/features.php:83 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Unmengen" -#: ../../include/features.php:84 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Gruppen" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Sexlos" -#: ../../include/features.php:84 -msgid "Enable management and selection of privacy groups" -msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Single" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Einsam" -#: ../../include/features.php:85 -msgid "Save search terms for re-use" -msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Verfügbar" -#: ../../include/features.php:86 -msgid "Network Personal Tab" -msgstr "Persönlicher Netzwerkreiter" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Nicht verfügbar" -#: ../../include/features.php:86 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast" +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Verguckt" -#: ../../include/features.php:87 -msgid "Network New Tab" -msgstr "Netzwerkreiter Neu" +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Verknallt" -#: ../../include/features.php:87 -msgid "Enable tab to display all new Network activity" -msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Lerne gerade jemanden kennen" -#: ../../include/features.php:88 -msgid "Affinity Tool" -msgstr "Beziehungs-Tool" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Treulos" -#: ../../include/features.php:88 -msgid "Filter stream activity by depth of relationships" -msgstr "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Sexabhängig" -#: ../../include/features.php:89 -msgid "Connection Filtering" -msgstr "Filter für Verbindungen" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Freunde/Begünstigte" -#: ../../include/features.php:89 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)" +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Lose" -#: ../../include/features.php:90 -msgid "Show channel suggestions" -msgstr "Kanalvorschläge anzeigen" +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Verlobt" -#: ../../include/features.php:95 -msgid "Post/Comment Tools" -msgstr "Beitrag-/Kommentar-Tools" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Verheiratet" -#: ../../include/features.php:96 -msgid "Community Tagging" -msgstr "Gemeinschaftliches Verschlagworten" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Gewissermaßen verheiratet" -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" -msgstr "Ermöglicht das Verschlagworten existierender Beiträge" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partner" -#: ../../include/features.php:97 -msgid "Post Categories" -msgstr "Beitrags-Kategorien" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Lebensgemeinschaft" -#: ../../include/features.php:97 -msgid "Add categories to your posts" -msgstr "Aktiviert Kategorien für Beiträge" +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Informelle Ehe" -#: ../../include/features.php:98 -msgid "Emoji Reactions" -msgstr "Emoji Reaktionen" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Glücklich" -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Aktiviert Emoji-Reaktionen für Beiträge" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Nicht Ausschau haltend" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Swinger" -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" -msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Betrogen" -#: ../../include/features.php:100 -msgid "Dislike Posts" -msgstr "Gefällt-mir-nicht-Beiträge" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Getrennt" -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" -msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Labil" -#: ../../include/features.php:101 -msgid "Star Posts" -msgstr "Beiträge mit Sternchen versehen" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Geschieden" -#: ../../include/features.php:101 -msgid "Ability to mark special posts with a star indicator" -msgstr "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Gewissermaßen geschieden" -#: ../../include/features.php:102 -msgid "Tag Cloud" -msgstr "Schlagwort-Wolke" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Verwitwet" -#: ../../include/features.php:102 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Ungewiss" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen." +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Es ist kompliziert" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Neue Verbindung zu dieser Gruppe hinzufügen" +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "Interessiert mich nicht" -#: ../../include/group.php:289 -msgid "edit" -msgstr "Bearbeiten" +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Frag mich mal" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Gruppe ändern" +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Gruppe hinzufügen" +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Nur ich" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Kanäle, die in keiner Gruppe sind" +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Öffentlich" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "hinzufügen" +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Jeder innerhalb des $Projectname Netzwerks" -#: ../../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, H:i" +#: ../../include/PermissionDescription.php:118 +#, php-format +msgid "Any account on %s" +msgstr "Jedes Nutzerkonto auf %s" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Beginnt:" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Alle meine Verbindungen" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Endet:" +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Nur Verbindungen, denen ich es explizit erlaube" -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Keine Angabe" +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "Alle Verbindungen einschließlich der noch nicht bestätigten" -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Aktion erforderlich" +#: ../../include/PermissionDescription.php:161 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)." -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Abgeschlossen" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils." -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "In Bearbeitung" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen." -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "gestrichen" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos." + +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten." #: ../../include/account.php:28 msgid "Not a valid email address" @@ -8899,6 +8430,11 @@ msgstr "Registrierungsbestätigung für %s" msgid "Registration request at %s" msgstr "Registrierungsanfrage auf %s" +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "Administrator" + #: ../../include/account.php:339 msgid "your registration password" msgstr "Dein Registrierungspasswort" @@ -8917,484 +8453,697 @@ msgstr "Nutzerkonto bestätigt." msgid "Registration revoked for %s" msgstr "Registrierung für %s wurde widerrufen" -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." - -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." - -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Nutzerkonto wurde bestätigt. Bitte melde Dich an!" -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." +#: ../../include/account.php:731 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." + +#: ../../include/account.php:736 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." #: ../../include/attach.php:247 ../../include/attach.php:333 msgid "Item was not found." msgstr "Beitrag wurde nicht gefunden." -#: ../../include/attach.php:499 +#: ../../include/attach.php:497 msgid "No source file." msgstr "Keine Quelldatei." -#: ../../include/attach.php:521 +#: ../../include/attach.php:519 msgid "Cannot locate file to replace" msgstr "Kann Datei zum Ersetzen nicht finden" -#: ../../include/attach.php:539 +#: ../../include/attach.php:537 msgid "Cannot locate file to revise/update" msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" -#: ../../include/attach.php:674 +#: ../../include/attach.php:672 #, php-format msgid "File exceeds size limit of %d" msgstr "Datei überschreitet das Größen-Limit von %d" -#: ../../include/attach.php:688 +#: ../../include/attach.php:686 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." -#: ../../include/attach.php:846 +#: ../../include/attach.php:842 msgid "File upload failed. Possible system limit or action terminated." msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." -#: ../../include/attach.php:859 +#: ../../include/attach.php:855 msgid "Stored file could not be verified. Upload failed." msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." -#: ../../include/attach.php:915 ../../include/attach.php:931 +#: ../../include/attach.php:909 ../../include/attach.php:925 msgid "Path not available." msgstr "Pfad nicht verfügbar." -#: ../../include/attach.php:977 ../../include/attach.php:1129 +#: ../../include/attach.php:971 ../../include/attach.php:1123 msgid "Empty pathname" msgstr "Leere Pfadangabe" -#: ../../include/attach.php:1003 +#: ../../include/attach.php:997 msgid "duplicate filename or path" msgstr "doppelter Dateiname oder Pfad" -#: ../../include/attach.php:1025 +#: ../../include/attach.php:1019 msgid "Path not found." msgstr "Pfad nicht gefunden." -#: ../../include/attach.php:1083 +#: ../../include/attach.php:1077 msgid "mkdir failed." msgstr "mkdir fehlgeschlagen." -#: ../../include/attach.php:1087 +#: ../../include/attach.php:1081 msgid "database storage failed." msgstr "Speichern in der Datenbank fehlgeschlagen." -#: ../../include/attach.php:1135 +#: ../../include/attach.php:1129 msgid "Empty path" msgstr "Leere Pfadangabe" -#: ../../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 "Bild/Foto" +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Namensfeld leer" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Element %s installieren: " +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Name ist zu lang" -#: ../../include/bbcode.php:182 -#, php-format +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Keine Account-Kennung" + +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." + +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." + +#: ../../include/channel.php:211 msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." +"Nickname has unsupported characters or is already being used on this site." +msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schrieb den folgenden %2$s %3$s" +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Standard-Profil" -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "Spoiler" +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal nicht verfügbar." -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 schrieb:" +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Unbekannt)" +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Geschlecht:" -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Für jeden im Internet sichtbar." +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Status:" -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Nur für Dich sichtbar." +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Homepage:" -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Für jedes $Projectname-Mitglied sichtbar." +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "gerade online" -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Für jeden sichtbar, der angemeldet ist." +#: ../../include/channel.php:1147 +msgid "Like this channel" +msgstr "Dieser Kanal gefällt mir" + +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "j. F Y" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "j. F" -#: ../../include/items.php:1149 +#: ../../include/channel.php:1179 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: ../../include/channel.php:1192 #, php-format -msgid "Visible to anybody on %s." -msgstr "Für jeden auf %s sichtbar." +msgid "for %1$d %2$s" +msgstr "seit %1$d %2$s" + +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" + +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Schlagworte:" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Politische Ansichten:" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Interessen:" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Gefällt:" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "Gefällt nicht:" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation und soziale Netzwerke:" + +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "Meine anderen Kanäle:" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "Bücher, Literatur:" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "Fernsehen:" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Tanz/Kultur/Unterhaltung:" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "Liebe/Romantik:" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "Arbeit/Anstellung:" + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: ../../include/channel.php:1251 +msgid "Like this thing" +msgstr "Gefällt mir" + +#: ../../include/features.php:48 +msgid "General Features" +msgstr "Allgemeine Funktionen" + +#: ../../include/features.php:50 +msgid "Content Expiration" +msgstr "Verfall von Inhalten" + +#: ../../include/features.php:50 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum." + +#: ../../include/features.php:51 +msgid "Multiple Profiles" +msgstr "Mehrfachprofile" + +#: ../../include/features.php:51 +msgid "Ability to create multiple profiles" +msgstr "Ermöglicht das Anlegen mehrerer Profile pro Kanal" + +#: ../../include/features.php:52 +msgid "Advanced Profiles" +msgstr "Erweiterte Profile" + +#: ../../include/features.php:52 +msgid "Additional profile sections and selections" +msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" + +#: ../../include/features.php:53 +msgid "Profile Import/Export" +msgstr "Profil-Import/Export" + +#: ../../include/features.php:53 +msgid "Save and load profile details across sites/channels" +msgstr "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren" + +#: ../../include/features.php:54 +msgid "Web Pages" +msgstr "Webseiten" + +#: ../../include/features.php:54 +msgid "Provide managed web pages on your channel" +msgstr "Ermöglicht das Erstellen von Webseiten in Deinem Kanal" + +#: ../../include/features.php:55 +msgid "Hide Rating" +msgstr "Bewertung verbergen" + +#: ../../include/features.php:55 +msgid "" +"Hide the rating buttons on your channel and profile pages. Note: People can " +"still rate you somewhere else." +msgstr "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten." + +#: ../../include/features.php:56 +msgid "Private Notes" +msgstr "Private Notizen" + +#: ../../include/features.php:56 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)" + +#: ../../include/features.php:57 +msgid "Navigation Channel Select" +msgstr "Kanal-Auswahl in der Navigationsleiste" + +#: ../../include/features.php:57 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü" + +#: ../../include/features.php:58 +msgid "Photo Location" +msgstr "Aufnahmeort" + +#: ../../include/features.php:58 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte" + +#: ../../include/features.php:59 +msgid "Access Controlled Chatrooms" +msgstr "Zugriffskontrollierte Chaträume" + +#: ../../include/features.php:59 +msgid "Provide chatrooms and chat services with access control." +msgstr "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an." + +#: ../../include/features.php:60 +msgid "Smart Birthdays" +msgstr "Smarte Geburtstage" + +#: ../../include/features.php:60 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind." + +#: ../../include/features.php:61 +msgid "Expert Mode" +msgstr "Expertenmodus" + +#: ../../include/features.php:61 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Aktiviert den Expertenmodus, der fortgeschrittene Konfigurationsoptionen zur Verfügung stellt" + +#: ../../include/features.php:62 +msgid "Premium Channel" +msgstr "Premium-Kanal" -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Für alle Verbindungen sichtbar." +#: ../../include/features.php:62 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Nur für akzeptierte Verbindungen sichtbar." +#: ../../include/features.php:67 +msgid "Post Composition Features" +msgstr "Nachbearbeitungsfunktionen" -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Sichtbar für bestimmte Verbindungen." +#: ../../include/features.php:70 +msgid "Large Photos" +msgstr "Große Fotos" -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Gruppe ist leer." +#: ../../include/features.php:70 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet." -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppe: %s" +#: ../../include/features.php:71 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds" -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Die Verbindung wurde nicht gefunden." +#: ../../include/features.php:72 +msgid "Even More Encryption" +msgstr "Noch mehr Verschlüsselung" -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "Profilfoto" +#: ../../include/features.php:72 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)" -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" +#: ../../include/features.php:73 +msgid "Enable Voting Tools" +msgstr "Umfragewerkzeuge aktivieren" -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" +msgstr "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" -#: ../../include/widgets.php:103 -msgid "System" -msgstr "System" +#: ../../include/features.php:74 +msgid "Delayed Posting" +msgstr "Verzögertes Senden" -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Neue App" +#: ../../include/features.php:74 +msgid "Allow posts to be published at a later date" +msgstr "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen" -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Vorschläge" +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Doppelte Beiträge unterdrücken" -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Mehr anzeigen …" +#: ../../include/features.php:75 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden." -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" +msgstr "Netzwerk- und Stream-Filter" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" +#: ../../include/features.php:82 +msgid "Search by Date" +msgstr "Suche nach Datum" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Adresse des Kanals eingeben" +#: ../../include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" +#: ../../include/features.php:83 ../../include/group.php:311 +msgid "Privacy Groups" +msgstr "Gruppen" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notizen" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" +msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eintrag löschen" +#: ../../include/features.php:84 +msgid "Save search terms for re-use" +msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alles" +#: ../../include/features.php:85 +msgid "Network Personal Tab" +msgstr "Persönlicher Netzwerkreiter" -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archive" +#: ../../include/features.php:85 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast" -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Aktualisieren" +#: ../../include/features.php:86 +msgid "Network New Tab" +msgstr "Netzwerkreiter Neu" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Konto-Einstellungen" +#: ../../include/features.php:86 +msgid "Enable tab to display all new Network activity" +msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Beziehungs-Tool" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Plugin-Einstellungen" +#: ../../include/features.php:88 +msgid "Connection Filtering" +msgstr "Filter für Verbindungen" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Anzeige-Einstellungen" +#: ../../include/features.php:88 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)" -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Klon-Adressen verwalten" +#: ../../include/features.php:89 +msgid "Show channel suggestions" +msgstr "Kanalvorschläge anzeigen" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Kanal exportieren" +#: ../../include/features.php:94 +msgid "Post/Comment Tools" +msgstr "Beitrag-/Kommentar-Tools" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Verbundene Apps" +#: ../../include/features.php:95 +msgid "Community Tagging" +msgstr "Gemeinschaftliches Verschlagworten" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" +#: ../../include/features.php:95 +msgid "Ability to tag existing posts" +msgstr "Ermöglicht das Verschlagworten existierender Beiträge" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Private Nachrichten" +#: ../../include/features.php:96 +msgid "Post Categories" +msgstr "Beitrags-Kategorien" -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Kombinierte Anzeige" +#: ../../include/features.php:96 +msgid "Add categories to your posts" +msgstr "Aktiviert Kategorien für Beiträge" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Konversationen" +#: ../../include/features.php:97 +msgid "Emoji Reactions" +msgstr "Emoji Reaktionen" -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Erhaltene Nachrichten" +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "Aktiviert Emoji-Reaktionen für Beiträge" -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Gesendete Nachrichten" +#: ../../include/features.php:98 +msgid "Ability to file posts under folders" +msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Keine Nachrichten." +#: ../../include/features.php:99 +msgid "Dislike Posts" +msgstr "Gefällt-mir-nicht-Beiträge" -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" +#: ../../include/features.php:99 +msgid "Ability to dislike posts/comments" +msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Kalenderwerkzeuge" +#: ../../include/features.php:100 +msgid "Star Posts" +msgstr "Beiträge mit Sternchen versehen" -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Kalender exportieren" +#: ../../include/features.php:100 +msgid "Ability to mark special posts with a star indicator" +msgstr "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol" -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Kalender importieren" +#: ../../include/features.php:101 +msgid "Tag Cloud" +msgstr "Schlagwort-Wolke" -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Übersicht" +#: ../../include/features.php:101 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Chatmitglieder" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Wikiliste" +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Einbetten ausgeschaltet" -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Wikiseiten" +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "Wer kann das sehen?" -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "Benutzerdefinierte Auswahl" + +#: ../../include/acl_selectors.php:273 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen." -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "Anzeigen" -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "Foto/Bild" +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Nicht anzeigen" -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Klick, um mehr anzuzeigen" +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Andere Netzwerke und Platformen" -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Bewertungswerkzeuge" +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann." -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Bewerte mich" +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Ausgeloggt." -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Bewertungen ansehen" +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Foren" +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Geburtstag" -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Aufgaben" +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Alter:" -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Dokumentation" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Informationen über das Projekt und diesen Hub" +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "Nie" -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Für Mitglieder" +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Für Administratoren" +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Für Entwickler" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "Jahr" +msgstr[1] "Jahre" -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "Monat" +msgstr[1] "Monate" -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Warteschlange kontrollieren" +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "Woche" +msgstr[1] "Wochen" -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "DB-Aktualisierungen" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "Tag" +msgstr[1] "Tage" -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "Stunde" +msgstr[1] "Stunden" -#: ../../include/activities.php:41 -msgid " and " -msgstr "und" +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "Minute" +msgstr[1] "Minuten" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "öffentliches Profil" +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "Sekunde" +msgstr[1] "Sekunden" -#: ../../include/activities.php:58 +#: ../../include/datetime.php:562 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s auf “%3$s” geändert" +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" -#: ../../include/activities.php:59 +#: ../../include/datetime.php:563 #, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besuche %1$s's %2$s" +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen." -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Anhänge:" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Neue Verbindung zu dieser Gruppe hinzufügen" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "$Projectname-Terminbenachrichtigung:" +#: ../../include/group.php:289 +msgid "edit" +msgstr "Bearbeiten" + +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Gruppe ändern" + +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Gruppe hinzufügen" + +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Kanäle, die in keiner Gruppe sind" #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Dieses Element löschen?" #: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "%s weniger anzeigen" +msgid "[-] show less" +msgstr "[-] Weniger anzeigen" #: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%s aufklappen" +msgid "[+] expand" +msgstr "[+] aufklappen" #: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s einklappen" +msgid "[-] collapse" +msgstr "[-] einklappen" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9624,222 +9373,277 @@ msgctxt "calendar" msgid "All day" msgstr "Ganztägig" -#: ../../include/contact_widgets.php:11 +#: ../../include/network.php:657 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" + +#: ../../include/network.php:1885 +msgid "No Subject" +msgstr "Kein Betreff" + +#: ../../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 Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Finde Kanäle" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "Fotospeicherung fehlgeschlagen." + +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "ein neues Foto" + +#: ../../include/photos.php:299 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s hat %2$s auf %3$s veröffentlicht" + +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" + +#: ../../include/zot.php:699 +msgid "Invalid data packet" +msgstr "Ungültiges Datenpaket" + +#: ../../include/zot.php:715 +msgid "Unable to verify channel signature" +msgstr "Konnte die Signatur des Kanals nicht verifizieren" + +#: ../../include/zot.php:2363 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Kann die Signatur der Seite von %s nicht verifizieren" + +#: ../../include/zot.php:3712 +msgid "invalid target signature" +msgstr "Ungültige Signatur des Ziels" + +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Neue Seite" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titel" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kann meine normalen Beiträge sehen" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kann mein Standardprofil sehen" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiele: Robert Morgenstein, Angeln" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kann meine Datei- und Bilderordner sehen" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Zufallsprofil" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Lade Freunde ein" +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeinsame Verbindung" -msgstr[1] "%d gemeinsame Verbindungen" +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mehr zeigen" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Verzeichnisoptionen" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Sicherer Modus" +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Nur öffentliche Foren" +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Nur dieser Hub" +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Kein Empfänger angegeben" +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[no subject]" +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kann in meine Datei- und Bilderordner schreiben" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kann Absender nicht bestimmen." +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten bearbeiten" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" -#: ../../include/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "Wer kann das sehen?" +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Benutzerdefinierte Auswahl" +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" -#: ../../include/acl_selectors.php:271 +#: ../../include/permissions.php:46 msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen." +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Anzeigen" +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Soziales Netzwerk" -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Nicht anzeigen" +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Soziales Netzwerk - Weitgehend öffentlich" -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Andere Netzwerke und Platformen" +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Soziales Netzwerk - Beschränkt" -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann." +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Soziales Netzwerk - Privat" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Geburtstag" +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Forum" -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Alter:" +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Forum - Weitgehend öffentlich" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - Beschränkt" -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "Nie" +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - Privat" -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Teilen von Feeds" -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Feeds - Weitgehend öffentlich" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "Jahr" -msgstr[1] "Jahre" +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Feeds - Beschränkt" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "Monat" -msgstr[1] "Monate" +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Für besondere Zwecke" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "Woche" -msgstr[1] "Wochen" +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "Tag" -msgstr[1] "Tage" +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Speziell - Gruppenarchiv" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "Stunde" -msgstr[1] "Stunden" +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "Minute" -msgstr[1] "Minuten" +#: ../../include/activities.php:41 +msgid " and " +msgstr "und" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "Sekunde" -msgstr[1] "Sekunden" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "öffentliches Profil" -#: ../../include/datetime.php:562 +#: ../../include/activities.php:58 #, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s auf “%3$s” geändert" -#: ../../include/datetime.php:563 +#: ../../include/activities.php:59 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" - -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" - -#: ../../include/zot.php:697 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" - -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" +msgid "Visit %1$s's %2$s" +msgstr "Besuche %1$s's %2$s" -#: ../../include/zot.php:2326 +#: ../../include/activities.php:62 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kann die Signatur der Seite von %s nicht verifizieren" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." -#: ../../include/zot.php:3703 -msgid "invalid target signature" -msgstr "Ungültige Signatur des Ziels" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Anhänge:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "$Projectname-Terminbenachrichtigung:" #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" @@ -9977,66 +9781,62 @@ msgstr "Größe der Avatare von Themenstartern" msgid "Set size of followup author photos" msgstr "Größe der Avatare von Kommentatoren" -#: ../../boot.php:1163 +#: ../../boot.php:1162 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Suche %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 "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../boot.php:1484 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "Aktualisierungsfehler auf %s" -#: ../../boot.php:1685 +#: ../../boot.php:1684 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können." #: ../../boot.php:1706 -msgid "Login/Email" -msgstr "Anmelden/E-Mail" - -#: ../../boot.php:1707 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1708 +#: ../../boot.php:1707 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:2277 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "auf/von mobile Ansicht wechseln" -#: ../../boot.php:2432 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." -#: ../../boot.php:2435 +#: ../../boot.php:2428 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Website-SSL-Fehler für %s" -#: ../../boot.php:2478 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "Cron-Aufgaben laufen nicht." -#: ../../boot.php:2482 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-Aufgaben für %s laufen nicht" diff --git a/view/de/hstrings.php b/view/de/hstrings.php index 6d6fd4ebe..eea433fac 100644 --- a/view/de/hstrings.php +++ b/view/de/hstrings.php @@ -4,39 +4,7 @@ if(! function_exists("string_plural_select_de")) { function string_plural_select_de($n){ return ($n != 1);; }} -App::$rtl = 0; -App::$strings["Social Networking"] = "Soziales Netzwerk"; -App::$strings["Social - Mostly Public"] = "Soziales Netzwerk - Weitgehend öffentlich"; -App::$strings["Social - Restricted"] = "Soziales Netzwerk - Beschränkt"; -App::$strings["Social - Private"] = "Soziales Netzwerk - Privat"; -App::$strings["Community Forum"] = "Forum"; -App::$strings["Forum - Mostly Public"] = "Forum - Weitgehend öffentlich"; -App::$strings["Forum - Restricted"] = "Forum - Beschränkt"; -App::$strings["Forum - Private"] = "Forum - Privat"; -App::$strings["Feed Republish"] = "Teilen von Feeds"; -App::$strings["Feed - Mostly Public"] = "Feeds - Weitgehend öffentlich"; -App::$strings["Feed - Restricted"] = "Feeds - Beschränkt"; -App::$strings["Special Purpose"] = "Für besondere Zwecke"; -App::$strings["Special - Celebrity/Soapbox"] = "Speziell - Mitteilungs-Kanal (keine Kommentare)"; -App::$strings["Special - Group Repository"] = "Speziell - Gruppenarchiv"; -App::$strings["Other"] = "Andere"; -App::$strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; -App::$strings["Can view my channel stream and posts"] = "Kann meinen Kanal-Stream und meine Beiträge sehen"; -App::$strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; -App::$strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; -App::$strings["Can view my connections"] = "Kann meine Verbindungen sehen"; -App::$strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen"; -App::$strings["Can upload/modify my file storage and photos"] = "Kann in meine Datei- und Bilderordner hochladen/ändern"; -App::$strings["Can view my channel webpages"] = "Kann die Webseiten meines Kanals sehen"; -App::$strings["Can create/edit my channel webpages"] = "Kann Webseiten in meinem Kanal erstellen/ändern"; -App::$strings["Can post on my channel (wall) page"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; -App::$strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; -App::$strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; -App::$strings["Can like/dislike profiles and profile things"] = "Kann Profile und Profilsachen mögen/nicht mögen"; -App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Kann an alle meine Verbindungen via @-Erwähnungen Nachrichten weiterleiten"; -App::$strings["Can chat with me"] = "Kann mit mir chatten"; -App::$strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; -App::$strings["Can administer my channel"] = "Kann meinen Kanal administrieren"; +; App::$strings["parent"] = "Übergeordnetes Verzeichnis"; App::$strings["Collection"] = "Sammlung"; App::$strings["Principal"] = "Prinzipal"; @@ -67,10 +35,65 @@ App::$strings["Not Found"] = "Nicht gefunden"; App::$strings["Page not found."] = "Seite nicht gefunden."; App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; App::$strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; -App::$strings["Requested profile is not available."] = "Das angefragte Profil ist nicht verfügbar."; +App::$strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; App::$strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist"; +App::$strings["Block Name"] = "Block-Name"; +App::$strings["Blocks"] = "Blöcke"; +App::$strings["Block Title"] = "Titel des Blocks"; +App::$strings["Created"] = "Erstellt"; +App::$strings["Edited"] = "Geändert"; +App::$strings["Share"] = "Teilen"; +App::$strings["View"] = "Ansicht"; +App::$strings["Channel not found."] = "Kanal nicht gefunden."; +App::$strings["Permissions denied."] = "Berechtigung verweigert."; +App::$strings["l, F j"] = "l, j. F"; +App::$strings["Link to Source"] = "Link zur Quelle"; +App::$strings["Edit Event"] = "Termin bearbeiten"; +App::$strings["Create Event"] = "Termin anlegen"; +App::$strings["Previous"] = "Voriges"; +App::$strings["Next"] = "Nächste"; +App::$strings["Export"] = "Exportieren"; +App::$strings["Import"] = "Import"; +App::$strings["Submit"] = "Bestätigen"; +App::$strings["Today"] = "Heute"; +App::$strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; +App::$strings["Posts and comments"] = "Beiträge und Kommentare"; +App::$strings["Only posts"] = "Nur Beiträge"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; +App::$strings["Room not found"] = "Chatraum nicht gefunden"; +App::$strings["Leave Room"] = "Raum verlassen"; +App::$strings["Delete Room"] = "Raum löschen"; +App::$strings["I am away right now"] = "Ich bin gerade nicht da"; +App::$strings["I am online"] = "Ich bin online"; +App::$strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; +App::$strings["Please enter a link URL:"] = "Gib eine URL ein:"; +App::$strings["Encrypt text"] = "Text verschlüsseln"; +App::$strings["Insert web link"] = "Link einfügen"; +App::$strings["Feature disabled."] = "Funktion deaktiviert."; +App::$strings["New Chatroom"] = "Neuer Chatraum"; +App::$strings["Chatroom name"] = "Chatraumname"; +App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)"; +App::$strings["Permissions"] = "Berechtigungen"; +App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; +App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; +App::$strings["Create New"] = "Neu anlegen"; +App::$strings["Expiration"] = "Verfall"; +App::$strings["min"] = "min"; App::$strings["Away"] = "Abwesend"; App::$strings["Online"] = "Online"; +App::$strings["Invalid item."] = "Ungültiges Element."; +App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; +App::$strings["My Bookmarks"] = "Meine Lesezeichen"; +App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; +App::$strings["Continue"] = "Fortfahren"; +App::$strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; +App::$strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; +App::$strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; App::$strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; App::$strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; App::$strings["Connection updated."] = "Verbindung aktualisiert."; @@ -135,7 +158,6 @@ App::$strings["Do not import posts with this text"] = "Beiträge mit diesem Text App::$strings["This information is public!"] = "Diese Information ist öffentlich!"; App::$strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung"; App::$strings["inherited"] = "geerbt"; -App::$strings["Submit"] = "Bestätigen"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; App::$strings["Their Settings"] = "Deren Einstellungen"; App::$strings["My Settings"] = "Meine Einstellungen"; @@ -144,30 +166,6 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; App::$strings["Last update:"] = "Letzte Aktualisierung:"; App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert."; -App::$strings["Item not found."] = "Element nicht gefunden."; -App::$strings["First Name"] = "Vorname"; -App::$strings["Last Name"] = "Nachname"; -App::$strings["Nickname"] = "Spitzname"; -App::$strings["Full Name"] = "Voller Name"; -App::$strings["Email"] = "E-Mail"; -App::$strings["Profile Photo"] = "Profilfoto"; -App::$strings["Profile Photo 16px"] = "Profilfoto 16 px"; -App::$strings["Profile Photo 32px"] = "Profilfoto 32 px"; -App::$strings["Profile Photo 48px"] = "Profilfoto 48 px"; -App::$strings["Profile Photo 64px"] = "Profilfoto 64 px"; -App::$strings["Profile Photo 80px"] = "Profilfoto 80 px"; -App::$strings["Profile Photo 128px"] = "Profilfoto 128 px"; -App::$strings["Timezone"] = "Zeitzone"; -App::$strings["Homepage URL"] = "Homepage-URL"; -App::$strings["Language"] = "Sprache"; -App::$strings["Birth Year"] = "Geburtsjahr"; -App::$strings["Birth Month"] = "Geburtsmonat"; -App::$strings["Birth Day"] = "Geburtstag"; -App::$strings["Birthdate"] = "Geburtsdatum"; -App::$strings["Gender"] = "Geschlecht"; -App::$strings["Male"] = "Männlich"; -App::$strings["Female"] = "Weiblich"; -App::$strings["Channel added."] = "Kanal hinzugefügt."; App::$strings["%d rating"] = array( 0 => "%d Bewertung", 1 => "%d Bewertungen", @@ -198,74 +196,13 @@ App::$strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; App::$strings["Newest to Oldest"] = "Neueste zuerst"; App::$strings["Oldest to Newest"] = "Älteste zuerst"; App::$strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; -App::$strings["Continue"] = "Fortfahren"; -App::$strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; -App::$strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; -App::$strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; -App::$strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; -App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; -App::$strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; -App::$strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; -App::$strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; -App::$strings["Event not found."] = "Termin nicht gefunden."; -App::$strings["event"] = "Termin"; -App::$strings["Edit event title"] = "Termintitel bearbeiten"; -App::$strings["Event title"] = "Termintitel"; -App::$strings["Required"] = "Benötigt"; -App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; -App::$strings["Edit Category"] = "Kategorie bearbeiten"; -App::$strings["Category"] = "Kategorie"; -App::$strings["Edit start date and time"] = "Startdatum und -zeit bearbeiten"; -App::$strings["Start date and time"] = "Startdatum und -zeit"; -App::$strings["Finish date and time are not known or not relevant"] = "Enddatum und -zeit sind unbekannt oder irrelevant"; -App::$strings["Edit finish date and time"] = "Enddatum und -zeit bearbeiten"; -App::$strings["Finish date and time"] = "Enddatum und -zeit"; -App::$strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; -App::$strings["Edit Description"] = "Beschreibung bearbeiten"; -App::$strings["Description"] = "Beschreibung"; -App::$strings["Edit Location"] = "Ort bearbeiten"; -App::$strings["Location"] = "Ort"; -App::$strings["Share this event"] = "Den Termin teilen"; -App::$strings["Preview"] = "Vorschau"; -App::$strings["Permission settings"] = "Berechtigungs-Einstellungen"; -App::$strings["Advanced Options"] = "Weitere Optionen"; -App::$strings["l, F j"] = "l, j. F"; -App::$strings["Edit event"] = "Termin bearbeiten"; -App::$strings["Delete event"] = "Termin löschen"; -App::$strings["Link to Source"] = "Link zur Quelle"; -App::$strings["calendar"] = "Kalender"; -App::$strings["Edit Event"] = "Termin bearbeiten"; -App::$strings["Create Event"] = "Termin anlegen"; -App::$strings["Previous"] = "Voriges"; -App::$strings["Next"] = "Nächste"; -App::$strings["Export"] = "Exportieren"; -App::$strings["View"] = "Ansicht"; -App::$strings["Month"] = "Monat"; -App::$strings["Week"] = "Woche"; -App::$strings["Day"] = "Tag"; -App::$strings["Today"] = "Heute"; -App::$strings["Event removed"] = "Termin gelöscht"; -App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; -App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; -App::$strings["My Bookmarks"] = "Meine Lesezeichen"; -App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; +App::$strings["Item not found."] = "Element nicht gefunden."; App::$strings["Item not found"] = "Element nicht gefunden"; -App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; -App::$strings["Edit post"] = "Bearbeite Beitrag"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Cancel"] = "Abbrechen"; -App::$strings["Invalid item."] = "Ungültiges Element."; -App::$strings["Channel not found."] = "Kanal nicht gefunden."; -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:"] = "Speichern in Ordner:"; -App::$strings["- select -"] = "– auswählen –"; -App::$strings["Save"] = "Speichern"; +App::$strings["Title (optional)"] = "Titel (optional)"; +App::$strings["Edit Block"] = "Block bearbeiten"; +App::$strings["No channel."] = "Kein Kanal."; +App::$strings["Common connections"] = "Gemeinsame Verbindungen"; +App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; App::$strings["Blocked"] = "Blockiert"; App::$strings["Ignored"] = "Ignoriert"; App::$strings["Hidden"] = "Versteckt"; @@ -317,38 +254,51 @@ App::$strings["select a photo from your photo albums"] = "ein Foto aus meinen Fo App::$strings["Crop Image"] = "Bild zuschneiden"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; App::$strings["Done Editing"] = "Bearbeitung fertigstellen"; -App::$strings["webpage"] = "Webseite"; -App::$strings["block"] = "Block"; -App::$strings["layout"] = "Layout"; -App::$strings["menu"] = "Menü"; -App::$strings["%s element installed"] = "Element für %s installiert"; -App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen"; -App::$strings["Permissions denied."] = "Berechtigung verweigert."; -App::$strings["Import"] = "Import"; +App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; +App::$strings["Edit post"] = "Bearbeite Beitrag"; +App::$strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; +App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; +App::$strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; +App::$strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; +App::$strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; +App::$strings["Event not found."] = "Termin nicht gefunden."; +App::$strings["event"] = "Termin"; +App::$strings["Edit event title"] = "Termintitel bearbeiten"; +App::$strings["Event title"] = "Termintitel"; +App::$strings["Required"] = "Benötigt"; +App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; +App::$strings["Edit Category"] = "Kategorie bearbeiten"; +App::$strings["Category"] = "Kategorie"; +App::$strings["Edit start date and time"] = "Startdatum und -zeit bearbeiten"; +App::$strings["Start date and time"] = "Startdatum und -zeit"; +App::$strings["Finish date and time are not known or not relevant"] = "Enddatum und -zeit sind unbekannt oder irrelevant"; +App::$strings["Edit finish date and time"] = "Enddatum und -zeit bearbeiten"; +App::$strings["Finish date and time"] = "Enddatum und -zeit"; +App::$strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; +App::$strings["Edit Description"] = "Beschreibung bearbeiten"; +App::$strings["Description"] = "Beschreibung"; +App::$strings["Edit Location"] = "Ort bearbeiten"; +App::$strings["Location"] = "Ort"; +App::$strings["Share this event"] = "Den Termin teilen"; +App::$strings["Preview"] = "Vorschau"; +App::$strings["Permission settings"] = "Berechtigungs-Einstellungen"; +App::$strings["Advanced Options"] = "Weitere Optionen"; +App::$strings["Edit event"] = "Termin bearbeiten"; +App::$strings["Delete event"] = "Termin löschen"; +App::$strings["calendar"] = "Kalender"; +App::$strings["Event removed"] = "Termin gelöscht"; +App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; +App::$strings["Photos"] = "Fotos"; +App::$strings["Cancel"] = "Abbrechen"; App::$strings["This site is not a directory server"] = "Diese Webseite ist kein Verzeichnisserver"; App::$strings["This directory server requires an access token"] = "Dieser Verzeichnisserver benötigt einen Zugriffstoken"; -App::$strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; -App::$strings["Room not found"] = "Chatraum nicht gefunden"; -App::$strings["Leave Room"] = "Raum verlassen"; -App::$strings["Delete Room"] = "Raum löschen"; -App::$strings["I am away right now"] = "Ich bin gerade nicht da"; -App::$strings["I am online"] = "Ich bin online"; -App::$strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; -App::$strings["Please enter a link URL:"] = "Gib eine URL ein:"; -App::$strings["Encrypt text"] = "Text verschlüsseln"; -App::$strings["Insert web link"] = "Link einfügen"; -App::$strings["Feature disabled."] = "Funktion deaktiviert."; -App::$strings["New Chatroom"] = "Neuer Chatraum"; -App::$strings["Chatroom name"] = "Chatraumname"; -App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)"; -App::$strings["Permissions"] = "Berechtigungen"; -App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; -App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; -App::$strings["Create New"] = "Neu anlegen"; -App::$strings["Expiration"] = "Verfall"; -App::$strings["min"] = "min"; +App::$strings["Save to Folder:"] = "Speichern in Ordner:"; +App::$strings["- select -"] = "– auswählen –"; +App::$strings["Save"] = "Speichern"; App::$strings["Invalid message"] = "Ungültige Beitrags-ID (mid)"; App::$strings["no results"] = "keine Ergebnisse"; +App::$strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s"; App::$strings["channel sync processed"] = "Kanal-Sync verarbeitet"; App::$strings["queued"] = "zur Warteschlange hinzugefügt"; App::$strings["posted"] = "zugestellt"; @@ -360,14 +310,14 @@ App::$strings["recipient not found"] = "Empfänger nicht gefunden."; App::$strings["mail recalled"] = "Mail widerrufen"; App::$strings["duplicate mail received"] = "Doppelte Mail erhalten"; App::$strings["mail delivered"] = "Mail zugestellt"; -App::$strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s"; -App::$strings["Options"] = "Optionen"; -App::$strings["Redeliver"] = "Erneut zustellen"; App::$strings["Layout Name"] = "Layout-Name"; App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)"; App::$strings["Edit Layout"] = "Layout bearbeiten"; App::$strings["Page link"] = "Seiten-Link"; App::$strings["Edit Webpage"] = "Webseite bearbeiten"; +App::$strings["Channel added."] = "Kanal hinzugefügt."; +App::$strings["network"] = "Netzwerk"; +App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Gruppe wurde erstellt."; App::$strings["Could not create privacy group."] = "Gruppe konnte nicht erstellt werden."; App::$strings["Privacy group not found."] = "Gruppe nicht gefunden."; @@ -381,33 +331,16 @@ App::$strings["Privacy group editor"] = "Gruppeneditor"; App::$strings["Members"] = "Mitglieder"; App::$strings["All Connected Channels"] = "Alle verbundenen Kanäle"; App::$strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; -App::$strings["App installed."] = "App installiert."; -App::$strings["Malformed app."] = "Fehlerhafte App."; -App::$strings["Embed code"] = "Code einbetten"; -App::$strings["Edit App"] = "App bearbeiten"; -App::$strings["Create App"] = "App erstellen"; -App::$strings["Name of app"] = "Name der App"; -App::$strings["Location (URL) of app"] = "Ort (URL) der App"; -App::$strings["Photo icon URL"] = "URL zum Icon"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; -App::$strings["Categories (optional, comma separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -App::$strings["Version ID"] = "Versions-ID"; -App::$strings["Price of app"] = "Preis der App"; -App::$strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; +App::$strings["Share content from Firefox to \$Projectname"] = "Inhalte von Firefox nach \$Projectname teilen"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Aktiviert den \$Projectname-Provider für firefox"; +App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; +App::$strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; +App::$strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; App::$strings["Documentation Search"] = "Suche in der Dokumentation"; App::$strings["Help:"] = "Hilfe:"; App::$strings["Help"] = "Hilfe"; App::$strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation"; -App::$strings["Item not available."] = "Element nicht verfügbar."; -App::$strings["Layout updated."] = "Layout aktualisiert."; -App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; -App::$strings["Layout not found."] = "Layout nicht gefunden."; -App::$strings["Module Name:"] = "Modulname:"; -App::$strings["Layout Help"] = "Layout-Hilfe"; -App::$strings["Share content from Firefox to \$Projectname"] = "Inhalte von Firefox nach \$Projectname teilen"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Aktiviert den \$Projectname-Provider für firefox"; -App::$strings["network"] = "Netzwerk"; -App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Zugriff verweigert."; App::$strings["File not found."] = "Datei nicht gefunden."; App::$strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; @@ -419,100 +352,8 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Diese URL v App::$strings["Share this file"] = "Diese Datei freigeben"; App::$strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; App::$strings["Notify your contacts about this file"] = "Meine Kontakte über diese Datei benachrichtigen"; -App::$strings["Layouts"] = "Layouts"; -App::$strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; -App::$strings["Layout Description"] = "Layout-Beschreibung"; -App::$strings["Created"] = "Erstellt"; -App::$strings["Edited"] = "Geändert"; -App::$strings["Share"] = "Teilen"; -App::$strings["Download PDL file"] = "PDL-Datei herunterladen"; -App::$strings["Like/Dislike"] = "Mögen/Nicht mögen"; -App::$strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Um fortzufahren melde Dich bitte mit Deiner \$Projectname-ID an oder registriere Dich als neues \$Projectname-Mitglied."; -App::$strings["Invalid request."] = "Ungültige Anfrage."; -App::$strings["channel"] = "Kanal"; -App::$strings["thing"] = "Sache"; -App::$strings["Channel unavailable."] = "Kanal nicht vorhanden."; -App::$strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; -App::$strings["photo"] = "Foto"; -App::$strings["status"] = "Status"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; -App::$strings["Action completed."] = "Aktion durchgeführt."; -App::$strings["Thank you."] = "Vielen Dank."; -App::$strings["Profile not found."] = "Profil nicht gefunden."; -App::$strings["Profile deleted."] = "Profil gelöscht."; -App::$strings["Profile-"] = "Profil-"; -App::$strings["New profile created."] = "Neues Profil erstellt."; -App::$strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; -App::$strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; -App::$strings["Profile Name is required."] = "Profil-Name erforderlich."; -App::$strings["Marital Status"] = "Familienstand"; -App::$strings["Romantic Partner"] = "Romantische Partner"; -App::$strings["Likes"] = "Gefällt"; -App::$strings["Dislikes"] = "Gefällt nicht"; -App::$strings["Work/Employment"] = "Arbeit/Anstellung"; -App::$strings["Religion"] = "Religion"; -App::$strings["Political Views"] = "Politische Ansichten"; -App::$strings["Sexual Preference"] = "Sexuelle Orientierung"; -App::$strings["Homepage"] = "Webseite"; -App::$strings["Interests"] = "Hobbys/Interessen"; -App::$strings["Address"] = "Adresse"; -App::$strings["Profile updated."] = "Profil aktualisiert."; -App::$strings["Hide your connections list from viewers of this profile"] = "Deine Verbindungen vor Betrachtern dieses Profils verbergen"; -App::$strings["Edit Profile Details"] = "Bearbeite Profil-Details"; -App::$strings["View this profile"] = "Dieses Profil ansehen"; -App::$strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -App::$strings["Profile Tools"] = "Profilwerkzeuge"; -App::$strings["Change cover photo"] = "Titelbild ändern"; -App::$strings["Change profile photo"] = "Profilfoto ändern"; -App::$strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen"; -App::$strings["Clone this profile"] = "Dieses Profil klonen"; -App::$strings["Delete this profile"] = "Dieses Profil löschen"; -App::$strings["Add profile things"] = "Sachen zum Profil hinzufügen"; -App::$strings["Personal"] = "Persönlich"; -App::$strings["Relation"] = "Beziehung"; -App::$strings["Miscellaneous"] = "Verschiedenes"; -App::$strings["Import profile from file"] = "Profil aus einer Datei importieren"; -App::$strings["Export profile to file"] = "Profil in eine Datei exportieren"; -App::$strings["Your gender"] = "Dein Geschlecht"; -App::$strings["Marital status"] = "Familienstand"; -App::$strings["Sexual preference"] = "Sexuelle Orientierung"; -App::$strings["Profile name"] = "Profilname"; -App::$strings["This is your default profile."] = "Das ist Dein Standardprofil."; -App::$strings["Your full name"] = "Dein voller Name"; -App::$strings["Title/Description"] = "Titel/Beschreibung"; -App::$strings["Street address"] = "Straße und Hausnummer"; -App::$strings["Locality/City"] = "Wohnort"; -App::$strings["Region/State"] = "Region/Bundesstaat"; -App::$strings["Postal/Zip code"] = "Postleitzahl"; -App::$strings["Country"] = "Land"; -App::$strings["Who (if applicable)"] = "Wer (falls anwendbar)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; -App::$strings["Since (date)"] = "Seit (Datum)"; -App::$strings["Tell us about yourself"] = "Erzähle uns ein wenig von Dir"; -App::$strings["Hometown"] = "Heimatort"; -App::$strings["Political views"] = "Politische Ansichten"; -App::$strings["Religious views"] = "Religiöse Ansichten"; -App::$strings["Keywords used in directory listings"] = "Schlüsselwörter, die in Verzeichnis-Auflistungen verwendet werden"; -App::$strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; -App::$strings["Musical interests"] = "Musikalische Interessen"; -App::$strings["Books, literature"] = "Bücher, Literatur"; -App::$strings["Television"] = "Fernsehen"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film/Tanz/Kultur/Unterhaltung"; -App::$strings["Hobbies/Interests"] = "Hobbys/Interessen"; -App::$strings["Love/Romance"] = "Liebe/Romantik"; -App::$strings["School/Education"] = "Schule/Ausbildung"; -App::$strings["Contact information and social networks"] = "Kontaktinformation und soziale Netzwerke"; -App::$strings["My other channels"] = "Meine anderen Kanäle"; -App::$strings["Profile Image"] = "Profilfoto:"; -App::$strings["Edit Profiles"] = "Profile bearbeiten"; +App::$strings["Apps"] = "Apps"; +App::$strings["Item not available."] = "Element nicht verfügbar."; App::$strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; App::$strings["Nothing to import."] = "Nichts zu importieren."; App::$strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; @@ -533,8 +374,6 @@ App::$strings["For either option, please choose whether to make this hub your ne App::$strings["Make this hub my primary location"] = "Dieser $Pojectname-Hub ist mein primärer Hub."; App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher"; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen."; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Willkommen auf %s"; App::$strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; App::$strings["Empty post discarded."] = "Leeren Beitrag verworfen."; App::$strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; @@ -543,76 +382,60 @@ App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht ge App::$strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; -App::$strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; -App::$strings["Profile Photos"] = "Profilfotos"; -App::$strings["Album not found."] = "Album nicht gefunden."; -App::$strings["Delete Album"] = "Album löschen"; -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"] = "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager"; -App::$strings["Delete Photo"] = "Foto löschen"; -App::$strings["No photos selected"] = "Keine Fotos ausgewählt"; -App::$strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; -App::$strings["Upload Photos"] = "Fotos hochladen"; -App::$strings["Enter an album name"] = "Namen für ein neues Album eingeben"; -App::$strings["or select an existing album (doubleclick)"] = "oder ein bereits vorhandenes auswählen (Doppelklick)"; -App::$strings["Create a status post for this upload"] = "Einen Statusbeitrag für diesen Upload erzeugen"; -App::$strings["Caption (optional):"] = "Beschriftung (optional):"; -App::$strings["Description (optional):"] = "Beschreibung (optional):"; -App::$strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden"; -App::$strings["Contact Photos"] = "Kontakt-Bilder"; -App::$strings["Show Newest First"] = "Neueste zuerst anzeigen"; -App::$strings["Show Oldest First"] = "Älteste zuerst anzeigen"; -App::$strings["View Photo"] = "Foto ansehen"; -App::$strings["Edit Album"] = "Album bearbeiten"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; -App::$strings["Photo not available"] = "Foto nicht verfügbar"; -App::$strings["Use as profile photo"] = "Als Profilfoto verwenden"; -App::$strings["Use as cover photo"] = "Als Titelbild verwenden"; -App::$strings["Private Photo"] = "Privates Foto"; -App::$strings["View Full Size"] = "In voller Größe anzeigen"; -App::$strings["Remove"] = "Entfernen"; -App::$strings["Edit photo"] = "Foto bearbeiten"; -App::$strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; -App::$strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; -App::$strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; -App::$strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; -App::$strings["Caption"] = "Bildunterschrift"; -App::$strings["Add a Tag"] = "Schlagwort hinzufügen"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; -App::$strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; -App::$strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; -App::$strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; -App::$strings["Please wait"] = "Bitte warten"; -App::$strings["This is you"] = "Das bist Du"; -App::$strings["Comment"] = "Kommentar"; -App::$strings["__ctx:title__ Likes"] = "Gefällt mir"; -App::$strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; -App::$strings["__ctx:title__ Agree"] = "Zustimmungen"; -App::$strings["__ctx:title__ Disagree"] = "Ablehnungen"; -App::$strings["__ctx:title__ Abstain"] = "Enthaltungen"; -App::$strings["__ctx:title__ Attending"] = "Zusagen"; -App::$strings["__ctx:title__ Not attending"] = "Absagen"; -App::$strings["__ctx:title__ Might attend"] = "Vielleicht"; -App::$strings["View all"] = "Alles anzeigen"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Gefällt mir", - 1 => "Gefällt mir", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Gefällt nicht", - 1 => "Gefällt nicht", -); -App::$strings["Photo Tools"] = "Fotowerkzeuge"; -App::$strings["In This Photo:"] = "Auf diesem Foto:"; -App::$strings["Map"] = "Karte"; -App::$strings["__ctx:noun__ Likes"] = "Gefällt mir"; -App::$strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; -App::$strings["Close"] = "Schließen"; -App::$strings["View Album"] = "Album ansehen"; -App::$strings["Recent Photos"] = "Neueste Fotos"; -App::$strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; -App::$strings["Visible to:"] = "Sichtbar für:"; +App::$strings["Layouts"] = "Layouts"; +App::$strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; +App::$strings["Layout Description"] = "Layout-Beschreibung"; +App::$strings["Download PDL file"] = "PDL-Datei herunterladen"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Willkommen auf %s"; +App::$strings["First Name"] = "Vorname"; +App::$strings["Last Name"] = "Nachname"; +App::$strings["Nickname"] = "Spitzname"; +App::$strings["Full Name"] = "Voller Name"; +App::$strings["Email"] = "E-Mail"; +App::$strings["Profile Photo"] = "Profilfoto"; +App::$strings["Profile Photo 16px"] = "Profilfoto 16 px"; +App::$strings["Profile Photo 32px"] = "Profilfoto 32 px"; +App::$strings["Profile Photo 48px"] = "Profilfoto 48 px"; +App::$strings["Profile Photo 64px"] = "Profilfoto 64 px"; +App::$strings["Profile Photo 80px"] = "Profilfoto 80 px"; +App::$strings["Profile Photo 128px"] = "Profilfoto 128 px"; +App::$strings["Timezone"] = "Zeitzone"; +App::$strings["Homepage URL"] = "Homepage-URL"; +App::$strings["Language"] = "Sprache"; +App::$strings["Birth Year"] = "Geburtsjahr"; +App::$strings["Birth Month"] = "Geburtsmonat"; +App::$strings["Birth Day"] = "Geburtstag"; +App::$strings["Birthdate"] = "Geburtsdatum"; +App::$strings["Gender"] = "Geschlecht"; +App::$strings["Male"] = "Männlich"; +App::$strings["Female"] = "Weiblich"; +App::$strings["webpage"] = "Webseite"; +App::$strings["block"] = "Block"; +App::$strings["layout"] = "Layout"; +App::$strings["menu"] = "Menü"; +App::$strings["%s element installed"] = "Element für %s installiert"; +App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen"; +App::$strings["Like/Dislike"] = "Mögen/Nicht mögen"; +App::$strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Um fortzufahren melde Dich bitte mit Deiner \$Projectname-ID an oder registriere Dich als neues \$Projectname-Mitglied."; +App::$strings["Invalid request."] = "Ungültige Anfrage."; +App::$strings["channel"] = "Kanal"; +App::$strings["thing"] = "Sache"; +App::$strings["Channel unavailable."] = "Kanal nicht vorhanden."; +App::$strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; +App::$strings["photo"] = "Foto"; +App::$strings["status"] = "Status"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; +App::$strings["Action completed."] = "Aktion durchgeführt."; +App::$strings["Thank you."] = "Vielen Dank."; App::$strings["Import completed"] = "Import abgeschlossen"; App::$strings["Import Items"] = "Beiträge importieren"; App::$strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren."; @@ -635,12 +458,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. Gib meine \$Projectname-Adresse im Suchfeld ein."; App::$strings["or visit"] = "oder besuche"; App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; +App::$strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; +App::$strings["Visible to:"] = "Sichtbar für:"; App::$strings["Location not found."] = "Klon nicht gefunden."; App::$strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen"; App::$strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst."; App::$strings["Syncing locations"] = "Synchronisiere Klone"; App::$strings["No locations found."] = "Keine Klon-Adressen gefunden."; App::$strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; +App::$strings["Address"] = "Adresse"; App::$strings["Primary"] = "Primär"; App::$strings["Drop"] = "Löschen"; App::$strings["Sync Now"] = "Jetzt synchronisieren"; @@ -681,30 +507,6 @@ App::$strings["Make Default"] = "Zum Standard machen"; App::$strings["%d new messages"] = "%d neue Nachrichten"; App::$strings["%d new introductions"] = "%d neue Vorstellungen"; App::$strings["Delegated Channel"] = "Delegierte Kanäle"; -App::$strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; -App::$strings["Unable to create menu."] = "Kann Menü nicht erstellen."; -App::$strings["Menu Name"] = "Name des Menüs"; -App::$strings["Unique name (not visible on webpage) - required"] = "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich"; -App::$strings["Menu Title"] = "Menütitel"; -App::$strings["Visible on webpage - leave empty for no title"] = "Sichtbar auf der Webseite – für keinen Titel leer lassen"; -App::$strings["Allow Bookmarks"] = "Lesezeichen erlauben"; -App::$strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; -App::$strings["Submit and proceed"] = "Absenden und fortfahren"; -App::$strings["Menus"] = "Menüs"; -App::$strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; -App::$strings["Delete this menu"] = "Lösche dieses Menü"; -App::$strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; -App::$strings["Edit this menu"] = "Dieses Menü bearbeiten"; -App::$strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; -App::$strings["Menu not found."] = "Menü nicht gefunden"; -App::$strings["Edit Menu"] = "Menü bearbeiten"; -App::$strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; -App::$strings["Menu name"] = "Menü Name"; -App::$strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; -App::$strings["Menu title"] = "Menü Titel"; -App::$strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; -App::$strings["Allow bookmarks"] = "Erlaube Lesezeichen"; -App::$strings["Not found."] = "Nicht gefunden."; App::$strings["No valid account found."] = "Kein gültiges Konto gefunden."; App::$strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; App::$strings["Site Member (%s)"] = "Nutzer (%s)"; @@ -721,9 +523,37 @@ App::$strings["Forgot your Password?"] = "Kennwort vergessen?"; App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; App::$strings["Email Address"] = "E-Mail Adresse"; App::$strings["Reset"] = "Zurücksetzen"; +App::$strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; +App::$strings["Unable to create menu."] = "Kann Menü nicht erstellen."; +App::$strings["Menu Name"] = "Name des Menüs"; +App::$strings["Unique name (not visible on webpage) - required"] = "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich"; +App::$strings["Menu Title"] = "Menütitel"; +App::$strings["Visible on webpage - leave empty for no title"] = "Sichtbar auf der Webseite – für keinen Titel leer lassen"; +App::$strings["Allow Bookmarks"] = "Lesezeichen erlauben"; +App::$strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; +App::$strings["Submit and proceed"] = "Absenden und fortfahren"; +App::$strings["Menus"] = "Menüs"; +App::$strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; +App::$strings["Delete this menu"] = "Lösche dieses Menü"; +App::$strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; +App::$strings["Edit this menu"] = "Dieses Menü bearbeiten"; +App::$strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; +App::$strings["Menu not found."] = "Menü nicht gefunden"; +App::$strings["Edit Menu"] = "Menü bearbeiten"; +App::$strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; +App::$strings["Menu name"] = "Menü Name"; +App::$strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; +App::$strings["Menu title"] = "Menü Titel"; +App::$strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; +App::$strings["Allow bookmarks"] = "Erlaube Lesezeichen"; +App::$strings["Not found."] = "Nicht gefunden."; App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; App::$strings["Mood"] = "Laune"; App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; +App::$strings["Profile Match"] = "Profil-Übereinstimmungen"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; +App::$strings["is interested in:"] = "interessiert sich für:"; +App::$strings["No matches"] = "Keine Übereinstimmungen"; App::$strings["No such group"] = "Gruppe nicht gefunden"; App::$strings["No such channel"] = "Kanal nicht gefunden"; App::$strings["forum"] = "Forum"; @@ -733,13 +563,6 @@ App::$strings["Privacy group: "] = "Gruppe:"; App::$strings["Invalid connection."] = "Ungültige Verbindung."; App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; App::$strings["System Notifications"] = "System-Benachrichtigungen"; -App::$strings["Profile Match"] = "Profil-Übereinstimmungen"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; -App::$strings["is interested in:"] = "interessiert sich für:"; -App::$strings["No matches"] = "Keine Übereinstimmungen"; -App::$strings["Posts and comments"] = "Beiträge und Kommentare"; -App::$strings["Only posts"] = "Nur Beiträge"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; App::$strings["Unable to create element."] = "Element konnte nicht erstellt werden."; App::$strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; App::$strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; @@ -769,6 +592,203 @@ App::$strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; App::$strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; App::$strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; App::$strings["Link text"] = "Link Text"; +App::$strings["Name or caption"] = "Name oder Titel"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; +App::$strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s"; +App::$strings["Channel role and privacy"] = "Kanaltyp und Privatspäre-Einstellungen"; +App::$strings["Select a channel role with your privacy requirements."] = "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre."; +App::$strings["Read more about roles"] = "Mehr Informationen über Rollen"; +App::$strings["Create Channel"] = "Einen neuen Kanal anlegen"; +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."] = "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen."; +App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; +App::$strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; +App::$strings["Discard"] = "Verwerfen"; +App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; +App::$strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; +App::$strings["Profile Photos"] = "Profilfotos"; +App::$strings["Album not found."] = "Album nicht gefunden."; +App::$strings["Delete Album"] = "Album löschen"; +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"] = "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager"; +App::$strings["Delete Photo"] = "Foto löschen"; +App::$strings["No photos selected"] = "Keine Fotos ausgewählt"; +App::$strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; +App::$strings["Upload Photos"] = "Fotos hochladen"; +App::$strings["Enter an album name"] = "Namen für ein neues Album eingeben"; +App::$strings["or select an existing album (doubleclick)"] = "oder ein bereits vorhandenes auswählen (Doppelklick)"; +App::$strings["Create a status post for this upload"] = "Einen Statusbeitrag für diesen Upload erzeugen"; +App::$strings["Caption (optional):"] = "Beschriftung (optional):"; +App::$strings["Description (optional):"] = "Beschreibung (optional):"; +App::$strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden"; +App::$strings["Contact Photos"] = "Kontakt-Bilder"; +App::$strings["Show Newest First"] = "Neueste zuerst anzeigen"; +App::$strings["Show Oldest First"] = "Älteste zuerst anzeigen"; +App::$strings["View Photo"] = "Foto ansehen"; +App::$strings["Edit Album"] = "Album bearbeiten"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; +App::$strings["Photo not available"] = "Foto nicht verfügbar"; +App::$strings["Use as profile photo"] = "Als Profilfoto verwenden"; +App::$strings["Use as cover photo"] = "Als Titelbild verwenden"; +App::$strings["Private Photo"] = "Privates Foto"; +App::$strings["View Full Size"] = "In voller Größe anzeigen"; +App::$strings["Remove"] = "Entfernen"; +App::$strings["Edit photo"] = "Foto bearbeiten"; +App::$strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; +App::$strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; +App::$strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; +App::$strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; +App::$strings["Caption"] = "Bildunterschrift"; +App::$strings["Add a Tag"] = "Schlagwort hinzufügen"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; +App::$strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; +App::$strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; +App::$strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; +App::$strings["Please wait"] = "Bitte warten"; +App::$strings["This is you"] = "Das bist Du"; +App::$strings["Comment"] = "Kommentar"; +App::$strings["__ctx:title__ Likes"] = "Gefällt mir"; +App::$strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; +App::$strings["__ctx:title__ Agree"] = "Zustimmungen"; +App::$strings["__ctx:title__ Disagree"] = "Ablehnungen"; +App::$strings["__ctx:title__ Abstain"] = "Enthaltungen"; +App::$strings["__ctx:title__ Attending"] = "Zusagen"; +App::$strings["__ctx:title__ Not attending"] = "Absagen"; +App::$strings["__ctx:title__ Might attend"] = "Vielleicht"; +App::$strings["View all"] = "Alles anzeigen"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Gefällt mir", + 1 => "Gefällt mir", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Gefällt nicht", + 1 => "Gefällt nicht", +); +App::$strings["Photo Tools"] = "Fotowerkzeuge"; +App::$strings["In This Photo:"] = "Auf diesem Foto:"; +App::$strings["Map"] = "Karte"; +App::$strings["__ctx:noun__ Likes"] = "Gefällt mir"; +App::$strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; +App::$strings["Close"] = "Schließen"; +App::$strings["View Album"] = "Album ansehen"; +App::$strings["Recent Photos"] = "Neueste Fotos"; +App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; +App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; +App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; +App::$strings["[today]"] = "[Heute]"; +App::$strings["posted an event"] = "hat einen Termin veröffentlicht"; +App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; +App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; +App::$strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +App::$strings["Login failed."] = "Login fehlgeschlagen."; +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."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert."; +App::$strings["Configuration Editor"] = "Konfigurationseditor"; +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."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; +App::$strings["Layout updated."] = "Layout aktualisiert."; +App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; +App::$strings["Layout not found."] = "Layout nicht gefunden."; +App::$strings["Module Name:"] = "Modulname:"; +App::$strings["Layout Help"] = "Layout-Hilfe"; +App::$strings["Poke"] = "Anstupsen"; +App::$strings["Poke somebody"] = "Jemanden anstupsen"; +App::$strings["Poke/Prod"] = "Anstupsen/Knuffen"; +App::$strings["Poke, prod or do other things to somebody"] = "Jemanden anstupsen, knuffen oder sonstiges"; +App::$strings["Recipient"] = "Empfänger"; +App::$strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; +App::$strings["Make this post private"] = "Diesen Beitrag privat machen"; +App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; +App::$strings["Profile not found."] = "Profil nicht gefunden."; +App::$strings["Profile deleted."] = "Profil gelöscht."; +App::$strings["Profile-"] = "Profil-"; +App::$strings["New profile created."] = "Neues Profil erstellt."; +App::$strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; +App::$strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; +App::$strings["Profile Name is required."] = "Profil-Name erforderlich."; +App::$strings["Marital Status"] = "Familienstand"; +App::$strings["Romantic Partner"] = "Romantische Partner"; +App::$strings["Likes"] = "Gefällt"; +App::$strings["Dislikes"] = "Gefällt nicht"; +App::$strings["Work/Employment"] = "Arbeit/Anstellung"; +App::$strings["Religion"] = "Religion"; +App::$strings["Political Views"] = "Politische Ansichten"; +App::$strings["Sexual Preference"] = "Sexuelle Orientierung"; +App::$strings["Homepage"] = "Webseite"; +App::$strings["Interests"] = "Hobbys/Interessen"; +App::$strings["Profile updated."] = "Profil aktualisiert."; +App::$strings["Hide your connections list from viewers of this profile"] = "Deine Verbindungen vor Betrachtern dieses Profils verbergen"; +App::$strings["Edit Profile Details"] = "Bearbeite Profil-Details"; +App::$strings["View this profile"] = "Dieses Profil ansehen"; +App::$strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; +App::$strings["Profile Tools"] = "Profilwerkzeuge"; +App::$strings["Change cover photo"] = "Titelbild ändern"; +App::$strings["Change profile photo"] = "Profilfoto ändern"; +App::$strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen"; +App::$strings["Clone this profile"] = "Dieses Profil klonen"; +App::$strings["Delete this profile"] = "Dieses Profil löschen"; +App::$strings["Add profile things"] = "Sachen zum Profil hinzufügen"; +App::$strings["Personal"] = "Persönlich"; +App::$strings["Relation"] = "Beziehung"; +App::$strings["Miscellaneous"] = "Verschiedenes"; +App::$strings["Import profile from file"] = "Profil aus einer Datei importieren"; +App::$strings["Export profile to file"] = "Profil in eine Datei exportieren"; +App::$strings["Your gender"] = "Dein Geschlecht"; +App::$strings["Marital status"] = "Familienstand"; +App::$strings["Sexual preference"] = "Sexuelle Orientierung"; +App::$strings["Profile name"] = "Profilname"; +App::$strings["This is your default profile."] = "Das ist Dein Standardprofil."; +App::$strings["Your full name"] = "Dein voller Name"; +App::$strings["Title/Description"] = "Titel/Beschreibung"; +App::$strings["Street address"] = "Straße und Hausnummer"; +App::$strings["Locality/City"] = "Wohnort"; +App::$strings["Region/State"] = "Region/Bundesstaat"; +App::$strings["Postal/Zip code"] = "Postleitzahl"; +App::$strings["Country"] = "Land"; +App::$strings["Who (if applicable)"] = "Wer (falls anwendbar)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; +App::$strings["Since (date)"] = "Seit (Datum)"; +App::$strings["Tell us about yourself"] = "Erzähle uns ein wenig von Dir"; +App::$strings["Hometown"] = "Heimatort"; +App::$strings["Political views"] = "Politische Ansichten"; +App::$strings["Religious views"] = "Religiöse Ansichten"; +App::$strings["Keywords used in directory listings"] = "Schlüsselwörter, die in Verzeichnis-Auflistungen verwendet werden"; +App::$strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; +App::$strings["Musical interests"] = "Musikalische Interessen"; +App::$strings["Books, literature"] = "Bücher, Literatur"; +App::$strings["Television"] = "Fernsehen"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film/Tanz/Kultur/Unterhaltung"; +App::$strings["Hobbies/Interests"] = "Hobbys/Interessen"; +App::$strings["Love/Romance"] = "Liebe/Romantik"; +App::$strings["School/Education"] = "Schule/Ausbildung"; +App::$strings["Contact information and social networks"] = "Kontaktinformation und soziale Netzwerke"; +App::$strings["My other channels"] = "Meine anderen Kanäle"; +App::$strings["Profile Image"] = "Profilfoto:"; +App::$strings["Edit Profiles"] = "Profile bearbeiten"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; +App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; +App::$strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; +App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; +App::$strings["Profile"] = "Profil"; +App::$strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; +App::$strings["Visible To"] = "Sichtbar für"; +App::$strings["Public Hubs"] = "Öffentliche Hubs"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im \$Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen."; +App::$strings["Hub URL"] = "Hub-URL"; +App::$strings["Access Type"] = "Zugriffstyp"; +App::$strings["Registration Policy"] = "Registrierungsrichtlinien"; +App::$strings["Stats"] = "Statistiken"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Bewertungen"; +App::$strings["Rate"] = "Bewerten"; +App::$strings["Website:"] = "Webseite:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; +App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; +App::$strings["No ratings"] = "Keine Bewertungen"; +App::$strings["Rating: "] = "Bewertung: "; +App::$strings["Website: "] = "Webseite: "; +App::$strings["Description: "] = "Beschreibung: "; App::$strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; App::$strings["# Accounts"] = "Anzahl der Konten"; App::$strings["# blocked accounts"] = "Anzahl der blockierten Konten"; @@ -1011,91 +1031,19 @@ App::$strings["(In addition to basic fields)"] = "(zusätzlich zu notwendige Fel App::$strings["All available fields"] = "Alle verfügbaren Felder"; App::$strings["Custom Fields"] = "Benutzerdefinierte Felder"; App::$strings["Create Custom Field"] = "Erstelle benutzerdefiniertes Feld"; -App::$strings["Name or caption"] = "Name oder Titel"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; -App::$strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s"; -App::$strings["Channel role and privacy"] = "Kanaltyp und Privatspäre-Einstellungen"; -App::$strings["Select a channel role with your privacy requirements."] = "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre."; -App::$strings["Read more about roles"] = "Mehr Informationen über Rollen"; -App::$strings["Create Channel"] = "Einen neuen Kanal anlegen"; -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."] = "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen."; -App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; -App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; -App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; -App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; -App::$strings["[today]"] = "[Heute]"; -App::$strings["posted an event"] = "hat einen Termin veröffentlicht"; -App::$strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; -App::$strings["Discard"] = "Verwerfen"; -App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; -App::$strings["Poke"] = "Anstupsen"; -App::$strings["Poke somebody"] = "Jemanden anstupsen"; -App::$strings["Poke/Prod"] = "Anstupsen/Knuffen"; -App::$strings["Poke, prod or do other things to somebody"] = "Jemanden anstupsen, knuffen oder sonstiges"; -App::$strings["Recipient"] = "Empfänger"; -App::$strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; -App::$strings["Make this post private"] = "Diesen Beitrag privat machen"; -App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; -App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -App::$strings["Login failed."] = "Login fehlgeschlagen."; -App::$strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; -App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; -App::$strings["Profile"] = "Profil"; -App::$strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; -App::$strings["Visible To"] = "Sichtbar für"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert."; -App::$strings["Configuration Editor"] = "Konfigurationseditor"; -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."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; -App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; -App::$strings["Version %s"] = "Version %s"; -App::$strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; -App::$strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; -App::$strings["Tag: "] = "Schlagwort: "; -App::$strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; -App::$strings["Current load average: "] = "Aktuelles Load Average:"; -App::$strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bitte besuchen Sie hubzilla.org, um mehr über \$Projectname zu erfahren."; -App::$strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -App::$strings["\$projectname issues"] = "\$projectname-Bugtracker"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; -App::$strings["Site Administrators"] = "Administratoren"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; -App::$strings["The error message was:"] = "Die Fehlermeldung war:"; -App::$strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; -App::$strings["Remote Authentication"] = "Entfernte Authentifizierung"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; -App::$strings["Authenticate"] = "Authentifizieren"; -App::$strings["Public Hubs"] = "Öffentliche Hubs"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im \$Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen."; -App::$strings["Hub URL"] = "Hub-URL"; -App::$strings["Access Type"] = "Zugriffstyp"; -App::$strings["Registration Policy"] = "Registrierungsrichtlinien"; -App::$strings["Stats"] = "Statistiken"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Bewertungen"; -App::$strings["Rate"] = "Bewerten"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; -App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; -App::$strings["Block Name"] = "Block-Name"; -App::$strings["Blocks"] = "Blöcke"; -App::$strings["Block Title"] = "Titel des Blocks"; -App::$strings["Website:"] = "Webseite:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; -App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; -App::$strings["No ratings"] = "Keine Bewertungen"; -App::$strings["Rating: "] = "Bewertung: "; -App::$strings["Website: "] = "Webseite: "; -App::$strings["Description: "] = "Beschreibung: "; -App::$strings["Apps"] = "Apps"; -App::$strings["Title (optional)"] = "Titel (optional)"; -App::$strings["Edit Block"] = "Block bearbeiten"; -App::$strings["No channel."] = "Kein Kanal."; -App::$strings["Common connections"] = "Gemeinsame Verbindungen"; -App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; +App::$strings["App installed."] = "App installiert."; +App::$strings["Malformed app."] = "Fehlerhafte App."; +App::$strings["Embed code"] = "Code einbetten"; +App::$strings["Edit App"] = "App bearbeiten"; +App::$strings["Create App"] = "App erstellen"; +App::$strings["Name of app"] = "Name der App"; +App::$strings["Location (URL) of app"] = "Ort (URL) der App"; +App::$strings["Photo icon URL"] = "URL zum Icon"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; +App::$strings["Categories (optional, comma separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +App::$strings["Version ID"] = "Versions-ID"; +App::$strings["Price of app"] = "Preis der App"; +App::$strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; App::$strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; App::$strings["Save Bookmark"] = "Lesezeichen speichern"; App::$strings["URL of bookmark"] = "URL des Lesezeichens"; @@ -1121,7 +1069,7 @@ App::$strings["no"] = "nein"; App::$strings["yes"] = "ja"; App::$strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; App::$strings["Register"] = "Registrieren"; -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."] = "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Ansenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte auf neue Mail mit entsprechenden Hinweisen."; +App::$strings["Proceed to create your first channel"] = "Fortfahren und Deinen ersten Kanal anlegen"; App::$strings["Please login."] = "Bitte melde dich an."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; App::$strings["Remove This Account"] = "Dieses Konto löschen"; @@ -1138,23 +1086,17 @@ App::$strings["This channel will be completely removed from the network. "] = "D App::$strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; App::$strings["Remove Channel"] = "Kanal löschen"; -App::$strings["Export Channel"] = "Kanal exportieren"; -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."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; -App::$strings["Export Content"] = "Kanal und Inhalte exportieren"; -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."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; -App::$strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres."; -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 kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; +App::$strings["The error message was:"] = "Die Fehlermeldung war:"; +App::$strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; +App::$strings["Remote Authentication"] = "Entfernte Authentifizierung"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; +App::$strings["Authenticate"] = "Authentifizieren"; App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; App::$strings["Search results for: %s"] = "Suchergebnisse für: %s"; App::$strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; App::$strings["Name is required"] = "Name ist erforderlich"; App::$strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; -App::$strings["This channel is limited to %d tokens"] = "Dieser Kanal ist auf %d Token begrenzt"; -App::$strings["Name and Password are required."] = "Name und Passwort sind erforderlich."; -App::$strings["Token saved."] = "Token gespeichert."; App::$strings["Not valid email."] = "Keine gültige E-Mail Adresse."; App::$strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."; App::$strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."; @@ -1187,12 +1129,6 @@ App::$strings["Confirm New Password"] = "Bestätige das neue Passwort"; App::$strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"; App::$strings["Email Address:"] = "Email Adresse:"; App::$strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; -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."] = "Mit diesem Formular kannst Du temporäre Zugangs-IDs anlegen, um Inhalte mit Nicht-Mitgliedern zu teilen. Die IDs können in Berechtigungslisten (ACLs) verwendet werden, und Besucher können sich damit einloggen, um auf private Inhalte zuzugreifen."; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Du kannst auch Dropbox-ähnliche Zugriffslinks an Andere weitergeben, indem du das Login-Passwort an eine entsprechende URL anhängst wie nachfolgend gezeigt. Beispiele:"; -App::$strings["Guest Access Tokens"] = "Gastzugangstoken"; -App::$strings["Login Name"] = "Anmeldename"; -App::$strings["Login Password"] = "Anmeldepasswort"; -App::$strings["Expires (yyyy-mm-dd)"] = "Läuft ab (jjjj-mm-tt)"; App::$strings["Additional Features"] = "Zusätzliche Funktionen"; App::$strings["Connector Settings"] = "Connector-Einstellungen"; App::$strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte"; @@ -1355,6 +1291,7 @@ App::$strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; App::$strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; App::$strings["mysqli or postgres PHP module"] = "mysqli oder 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."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; @@ -1365,6 +1302,7 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert."; App::$strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert."; +App::$strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert."; 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."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."; 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."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; @@ -1376,7 +1314,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."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."; 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."] = "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält."; App::$strings["%s is writable"] = "%s ist beschreibbar"; -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"] = "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Hubzilla-Stammverzeichnisses"; +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 benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"; App::$strings["store is writable"] = "store ist schreibbar"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."; 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!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich."; @@ -1384,7 +1322,6 @@ 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."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer \$Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind."; -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."] = "Wenn Du sicher bist, dass das Zertifikat gültig und von einer vertrauenswürdigen Zertifizierungsstelle signiert ist, prüfe auf ggf. noch zu installierende Zwischenzertifikate (intermediate). Diese werden nicht unbedingt von Browsern benötigt, aber sehr wohl für die Kommunikation zwischen Servern."; App::$strings["SSL certificate validation"] = "SSL Zertifikatverifizierung"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:"; App::$strings["Url rewrite is working"] = "Url rewrite funktioniert"; @@ -1396,20 +1333,19 @@ App::$strings["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; App::$strings["NEW"] = "NEU"; App::$strings["Remove all files"] = "Alle Dateien löschen"; App::$strings["Remove this file"] = "Diese Datei löschen"; -App::$strings["Thing updated"] = "Sache aktualisiert"; -App::$strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; -App::$strings["Thing added"] = "Sache hinzugefügt"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Sache anzeigen"; -App::$strings["item not found."] = "Eintrag nicht gefunden"; -App::$strings["Edit Thing"] = "Sache bearbeiten"; -App::$strings["Select a profile"] = "Wähle ein Profil"; -App::$strings["Post an activity"] = "Aktivitätsnachricht senden"; -App::$strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; -App::$strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; -App::$strings["URL of thing (optional)"] = "URL der Sache (optional)"; -App::$strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; -App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; +App::$strings["Version %s"] = "Version %s"; +App::$strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; +App::$strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; +App::$strings["Tag: "] = "Schlagwort: "; +App::$strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; +App::$strings["Current load average: "] = "Aktuelles Load Average:"; +App::$strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bitte besuchen Sie hubzilla.org, um mehr über \$Projectname zu erfahren."; +App::$strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +App::$strings["\$projectname issues"] = "\$projectname-Bugtracker"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; +App::$strings["Site Administrators"] = "Administratoren"; App::$strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; App::$strings["Source created."] = "Quelle erstellt."; App::$strings["Source updated."] = "Quelle aktualisiert."; @@ -1437,38 +1373,60 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s App::$strings["Tag removed"] = "Schlagwort entfernt"; App::$strings["Remove Item Tag"] = "Schlagwort entfernen"; App::$strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; -App::$strings["Webpages"] = "Webseiten"; -App::$strings["Actions"] = "Aktionen"; -App::$strings["Page Link"] = "Seiten-Link"; -App::$strings["Page Title"] = "Seitentitel"; -App::$strings["Not found"] = "Nicht gefunden"; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Sandbox"] = "Sandbox"; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandkasten\\n\\nInhalte, die Du hier **veränderst** und **als Vorschau anzeigst**, *werden nicht gespeichert*.\""; -App::$strings["Revision Comparison"] = "Revisionsvergleich"; -App::$strings["Revert"] = "Rückgängig machen"; -App::$strings["Enter the name of your new wiki:"] = "Gib einen Namen für Dein neues Wiki ein:"; -App::$strings["Enter the name of the new page:"] = "Geben Sie den Namen der neuen Seite ein:"; -App::$strings["Enter the new name:"] = "Geben Sie den neuen Namen ein:"; -App::$strings["Embed image from photo albums"] = "Bild aus Fotoalben einbetten"; -App::$strings["Embed an image from your albums"] = "Betten Sie ein Bild aus Ihren Alben ein"; -App::$strings["OK"] = "Ok"; -App::$strings["Choose images to embed"] = "Wählen Sie Bilder zum Einbetten aus"; -App::$strings["Choose an album"] = "Wählen Sie ein Album aus"; -App::$strings["Choose a different album..."] = "Wählen Sie ein anderes Album aus..."; -App::$strings["Error getting album list"] = "Fehler beim Holen der Albenliste"; -App::$strings["Error getting photo link"] = "Fehler beim Holen des Fotolinks"; -App::$strings["Error getting album"] = "Fehler beim Holen des Albums"; +App::$strings["Thing updated"] = "Sache aktualisiert"; +App::$strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; +App::$strings["Thing added"] = "Sache hinzugefügt"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Sache anzeigen"; +App::$strings["item not found."] = "Eintrag nicht gefunden"; +App::$strings["Edit Thing"] = "Sache bearbeiten"; +App::$strings["Select a profile"] = "Wähle ein Profil"; +App::$strings["Post an activity"] = "Aktivitätsnachricht senden"; +App::$strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; +App::$strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; +App::$strings["URL of thing (optional)"] = "URL der Sache (optional)"; +App::$strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; +App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; +App::$strings["Export Channel"] = "Kanal exportieren"; +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."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; +App::$strings["Export Content"] = "Kanal und Inhalte exportieren"; +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."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; +App::$strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres."; +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 kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; App::$strings["No connections."] = "Keine Verbindungen."; App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; App::$strings["View Connections"] = "Verbindungen anzeigen"; App::$strings["Source of Item"] = "Quelle des Elements"; -App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; -App::$strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; -App::$strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; +App::$strings["Webpages"] = "Webseiten"; +App::$strings["Actions"] = "Aktionen"; +App::$strings["Page Link"] = "Seiten-Link"; +App::$strings["Page Title"] = "Seitentitel"; App::$strings["Xchan Lookup"] = "Xchan-Suche"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; +App::$strings["Site Admin"] = "Hub-Administration"; +App::$strings["Bug Report"] = "Fehler-Rückmeldung"; +App::$strings["View Bookmarks"] = "Lesezeichen ansehen"; +App::$strings["My Chatrooms"] = "Meine Chaträume"; +App::$strings["Firefox Share"] = "Teilen-Knopf für Firefox"; +App::$strings["Remote Diagnostics"] = "Ferndiagnose"; +App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; +App::$strings["Login"] = "Anmelden"; +App::$strings["Grid"] = "Grid"; +App::$strings["Channel Home"] = "Mein Kanal"; +App::$strings["Events"] = "Termine"; +App::$strings["Directory"] = "Verzeichnis"; +App::$strings["Mail"] = "Mail"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Testen"; +App::$strings["Suggest"] = "Empfehlen"; +App::$strings["Random Channel"] = "Zufälliger Kanal"; +App::$strings["Invite"] = "Einladen"; +App::$strings["Features"] = "Funktionen"; +App::$strings["Post"] = "Beitrag schreiben"; +App::$strings["Purchase"] = "Kaufen"; App::$strings["Missing room name"] = "Der Chatraum hat keinen Namen"; App::$strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; App::$strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; @@ -1516,27 +1474,6 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Bitte b App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Benachrichtigung]"; App::$strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; App::$strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; -App::$strings["Site Admin"] = "Hub-Administration"; -App::$strings["Bug Report"] = "Fehler-Rückmeldung"; -App::$strings["View Bookmarks"] = "Lesezeichen ansehen"; -App::$strings["My Chatrooms"] = "Meine Chaträume"; -App::$strings["Firefox Share"] = "Teilen-Knopf für Firefox"; -App::$strings["Remote Diagnostics"] = "Ferndiagnose"; -App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; -App::$strings["Login"] = "Anmelden"; -App::$strings["Grid"] = "Grid"; -App::$strings["Channel Home"] = "Mein Kanal"; -App::$strings["Events"] = "Termine"; -App::$strings["Directory"] = "Verzeichnis"; -App::$strings["Mail"] = "Mail"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Testen"; -App::$strings["Suggest"] = "Empfehlen"; -App::$strings["Random Channel"] = "Zufälliger Kanal"; -App::$strings["Invite"] = "Einladen"; -App::$strings["Features"] = "Funktionen"; -App::$strings["Post"] = "Beitrag schreiben"; -App::$strings["Purchase"] = "Kaufen"; App::$strings["Private Message"] = "Private Nachricht"; App::$strings["Select"] = "Auswählen"; App::$strings["Save to Folder"] = "In Ordner speichern"; @@ -1573,7 +1510,7 @@ App::$strings["Expires: %s"] = "Verfällt: %s"; App::$strings["Save Bookmarks"] = "Favoriten speichern"; App::$strings["Add to Calendar"] = "Zum Kalender hinzufügen"; App::$strings["Mark all seen"] = "Alle als gelesen markieren"; -App::$strings["%s show all"] = "%s mehr anzeigen"; +App::$strings["[+] show all"] = "[+] Alle anzeigen"; App::$strings["Bold"] = "Fett"; App::$strings["Italic"] = "Kursiv"; App::$strings["Underline"] = "Unterstrichen"; @@ -1582,93 +1519,9 @@ App::$strings["Code"] = "Code"; App::$strings["Image"] = "Bild"; App::$strings["Insert Link"] = "Link einfügen"; App::$strings["Video"] = "Video"; -App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen"; -App::$strings["Only me"] = "Nur ich"; -App::$strings["Public"] = "Öffentlich"; -App::$strings["Anybody in the \$Projectname network"] = "Jeder innerhalb des \$Projectname Netzwerks"; -App::$strings["Any account on %s"] = "Jedes Nutzerkonto auf %s"; -App::$strings["Any of my connections"] = "Alle meine Verbindungen"; -App::$strings["Only connections I specifically allow"] = "Nur Verbindungen, denen ich es explizit erlaube"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Alle Verbindungen einschließlich der noch nicht bestätigten"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils."; -App::$strings["This is your default setting for who can view your connections"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen."; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos."; -App::$strings["This is your default setting for the audience of your webpages"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten."; App::$strings["No username found in import file."] = "Kein Benutzername in der Importdatei gefunden."; App::$strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Webseitenlimit von %lu Bytes"; -App::$strings["Image file is empty."] = "Bilddatei ist leer."; -App::$strings["Photo storage failed."] = "Fotospeicherung fehlgeschlagen."; -App::$strings["a new photo"] = "ein neues Foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s hat %2\$s auf %3\$s veröffentlicht"; -App::$strings["Photo Albums"] = "Fotoalben"; -App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; -App::$strings["Logout"] = "Abmelden"; -App::$strings["End this session"] = "Beende diese Sitzung"; -App::$strings["Home"] = "Home"; -App::$strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -App::$strings["Your profile page"] = "Deine Profilseite"; -App::$strings["Manage/Edit profiles"] = "Profile verwalten"; -App::$strings["Edit Profile"] = "Profile bearbeiten"; -App::$strings["Edit your profile"] = "Profil bearbeiten"; -App::$strings["Your photos"] = "Deine Bilder"; -App::$strings["Your files"] = "Deine Dateien"; -App::$strings["Your chatrooms"] = "Deine Chaträume"; -App::$strings["Bookmarks"] = "Lesezeichen"; -App::$strings["Your bookmarks"] = "Deine Lesezeichen"; -App::$strings["Your webpages"] = "Deine Webseiten"; -App::$strings["Your wiki"] = "Dein Wiki"; -App::$strings["Sign in"] = "Anmelden"; -App::$strings["%s - click to logout"] = "%s - Klick zum Abmelden"; -App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; -App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; -App::$strings["Home Page"] = "Homepage"; -App::$strings["Create an account"] = "Erzeuge ein Konto"; -App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; -App::$strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Channel Directory"] = "Kanal-Verzeichnis"; -App::$strings["Your grid"] = "Dein Grid"; -App::$strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; -App::$strings["Channel home"] = "Mein Kanal"; -App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; -App::$strings["Notices"] = "Benachrichtigungen"; -App::$strings["Notifications"] = "Benachrichtigungen"; -App::$strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; -App::$strings["Private mail"] = "Persönliche Mail"; -App::$strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; -App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; -App::$strings["Inbox"] = "Eingang"; -App::$strings["Outbox"] = "Ausgang"; -App::$strings["New Message"] = "Neue Nachricht"; -App::$strings["Event Calendar"] = "Terminkalender"; -App::$strings["See all events"] = "Alle Termine ansehen"; -App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; -App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; -App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; -App::$strings["Admin"] = "Administration"; -App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; -App::$strings["Loading..."] = "Lädt ..."; -App::$strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Please wait..."] = "Bitte warten..."; -App::$strings["view full size"] = "In Vollbildansicht anschauen"; -App::$strings["Administrator"] = "Administrator"; -App::$strings["No Subject"] = "Kein Betreff"; -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"] = "Neue Seite"; -App::$strings["Title"] = "Titel"; App::$strings["Categories"] = "Kategorien"; App::$strings["Tags"] = "Schlagwörter"; App::$strings["Keywords"] = "Schlüsselwörter"; @@ -1678,196 +1531,34 @@ App::$strings["want"] = "will"; App::$strings["wants"] = "will"; App::$strings["likes"] = "gefällt"; App::$strings["dislikes"] = "missfällt"; -App::$strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; -App::$strings["Empty name"] = "Namensfeld leer"; -App::$strings["Name too long"] = "Name ist zu lang"; -App::$strings["No account identifier"] = "Keine Account-Kennung"; -App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; -App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; -App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; -App::$strings["Default Profile"] = "Standard-Profil"; -App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; -App::$strings["Create New Profile"] = "Neues Profil erstellen"; -App::$strings["Visible to everybody"] = "Für jeden sichtbar"; -App::$strings["Gender:"] = "Geschlecht:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Homepage:"; -App::$strings["Online Now"] = "gerade online"; -App::$strings["Like this channel"] = "Dieser Kanal gefällt mir"; -App::$strings["j F, Y"] = "j. F Y"; -App::$strings["j F"] = "j. F"; -App::$strings["Birthday:"] = "Geburtstag:"; -App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; -App::$strings["Tags:"] = "Schlagworte:"; -App::$strings["Political Views:"] = "Politische Ansichten:"; -App::$strings["Religion:"] = "Religion:"; -App::$strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; -App::$strings["Likes:"] = "Gefällt:"; -App::$strings["Dislikes:"] = "Gefällt nicht:"; -App::$strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; -App::$strings["My other channels:"] = "Meine anderen Kanäle:"; -App::$strings["Musical interests:"] = "Musikalische Interessen:"; -App::$strings["Books, literature:"] = "Bücher, Literatur:"; -App::$strings["Television:"] = "Fernsehen:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; -App::$strings["Love/Romance:"] = "Liebe/Romantik:"; -App::$strings["Work/employment:"] = "Arbeit/Anstellung:"; -App::$strings["School/education:"] = "Schule/Ausbildung:"; -App::$strings["Like this thing"] = "Gefällt mir"; -App::$strings["New window"] = "Neues Fenster"; -App::$strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab"; -App::$strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; -App::$strings["poked"] = "stupste"; -App::$strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; -App::$strings["Categories:"] = "Kategorien:"; -App::$strings["Filed under:"] = "Gespeichert unter:"; -App::$strings["View in context"] = "Im Zusammenhang anschauen"; -App::$strings["remove"] = "lösche"; -App::$strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; -App::$strings["View Source"] = "Quelle anzeigen"; -App::$strings["Follow Thread"] = "Unterhaltung folgen"; -App::$strings["Unfollow Thread"] = "Unterhaltung nicht mehr folgen"; -App::$strings["Activity/Posts"] = "Aktivitäten/Beiträge"; -App::$strings["Edit Connection"] = "Verbindung bearbeiten"; -App::$strings["Message"] = "Nachricht"; -App::$strings["%s likes this."] = "%s gefällt das."; -App::$strings["%s doesn't like this."] = "%s gefällt das nicht."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d Person gefällt das.", - 1 => "%2\$d Leuten gefällt das.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d Person gefällt das nicht.", - 1 => "%2\$d Leuten gefällt das nicht.", -); -App::$strings["and"] = "und"; -App::$strings[", and %d other people"] = array( - 0 => "", - 1 => ", und %d andere", -); -App::$strings["%s like this."] = "%s gefällt das."; -App::$strings["%s don't like this."] = "%s gefällt das nicht."; -App::$strings["Set your location"] = "Standort"; -App::$strings["Clear browser location"] = "Browser-Standort löschen"; -App::$strings["Tag term:"] = "Schlagwort:"; -App::$strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; -App::$strings["Page link name"] = "Link zur Seite"; -App::$strings["Post as"] = "Veröffentlichen als"; -App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; -App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen"; -App::$strings["Discover"] = "Entdecken"; -App::$strings["Imported public streams"] = "Importierte öffentliche Beiträge"; -App::$strings["Commented Order"] = "Neueste Kommentare"; -App::$strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; -App::$strings["Posted Order"] = "Neueste Beiträge"; -App::$strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; -App::$strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; -App::$strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; -App::$strings["Starred"] = "Markiert"; -App::$strings["Favourite Posts"] = "Markierte Beiträge"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; -App::$strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -App::$strings["About"] = "Über"; -App::$strings["Profile Details"] = "Profil-Details"; -App::$strings["Files and Storage"] = "Dateien und Speicher"; -App::$strings["Chatrooms"] = "Chaträume"; -App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; -App::$strings["Manage Webpages"] = "Webseiten verwalten"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Zusage", - 1 => "Zusagen", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Absage", - 1 => "Absagen", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => " Unentschlossen", - 1 => "Unentschlossene", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Zustimmung", - 1 => "Zustimmungen", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Ablehnung", - 1 => "Ablehnungen", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Enthaltung", - 1 => "Enthaltungen", -); +App::$strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; +App::$strings["Starts:"] = "Beginnt:"; +App::$strings["Finishes:"] = "Endet:"; +App::$strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; +App::$strings["Not specified"] = "Keine Angabe"; +App::$strings["Needs Action"] = "Aktion erforderlich"; +App::$strings["Completed"] = "Abgeschlossen"; +App::$strings["In Process"] = "In Bearbeitung"; +App::$strings["Cancelled"] = "gestrichen"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; App::$strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; -App::$strings["Frequently"] = "Häufig"; -App::$strings["Hourly"] = "Stündlich"; -App::$strings["Twice daily"] = "Zwei Mal am Tag"; -App::$strings["Daily"] = "Täglich"; -App::$strings["Weekly"] = "Wöchentlich"; -App::$strings["Monthly"] = "Monatlich"; -App::$strings["Currently Male"] = "Momentan männlich"; -App::$strings["Currently Female"] = "Momentan weiblich"; -App::$strings["Mostly Male"] = "Größtenteils männlich"; -App::$strings["Mostly Female"] = "Größtenteils weiblich"; -App::$strings["Transgender"] = "Transsexuell"; -App::$strings["Intersex"] = "Zwischengeschlechtlich"; -App::$strings["Transsexual"] = "Transsexuell"; -App::$strings["Hermaphrodite"] = "Zwitter"; -App::$strings["Neuter"] = "Geschlechtslos"; -App::$strings["Non-specific"] = "unklar"; -App::$strings["Undecided"] = "Unentschieden"; -App::$strings["Males"] = "Männer"; -App::$strings["Females"] = "Frauen"; -App::$strings["Gay"] = "Schwul"; -App::$strings["Lesbian"] = "Lesbisch"; -App::$strings["No Preference"] = "Keine Bevorzugung"; -App::$strings["Bisexual"] = "Bisexuell"; -App::$strings["Autosexual"] = "Autosexuell"; -App::$strings["Abstinent"] = "Enthaltsam"; -App::$strings["Virgin"] = "Jungfräulich"; -App::$strings["Deviant"] = "Abweichend"; -App::$strings["Fetish"] = "Fetisch"; -App::$strings["Oodles"] = "Unmengen"; -App::$strings["Nonsexual"] = "Sexlos"; -App::$strings["Single"] = "Single"; -App::$strings["Lonely"] = "Einsam"; -App::$strings["Available"] = "Verfügbar"; -App::$strings["Unavailable"] = "Nicht verfügbar"; -App::$strings["Has crush"] = "Verguckt"; -App::$strings["Infatuated"] = "Verknallt"; -App::$strings["Dating"] = "Lerne gerade jemanden kennen"; -App::$strings["Unfaithful"] = "Treulos"; -App::$strings["Sex Addict"] = "Sexabhängig"; -App::$strings["Friends/Benefits"] = "Freunde/Begünstigte"; -App::$strings["Casual"] = "Lose"; -App::$strings["Engaged"] = "Verlobt"; -App::$strings["Married"] = "Verheiratet"; -App::$strings["Imaginarily married"] = "Gewissermaßen verheiratet"; -App::$strings["Partners"] = "Partner"; -App::$strings["Cohabiting"] = "Lebensgemeinschaft"; -App::$strings["Common law"] = "Informelle Ehe"; -App::$strings["Happy"] = "Glücklich"; -App::$strings["Not looking"] = "Nicht Ausschau haltend"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Betrogen"; -App::$strings["Separated"] = "Getrennt"; -App::$strings["Unstable"] = "Labil"; -App::$strings["Divorced"] = "Geschieden"; -App::$strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; -App::$strings["Widowed"] = "Verwitwet"; -App::$strings["Uncertain"] = "Ungewiss"; -App::$strings["It's complicated"] = "Es ist kompliziert"; -App::$strings["Don't care"] = "Interessiert mich nicht"; -App::$strings["Ask me"] = "Frag mich mal"; -App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; -App::$strings["guest:"] = "Gast:"; -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."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; +App::$strings["(Unknown)"] = "(Unbekannt)"; +App::$strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; +App::$strings["Visible to you only."] = "Nur für Dich sichtbar."; +App::$strings["Visible to anybody in this network."] = "Für jedes \$Projectname-Mitglied sichtbar."; +App::$strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist."; +App::$strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar."; +App::$strings["Visible to all connections."] = "Für alle Verbindungen sichtbar."; +App::$strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar."; +App::$strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen."; +App::$strings["Privacy group is empty."] = "Gruppe ist leer."; +App::$strings["Privacy group: %s"] = "Gruppe: %s"; +App::$strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; +App::$strings["profile photo"] = "Profilfoto"; +App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; +App::$strings["[no subject]"] = "[no subject]"; +App::$strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; +App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; App::$strings["prev"] = "vorherige"; App::$strings["first"] = "erste"; App::$strings["last"] = "letzte"; @@ -1877,6 +1568,7 @@ App::$strings["newer"] = "neuer"; App::$strings["No connections"] = "Keine Verbindungen"; App::$strings["View all %s connections"] = "Alle Verbindungen von %s anzeigen"; App::$strings["poke"] = "anstupsen"; +App::$strings["poked"] = "stupste"; App::$strings["ping"] = "anpingen"; App::$strings["pinged"] = "pingte"; App::$strings["prod"] = "knuffen"; @@ -1939,21 +1631,385 @@ App::$strings["Select an alternate language"] = "Wähle eine alternative Sprache App::$strings["activity"] = "Aktivität"; App::$strings["Design Tools"] = "Gestaltungswerkzeuge"; App::$strings["Pages"] = "Seiten"; -App::$strings["Logged out."] = "Ausgeloggt."; -App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; -App::$strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; -App::$strings["Can view my webpages"] = "Kann meine Webseiten sehen"; -App::$strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; -App::$strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; -App::$strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; -App::$strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; -App::$strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; -App::$strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben"; -App::$strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; -App::$strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; +App::$strings["System"] = "System"; +App::$strings["New App"] = "Neue App"; +App::$strings["Suggestions"] = "Vorschläge"; +App::$strings["See more..."] = "Mehr anzeigen …"; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; +App::$strings["Add New Connection"] = "Neue Verbindung hinzufügen"; +App::$strings["Enter channel address"] = "Adresse des Kanals eingeben"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Beispiele: bob@beispiel.com, http://beispiel.com/barbara"; +App::$strings["Notes"] = "Notizen"; +App::$strings["Remove term"] = "Eintrag löschen"; +App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; +App::$strings["add"] = "hinzufügen"; +App::$strings["Saved Folders"] = "Gespeicherte Ordner"; +App::$strings["Everything"] = "Alles"; +App::$strings["Archives"] = "Archive"; +App::$strings["Refresh"] = "Aktualisieren"; +App::$strings["Account settings"] = "Konto-Einstellungen"; +App::$strings["Channel settings"] = "Kanal-Einstellungen"; +App::$strings["Additional features"] = "Zusätzliche Funktionen"; +App::$strings["Feature/Addon settings"] = "Plugin-Einstellungen"; +App::$strings["Display settings"] = "Anzeige-Einstellungen"; +App::$strings["Manage locations"] = "Klon-Adressen verwalten"; +App::$strings["Export channel"] = "Kanal exportieren"; +App::$strings["Connected apps"] = "Verbundene Apps"; +App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; +App::$strings["Private Mail Menu"] = "Private Nachrichten"; +App::$strings["Combined View"] = "Kombinierte Anzeige"; +App::$strings["Inbox"] = "Eingang"; +App::$strings["Outbox"] = "Ausgang"; +App::$strings["New Message"] = "Neue Nachricht"; +App::$strings["Conversations"] = "Konversationen"; +App::$strings["Received Messages"] = "Erhaltene Nachrichten"; +App::$strings["Sent Messages"] = "Gesendete Nachrichten"; +App::$strings["No messages."] = "Keine Nachrichten."; +App::$strings["Delete conversation"] = "Unterhaltung löschen"; +App::$strings["Events Menu"] = "Kalendermenü"; +App::$strings["Day View"] = "Tagesansicht"; +App::$strings["Week View"] = "Wochenansicht"; +App::$strings["Month View"] = "Monatsansicht"; +App::$strings["Events Tools"] = "Kalenderwerkzeuge"; +App::$strings["Export Calendar"] = "Kalender exportieren"; +App::$strings["Import Calendar"] = "Kalender importieren"; +App::$strings["Chatrooms"] = "Chaträume"; +App::$strings["Overview"] = "Übersicht"; +App::$strings["Chat Members"] = "Chatmitglieder"; +App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; +App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; +App::$strings["photo/image"] = "Foto/Bild"; +App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; +App::$strings["Rating Tools"] = "Bewertungswerkzeuge"; +App::$strings["Rate Me"] = "Bewerte mich"; +App::$strings["View Ratings"] = "Bewertungen ansehen"; +App::$strings["Forums"] = "Foren"; +App::$strings["Tasks"] = "Aufgaben"; +App::$strings["Documentation"] = "Dokumentation"; +App::$strings["Project/Site Information"] = "Informationen über das Projekt und diesen Hub"; +App::$strings["For Members"] = "Für Mitglieder"; +App::$strings["For Administrators"] = "Für Administratoren"; +App::$strings["For Developers"] = "Für Entwickler"; +App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; +App::$strings["Inspect queue"] = "Warteschlange kontrollieren"; +App::$strings["DB updates"] = "DB-Aktualisierungen"; +App::$strings["Admin"] = "Administration"; +App::$strings["Plugin Features"] = "Plug-In Funktionen"; +App::$strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; +App::$strings["Channel location missing."] = "Adresse des Kanals fehlt."; +App::$strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; +App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; +App::$strings["Protocol disabled."] = "Protokoll deaktiviert."; +App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; +App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; +App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; +App::$strings["Public Timeline"] = "Öffentliche Zeitleiste"; +App::$strings["Image/photo"] = "Bild/Foto"; +App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; +App::$strings["Install %s element: "] = "Element %s installieren: "; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; +App::$strings["spoiler"] = "Spoiler"; +App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; +App::$strings["$1 wrote:"] = "$1 schrieb:"; +App::$strings["Directory Options"] = "Verzeichnisoptionen"; +App::$strings["Safe Mode"] = "Sicherer Modus"; +App::$strings["Public Forums Only"] = "Nur öffentliche Foren"; +App::$strings["This Website Only"] = "Nur dieser Hub"; +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."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; +App::$strings["Logout"] = "Abmelden"; +App::$strings["End this session"] = "Beende diese Sitzung"; +App::$strings["Home"] = "Home"; +App::$strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +App::$strings["Your profile page"] = "Deine Profilseite"; +App::$strings["Manage/Edit profiles"] = "Profile verwalten"; +App::$strings["Edit Profile"] = "Profile bearbeiten"; +App::$strings["Edit your profile"] = "Profil bearbeiten"; +App::$strings["Your photos"] = "Deine Bilder"; +App::$strings["Your files"] = "Deine Dateien"; +App::$strings["Your chatrooms"] = "Deine Chaträume"; +App::$strings["Bookmarks"] = "Lesezeichen"; +App::$strings["Your bookmarks"] = "Deine Lesezeichen"; +App::$strings["Your webpages"] = "Deine Webseiten"; +App::$strings["Sign in"] = "Anmelden"; +App::$strings["%s - click to logout"] = "%s - Klick zum Abmelden"; +App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; +App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; +App::$strings["Home Page"] = "Homepage"; +App::$strings["Create an account"] = "Erzeuge ein Konto"; +App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; +App::$strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; +App::$strings["Channel Directory"] = "Kanal-Verzeichnis"; +App::$strings["Your grid"] = "Dein Grid"; +App::$strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; +App::$strings["Channel home"] = "Mein Kanal"; +App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; +App::$strings["Notices"] = "Benachrichtigungen"; +App::$strings["Notifications"] = "Benachrichtigungen"; +App::$strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; +App::$strings["Private mail"] = "Persönliche Mail"; +App::$strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; +App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; +App::$strings["Event Calendar"] = "Terminkalender"; +App::$strings["See all events"] = "Alle Termine ansehen"; +App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; +App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; +App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; +App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; +App::$strings["Loading..."] = "Lädt ..."; +App::$strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; +App::$strings["Please wait..."] = "Bitte warten..."; +App::$strings["New window"] = "Neues Fenster"; +App::$strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab"; +App::$strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; +App::$strings["%d invitation available"] = array( + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", +); +App::$strings["Find Channels"] = "Finde Kanäle"; +App::$strings["Enter name or interest"] = "Name oder Interessen eingeben"; +App::$strings["Connect/Follow"] = "Verbinden/Folgen"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; +App::$strings["Random Profile"] = "Zufallsprofil"; +App::$strings["Invite Friends"] = "Lade Freunde ein"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; +App::$strings["%d connection in common"] = array( + 0 => "%d gemeinsame Verbindung", + 1 => "%d gemeinsame Verbindungen", +); +App::$strings["show more"] = "mehr zeigen"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; +App::$strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; +App::$strings["Categories:"] = "Kategorien:"; +App::$strings["Filed under:"] = "Gespeichert unter:"; +App::$strings["View in context"] = "Im Zusammenhang anschauen"; +App::$strings["remove"] = "lösche"; +App::$strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; +App::$strings["View Source"] = "Quelle anzeigen"; +App::$strings["Follow Thread"] = "Unterhaltung folgen"; +App::$strings["Unfollow Thread"] = "Unterhaltung nicht mehr folgen"; +App::$strings["Activity/Posts"] = "Aktivitäten/Beiträge"; +App::$strings["Edit Connection"] = "Verbindung bearbeiten"; +App::$strings["Message"] = "Nachricht"; +App::$strings["%s likes this."] = "%s gefällt das."; +App::$strings["%s doesn't like this."] = "%s gefällt das nicht."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d Person gefällt das.", + 1 => "%2\$d Leuten gefällt das.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d Person gefällt das nicht.", + 1 => "%2\$d Leuten gefällt das nicht.", +); +App::$strings["and"] = "und"; +App::$strings[", and %d other people"] = array( + 0 => "", + 1 => ", und %d andere", +); +App::$strings["%s like this."] = "%s gefällt das."; +App::$strings["%s don't like this."] = "%s gefällt das nicht."; +App::$strings["Set your location"] = "Standort"; +App::$strings["Clear browser location"] = "Browser-Standort löschen"; +App::$strings["Tag term:"] = "Schlagwort:"; +App::$strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; +App::$strings["Page link name"] = "Link zur Seite"; +App::$strings["Post as"] = "Veröffentlichen als"; +App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; +App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen"; +App::$strings["OK"] = "Ok"; +App::$strings["Discover"] = "Entdecken"; +App::$strings["Imported public streams"] = "Importierte öffentliche Beiträge"; +App::$strings["Commented Order"] = "Neueste Kommentare"; +App::$strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; +App::$strings["Posted Order"] = "Neueste Beiträge"; +App::$strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; +App::$strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; +App::$strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; +App::$strings["Starred"] = "Markiert"; +App::$strings["Favourite Posts"] = "Markierte Beiträge"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; +App::$strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +App::$strings["About"] = "Über"; +App::$strings["Profile Details"] = "Profil-Details"; +App::$strings["Photo Albums"] = "Fotoalben"; +App::$strings["Files and Storage"] = "Dateien und Speicher"; +App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; +App::$strings["Manage Webpages"] = "Webseiten verwalten"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Zusage", + 1 => "Zusagen", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Absage", + 1 => "Absagen", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => " Unentschlossen", + 1 => "Unentschlossene", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "Zustimmung", + 1 => "Zustimmungen", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Ablehnung", + 1 => "Ablehnungen", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Enthaltung", + 1 => "Enthaltungen", +); +App::$strings["Frequently"] = "Häufig"; +App::$strings["Hourly"] = "Stündlich"; +App::$strings["Twice daily"] = "Zwei Mal am Tag"; +App::$strings["Daily"] = "Täglich"; +App::$strings["Weekly"] = "Wöchentlich"; +App::$strings["Monthly"] = "Monatlich"; +App::$strings["Currently Male"] = "Momentan männlich"; +App::$strings["Currently Female"] = "Momentan weiblich"; +App::$strings["Mostly Male"] = "Größtenteils männlich"; +App::$strings["Mostly Female"] = "Größtenteils weiblich"; +App::$strings["Transgender"] = "Transsexuell"; +App::$strings["Intersex"] = "Zwischengeschlechtlich"; +App::$strings["Transsexual"] = "Transsexuell"; +App::$strings["Hermaphrodite"] = "Zwitter"; +App::$strings["Neuter"] = "Geschlechtslos"; +App::$strings["Non-specific"] = "unklar"; +App::$strings["Other"] = "Andere"; +App::$strings["Undecided"] = "Unentschieden"; +App::$strings["Males"] = "Männer"; +App::$strings["Females"] = "Frauen"; +App::$strings["Gay"] = "Schwul"; +App::$strings["Lesbian"] = "Lesbisch"; +App::$strings["No Preference"] = "Keine Bevorzugung"; +App::$strings["Bisexual"] = "Bisexuell"; +App::$strings["Autosexual"] = "Autosexuell"; +App::$strings["Abstinent"] = "Enthaltsam"; +App::$strings["Virgin"] = "Jungfräulich"; +App::$strings["Deviant"] = "Abweichend"; +App::$strings["Fetish"] = "Fetisch"; +App::$strings["Oodles"] = "Unmengen"; +App::$strings["Nonsexual"] = "Sexlos"; +App::$strings["Single"] = "Single"; +App::$strings["Lonely"] = "Einsam"; +App::$strings["Available"] = "Verfügbar"; +App::$strings["Unavailable"] = "Nicht verfügbar"; +App::$strings["Has crush"] = "Verguckt"; +App::$strings["Infatuated"] = "Verknallt"; +App::$strings["Dating"] = "Lerne gerade jemanden kennen"; +App::$strings["Unfaithful"] = "Treulos"; +App::$strings["Sex Addict"] = "Sexabhängig"; +App::$strings["Friends/Benefits"] = "Freunde/Begünstigte"; +App::$strings["Casual"] = "Lose"; +App::$strings["Engaged"] = "Verlobt"; +App::$strings["Married"] = "Verheiratet"; +App::$strings["Imaginarily married"] = "Gewissermaßen verheiratet"; +App::$strings["Partners"] = "Partner"; +App::$strings["Cohabiting"] = "Lebensgemeinschaft"; +App::$strings["Common law"] = "Informelle Ehe"; +App::$strings["Happy"] = "Glücklich"; +App::$strings["Not looking"] = "Nicht Ausschau haltend"; +App::$strings["Swinger"] = "Swinger"; +App::$strings["Betrayed"] = "Betrogen"; +App::$strings["Separated"] = "Getrennt"; +App::$strings["Unstable"] = "Labil"; +App::$strings["Divorced"] = "Geschieden"; +App::$strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; +App::$strings["Widowed"] = "Verwitwet"; +App::$strings["Uncertain"] = "Ungewiss"; +App::$strings["It's complicated"] = "Es ist kompliziert"; +App::$strings["Don't care"] = "Interessiert mich nicht"; +App::$strings["Ask me"] = "Frag mich mal"; +App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen"; +App::$strings["Only me"] = "Nur ich"; +App::$strings["Public"] = "Öffentlich"; +App::$strings["Anybody in the \$Projectname network"] = "Jeder innerhalb des \$Projectname Netzwerks"; +App::$strings["Any account on %s"] = "Jedes Nutzerkonto auf %s"; +App::$strings["Any of my connections"] = "Alle meine Verbindungen"; +App::$strings["Only connections I specifically allow"] = "Nur Verbindungen, denen ich es explizit erlaube"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Alle Verbindungen einschließlich der noch nicht bestätigten"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils."; +App::$strings["This is your default setting for who can view your connections"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen."; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos."; +App::$strings["This is your default setting for the audience of your webpages"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten."; +App::$strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; +App::$strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt"; +App::$strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; +App::$strings["An invitation is required."] = "Eine Einladung wird benötigt."; +App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden."; +App::$strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; +App::$strings["Failed to store account information."] = "Speichern der Nutzerkontodaten fehlgeschlagen."; +App::$strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; +App::$strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; +App::$strings["Administrator"] = "Administrator"; +App::$strings["your registration password"] = "Dein Registrierungspasswort"; +App::$strings["Registration details for %s"] = "Registrierungsdetails für %s"; +App::$strings["Account approved."] = "Nutzerkonto bestätigt."; +App::$strings["Registration revoked for %s"] = "Registrierung für %s wurde widerrufen"; +App::$strings["Account verified. Please login."] = "Nutzerkonto wurde bestätigt. Bitte melde Dich an!"; +App::$strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; +App::$strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; +App::$strings["Item was not found."] = "Beitrag wurde nicht gefunden."; +App::$strings["No source file."] = "Keine Quelldatei."; +App::$strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; +App::$strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; +App::$strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; +App::$strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; +App::$strings["Path not available."] = "Pfad nicht verfügbar."; +App::$strings["Empty pathname"] = "Leere Pfadangabe"; +App::$strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; +App::$strings["Path not found."] = "Pfad nicht gefunden."; +App::$strings["mkdir failed."] = "mkdir fehlgeschlagen."; +App::$strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; +App::$strings["Empty path"] = "Leere Pfadangabe"; +App::$strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; +App::$strings["Empty name"] = "Namensfeld leer"; +App::$strings["Name too long"] = "Name ist zu lang"; +App::$strings["No account identifier"] = "Keine Account-Kennung"; +App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; +App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; +App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; +App::$strings["Default Profile"] = "Standard-Profil"; +App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; +App::$strings["Create New Profile"] = "Neues Profil erstellen"; +App::$strings["Visible to everybody"] = "Für jeden sichtbar"; +App::$strings["Gender:"] = "Geschlecht:"; +App::$strings["Status:"] = "Status:"; +App::$strings["Homepage:"] = "Homepage:"; +App::$strings["Online Now"] = "gerade online"; +App::$strings["Like this channel"] = "Dieser Kanal gefällt mir"; +App::$strings["j F, Y"] = "j. F Y"; +App::$strings["j F"] = "j. F"; +App::$strings["Birthday:"] = "Geburtstag:"; +App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; +App::$strings["Tags:"] = "Schlagworte:"; +App::$strings["Political Views:"] = "Politische Ansichten:"; +App::$strings["Religion:"] = "Religion:"; +App::$strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; +App::$strings["Likes:"] = "Gefällt:"; +App::$strings["Dislikes:"] = "Gefällt nicht:"; +App::$strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; +App::$strings["My other channels:"] = "Meine anderen Kanäle:"; +App::$strings["Musical interests:"] = "Musikalische Interessen:"; +App::$strings["Books, literature:"] = "Bücher, Literatur:"; +App::$strings["Television:"] = "Fernsehen:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; +App::$strings["Love/Romance:"] = "Liebe/Romantik:"; +App::$strings["Work/employment:"] = "Arbeit/Anstellung:"; +App::$strings["School/education:"] = "Schule/Ausbildung:"; +App::$strings["Like this thing"] = "Gefällt mir"; App::$strings["General Features"] = "Allgemeine Funktionen"; App::$strings["Content Expiration"] = "Verfall von Inhalten"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum."; @@ -1965,7 +2021,6 @@ App::$strings["Profile Import/Export"] = "Profil-Import/Export"; App::$strings["Save and load profile details across sites/channels"] = "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren"; App::$strings["Web Pages"] = "Webseiten"; App::$strings["Provide managed web pages on your channel"] = "Ermöglicht das Erstellen von Webseiten in Deinem Kanal"; -App::$strings["Provide a wiki for your channel"] = "Stelle ein Wiki in Deinem Kanal zur Verfügung"; App::$strings["Hide Rating"] = "Bewertung verbergen"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten."; App::$strings["Private Notes"] = "Private Notizen"; @@ -1999,7 +2054,6 @@ App::$strings["Search by Date"] = "Suche nach Datum"; App::$strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; App::$strings["Privacy Groups"] = "Gruppen"; App::$strings["Enable management and selection of privacy groups"] = "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren"; -App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; App::$strings["Save search terms for re-use"] = "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung"; App::$strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast"; @@ -2008,166 +2062,79 @@ App::$strings["Enable tab to display all new Network activity"] = "Aktiviert ein App::$strings["Affinity Tool"] = "Beziehungs-Tool"; App::$strings["Filter stream activity by depth of relationships"] = "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann"; App::$strings["Connection Filtering"] = "Filter für Verbindungen"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)"; -App::$strings["Show channel suggestions"] = "Kanalvorschläge anzeigen"; -App::$strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; -App::$strings["Community Tagging"] = "Gemeinschaftliches Verschlagworten"; -App::$strings["Ability to tag existing posts"] = "Ermöglicht das Verschlagworten existierender Beiträge"; -App::$strings["Post Categories"] = "Beitrags-Kategorien"; -App::$strings["Add categories to your posts"] = "Aktiviert Kategorien für Beiträge"; -App::$strings["Emoji Reactions"] = "Emoji Reaktionen"; -App::$strings["Add emoji reaction ability to posts"] = "Aktiviert Emoji-Reaktionen für Beiträge"; -App::$strings["Saved Folders"] = "Gespeicherte Ordner"; -App::$strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"; -App::$strings["Dislike Posts"] = "Gefällt-mir-nicht-Beiträge"; -App::$strings["Ability to dislike posts/comments"] = "Aktiviert die „Gefällt mir nicht“-Schaltfläche"; -App::$strings["Star Posts"] = "Beiträge mit Sternchen versehen"; -App::$strings["Ability to mark special posts with a star indicator"] = "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol"; -App::$strings["Tag Cloud"] = "Schlagwort-Wolke"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen."; -App::$strings["Add new connections to this privacy group"] = "Neue Verbindung zu dieser Gruppe hinzufügen"; -App::$strings["edit"] = "Bearbeiten"; -App::$strings["Edit group"] = "Gruppe ändern"; -App::$strings["Add privacy group"] = "Gruppe hinzufügen"; -App::$strings["Channels not in any privacy group"] = "Kanäle, die in keiner Gruppe sind"; -App::$strings["add"] = "hinzufügen"; -App::$strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; -App::$strings["Starts:"] = "Beginnt:"; -App::$strings["Finishes:"] = "Endet:"; -App::$strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; -App::$strings["Not specified"] = "Keine Angabe"; -App::$strings["Needs Action"] = "Aktion erforderlich"; -App::$strings["Completed"] = "Abgeschlossen"; -App::$strings["In Process"] = "In Bearbeitung"; -App::$strings["Cancelled"] = "gestrichen"; -App::$strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; -App::$strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt"; -App::$strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; -App::$strings["An invitation is required."] = "Eine Einladung wird benötigt."; -App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden."; -App::$strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; -App::$strings["Failed to store account information."] = "Speichern der Nutzerkontodaten fehlgeschlagen."; -App::$strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; -App::$strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; -App::$strings["your registration password"] = "Dein Registrierungspasswort"; -App::$strings["Registration details for %s"] = "Registrierungsdetails für %s"; -App::$strings["Account approved."] = "Nutzerkonto bestätigt."; -App::$strings["Registration revoked for %s"] = "Registrierung für %s wurde widerrufen"; -App::$strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; -App::$strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; -App::$strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; -App::$strings["Channel location missing."] = "Adresse des Kanals fehlt."; -App::$strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; -App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; -App::$strings["Protocol disabled."] = "Protokoll deaktiviert."; -App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; -App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; -App::$strings["Item was not found."] = "Beitrag wurde nicht gefunden."; -App::$strings["No source file."] = "Keine Quelldatei."; -App::$strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; -App::$strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; -App::$strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; -App::$strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; -App::$strings["Path not available."] = "Pfad nicht verfügbar."; -App::$strings["Empty pathname"] = "Leere Pfadangabe"; -App::$strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; -App::$strings["Path not found."] = "Pfad nicht gefunden."; -App::$strings["mkdir failed."] = "mkdir fehlgeschlagen."; -App::$strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; -App::$strings["Empty path"] = "Leere Pfadangabe"; -App::$strings["Image/photo"] = "Bild/Foto"; -App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; -App::$strings["Install %s element: "] = "Element %s installieren: "; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; -App::$strings["spoiler"] = "Spoiler"; -App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; -App::$strings["$1 wrote:"] = "$1 schrieb:"; -App::$strings["(Unknown)"] = "(Unbekannt)"; -App::$strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; -App::$strings["Visible to you only."] = "Nur für Dich sichtbar."; -App::$strings["Visible to anybody in this network."] = "Für jedes \$Projectname-Mitglied sichtbar."; -App::$strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist."; -App::$strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar."; -App::$strings["Visible to all connections."] = "Für alle Verbindungen sichtbar."; -App::$strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar."; -App::$strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen."; -App::$strings["Privacy group is empty."] = "Gruppe ist leer."; -App::$strings["Privacy group: %s"] = "Gruppe: %s"; -App::$strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; -App::$strings["profile photo"] = "Profilfoto"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)"; +App::$strings["Show channel suggestions"] = "Kanalvorschläge anzeigen"; +App::$strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; +App::$strings["Community Tagging"] = "Gemeinschaftliches Verschlagworten"; +App::$strings["Ability to tag existing posts"] = "Ermöglicht das Verschlagworten existierender Beiträge"; +App::$strings["Post Categories"] = "Beitrags-Kategorien"; +App::$strings["Add categories to your posts"] = "Aktiviert Kategorien für Beiträge"; +App::$strings["Emoji Reactions"] = "Emoji Reaktionen"; +App::$strings["Add emoji reaction ability to posts"] = "Aktiviert Emoji-Reaktionen für Beiträge"; +App::$strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"; +App::$strings["Dislike Posts"] = "Gefällt-mir-nicht-Beiträge"; +App::$strings["Ability to dislike posts/comments"] = "Aktiviert die „Gefällt mir nicht“-Schaltfläche"; +App::$strings["Star Posts"] = "Beiträge mit Sternchen versehen"; +App::$strings["Ability to mark special posts with a star indicator"] = "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol"; +App::$strings["Tag Cloud"] = "Schlagwort-Wolke"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite"; App::$strings["Embedded content"] = "Eingebetteter Inhalt"; App::$strings["Embedding disabled"] = "Einbetten ausgeschaltet"; -App::$strings["System"] = "System"; -App::$strings["New App"] = "Neue App"; -App::$strings["Suggestions"] = "Vorschläge"; -App::$strings["See more..."] = "Mehr anzeigen …"; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; -App::$strings["Add New Connection"] = "Neue Verbindung hinzufügen"; -App::$strings["Enter channel address"] = "Adresse des Kanals eingeben"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Beispiele: bob@beispiel.com, http://beispiel.com/barbara"; -App::$strings["Notes"] = "Notizen"; -App::$strings["Remove term"] = "Eintrag löschen"; -App::$strings["Everything"] = "Alles"; -App::$strings["Archives"] = "Archive"; -App::$strings["Refresh"] = "Aktualisieren"; -App::$strings["Account settings"] = "Konto-Einstellungen"; -App::$strings["Channel settings"] = "Kanal-Einstellungen"; -App::$strings["Additional features"] = "Zusätzliche Funktionen"; -App::$strings["Feature/Addon settings"] = "Plugin-Einstellungen"; -App::$strings["Display settings"] = "Anzeige-Einstellungen"; -App::$strings["Manage locations"] = "Klon-Adressen verwalten"; -App::$strings["Export channel"] = "Kanal exportieren"; -App::$strings["Connected apps"] = "Verbundene Apps"; -App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; -App::$strings["Private Mail Menu"] = "Private Nachrichten"; -App::$strings["Combined View"] = "Kombinierte Anzeige"; -App::$strings["Conversations"] = "Konversationen"; -App::$strings["Received Messages"] = "Erhaltene Nachrichten"; -App::$strings["Sent Messages"] = "Gesendete Nachrichten"; -App::$strings["No messages."] = "Keine Nachrichten."; -App::$strings["Delete conversation"] = "Unterhaltung löschen"; -App::$strings["Events Tools"] = "Kalenderwerkzeuge"; -App::$strings["Export Calendar"] = "Kalender exportieren"; -App::$strings["Import Calendar"] = "Kalender importieren"; -App::$strings["Overview"] = "Übersicht"; -App::$strings["Chat Members"] = "Chatmitglieder"; -App::$strings["Wiki List"] = "Wikiliste"; -App::$strings["Wiki Pages"] = "Wikiseiten"; -App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; -App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; -App::$strings["photo/image"] = "Foto/Bild"; -App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; -App::$strings["Rating Tools"] = "Bewertungswerkzeuge"; -App::$strings["Rate Me"] = "Bewerte mich"; -App::$strings["View Ratings"] = "Bewertungen ansehen"; -App::$strings["Forums"] = "Foren"; -App::$strings["Tasks"] = "Aufgaben"; -App::$strings["Documentation"] = "Dokumentation"; -App::$strings["Project/Site Information"] = "Informationen über das Projekt und diesen Hub"; -App::$strings["For Members"] = "Für Mitglieder"; -App::$strings["For Administrators"] = "Für Administratoren"; -App::$strings["For Developers"] = "Für Entwickler"; -App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; -App::$strings["Inspect queue"] = "Warteschlange kontrollieren"; -App::$strings["DB updates"] = "DB-Aktualisierungen"; -App::$strings["Plugin Features"] = "Plug-In Funktionen"; -App::$strings[" and "] = "und"; -App::$strings["public profile"] = "öffentliches Profil"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; -App::$strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; -App::$strings["Attachments:"] = "Anhänge:"; -App::$strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; +App::$strings["Who can see this?"] = "Wer kann das sehen?"; +App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen."; +App::$strings["Show"] = "Anzeigen"; +App::$strings["Don't show"] = "Nicht anzeigen"; +App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann."; +App::$strings["Logged out."] = "Ausgeloggt."; +App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; +App::$strings["Birthday"] = "Geburtstag"; +App::$strings["Age: "] = "Alter:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; +App::$strings["never"] = "Nie"; +App::$strings["less than a second ago"] = "Vor weniger als einer Sekunde"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "Jahr", + 1 => "Jahre", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "Monat", + 1 => "Monate", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "Woche", + 1 => "Wochen", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "Tag", + 1 => "Tage", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "Stunde", + 1 => "Stunden", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "Minute", + 1 => "Minuten", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "Sekunde", + 1 => "Sekunden", +); +App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; +App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen."; +App::$strings["Add new connections to this privacy group"] = "Neue Verbindung zu dieser Gruppe hinzufügen"; +App::$strings["edit"] = "Bearbeiten"; +App::$strings["Edit group"] = "Gruppe ändern"; +App::$strings["Add privacy group"] = "Gruppe hinzufügen"; +App::$strings["Channels not in any privacy group"] = "Kanäle, die in keiner Gruppe sind"; App::$strings["Delete this item?"] = "Dieses Element löschen?"; -App::$strings["%s show less"] = "%s weniger anzeigen"; -App::$strings["%s expand"] = "%s aufklappen"; -App::$strings["%s collapse"] = "%s einklappen"; +App::$strings["[-] show less"] = "[-] Weniger anzeigen"; +App::$strings["[+] expand"] = "[+] aufklappen"; +App::$strings["[-] collapse"] = "[-] einklappen"; App::$strings["Password too short"] = "Kennwort zu kurz"; App::$strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; App::$strings["everybody"] = "alle"; @@ -2222,78 +2189,72 @@ App::$strings["__ctx:calendar__ month"] = "Monat"; App::$strings["__ctx:calendar__ week"] = "Woche"; App::$strings["__ctx:calendar__ day"] = "Tag"; App::$strings["__ctx:calendar__ All day"] = "Ganztägig"; -App::$strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", -); -App::$strings["Find Channels"] = "Finde Kanäle"; -App::$strings["Enter name or interest"] = "Name oder Interessen eingeben"; -App::$strings["Connect/Follow"] = "Verbinden/Folgen"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; -App::$strings["Random Profile"] = "Zufallsprofil"; -App::$strings["Invite Friends"] = "Lade Freunde ein"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; -App::$strings["%d connection in common"] = array( - 0 => "%d gemeinsame Verbindung", - 1 => "%d gemeinsame Verbindungen", -); -App::$strings["show more"] = "mehr zeigen"; -App::$strings["Directory Options"] = "Verzeichnisoptionen"; -App::$strings["Safe Mode"] = "Sicherer Modus"; -App::$strings["Public Forums Only"] = "Nur öffentliche Foren"; -App::$strings["This Website Only"] = "Nur dieser Hub"; -App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; -App::$strings["[no subject]"] = "[no subject]"; -App::$strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; -App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; -App::$strings["Who can see this?"] = "Wer kann das sehen?"; -App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen."; -App::$strings["Show"] = "Anzeigen"; -App::$strings["Don't show"] = "Nicht anzeigen"; -App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
Diese Berechtigungen bestimmen, wer den Beitrag sehen kann."; -App::$strings["Birthday"] = "Geburtstag"; -App::$strings["Age: "] = "Alter:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; -App::$strings["never"] = "Nie"; -App::$strings["less than a second ago"] = "Vor weniger als einer Sekunde"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "Jahr", - 1 => "Jahre", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "Monat", - 1 => "Monate", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "Woche", - 1 => "Wochen", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "Tag", - 1 => "Tage", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "Stunde", - 1 => "Stunden", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "Minute", - 1 => "Minuten", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "Sekunde", - 1 => "Sekunden", -); -App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; -App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; -App::$strings["Public Timeline"] = "Öffentliche Zeitleiste"; +App::$strings["view full size"] = "In Vollbildansicht anschauen"; +App::$strings["No Subject"] = "Kein Betreff"; +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"] = "Bild überschreitet das Webseitenlimit von %lu Bytes"; +App::$strings["Image file is empty."] = "Bilddatei ist leer."; +App::$strings["Photo storage failed."] = "Fotospeicherung fehlgeschlagen."; +App::$strings["a new photo"] = "ein neues Foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s hat %2\$s auf %3\$s veröffentlicht"; +App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; App::$strings["Invalid data packet"] = "Ungültiges Datenpaket"; App::$strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; App::$strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels"; +App::$strings["New Page"] = "Neue Seite"; +App::$strings["Title"] = "Titel"; +App::$strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; +App::$strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; +App::$strings["Can view my connections"] = "Kann meine Verbindungen sehen"; +App::$strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen"; +App::$strings["Can view my webpages"] = "Kann meine Webseiten sehen"; +App::$strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; +App::$strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; +App::$strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; +App::$strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; +App::$strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; +App::$strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; +App::$strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; +App::$strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; +App::$strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben"; +App::$strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; +App::$strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; +App::$strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; +App::$strings["Social Networking"] = "Soziales Netzwerk"; +App::$strings["Social - Mostly Public"] = "Soziales Netzwerk - Weitgehend öffentlich"; +App::$strings["Social - Restricted"] = "Soziales Netzwerk - Beschränkt"; +App::$strings["Social - Private"] = "Soziales Netzwerk - Privat"; +App::$strings["Community Forum"] = "Forum"; +App::$strings["Forum - Mostly Public"] = "Forum - Weitgehend öffentlich"; +App::$strings["Forum - Restricted"] = "Forum - Beschränkt"; +App::$strings["Forum - Private"] = "Forum - Privat"; +App::$strings["Feed Republish"] = "Teilen von Feeds"; +App::$strings["Feed - Mostly Public"] = "Feeds - Weitgehend öffentlich"; +App::$strings["Feed - Restricted"] = "Feeds - Beschränkt"; +App::$strings["Special Purpose"] = "Für besondere Zwecke"; +App::$strings["Special - Celebrity/Soapbox"] = "Speziell - Mitteilungs-Kanal (keine Kommentare)"; +App::$strings["Special - Group Repository"] = "Speziell - Gruppenarchiv"; +App::$strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; +App::$strings[" and "] = "und"; +App::$strings["public profile"] = "öffentliches Profil"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; +App::$strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; +App::$strings["Attachments:"] = "Anhänge:"; +App::$strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; App::$strings["Focus (Hubzilla default)"] = "Focus (Voreinstellung für Hubzilla)"; App::$strings["Theme settings"] = "Theme-Einstellungen"; App::$strings["Select scheme"] = "Schema wählen"; @@ -2333,7 +2294,6 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; App::$strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können."; -App::$strings["Login/Email"] = "Anmelden/E-Mail"; App::$strings["Password"] = "Kennwort"; App::$strings["Remember me"] = "Angaben speichern"; App::$strings["Forgot your password?"] = "Passwort vergessen?"; diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 8cad587d6..d7a918c55 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -13,9 +13,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-25 08:54+0000\n" -"Last-Translator: fabrixxm \n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" +"PO-Revision-Date: 2016-06-10 18:33+0000\n" +"Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,156 +23,11 @@ msgstr "" "Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:904 -msgid "Social Networking" -msgstr "Redes sociales" - -#: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:904 -msgid "Social - Mostly Public" -msgstr "Social - Público en su mayor parte" - -#: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:904 -msgid "Social - Restricted" -msgstr "Social - Restringido" - -#: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:904 -msgid "Social - Private" -msgstr "Social - Privado" - -#: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:905 -msgid "Community Forum" -msgstr "Foro de discusión" - -#: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:905 -msgid "Forum - Mostly Public" -msgstr "Foro - Público en su mayor parte" - -#: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:905 -msgid "Forum - Restricted" -msgstr "Foro - Restringido" - -#: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:905 -msgid "Forum - Private" -msgstr "Foro - Privado" - -#: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:906 -msgid "Feed Republish" -msgstr "Republicar un \"feed\"" - -#: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:906 -msgid "Feed - Mostly Public" -msgstr "Feed - Público en su mayor parte" - -#: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:906 -msgid "Feed - Restricted" -msgstr "Feed - Restringido" - -#: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:907 -msgid "Special Purpose" -msgstr "Propósito especial" - -#: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:907 -msgid "Special - Celebrity/Soapbox" -msgstr "Especial - Celebridad / Tribuna improvisada" - -#: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:907 -msgid "Special - Group Repository" -msgstr "Especial - Repositorio de grupo" - -#: ../../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 "Otro" - -#: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:908 -msgid "Custom/Expert Mode" -msgstr "Modo personalizado/experto" - -#: ../../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 "Se me pueden enviar entradas y contenido de un canal" - -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Puede verse mi perfil de canal predeterminado." - -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Pueden verse mis conexiones" - -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Pueden verse mi repositorio de ficheros y mis 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 "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." - -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Se me pueden enviar mensajes privados" - -#: ../../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 "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" - -#: ../../Zotlabs/Access/Permissions.php:45 -msgid "Can administer my channel" -msgstr "" - #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "padre" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 msgid "Collection" msgstr "Colección" @@ -196,17 +51,16 @@ msgstr "Programar bandeja de entrada" msgid "Schedule Outbox" msgstr "Programar bandeja de salida" -#: ../../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 "Desconocido" #: ../../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 "Ficheros" @@ -219,23 +73,22 @@ msgid "Shared" msgstr "Compartido" #: ../../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 "Crear" #: ../../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 "Subir" #: ../../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 "Nombre" @@ -245,7 +98,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 "Tamaño" @@ -254,32 +107,34 @@ msgstr "Tamaño" msgid "Last Modified" msgstr "Última modificación" -#: ../../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 "Editar" -#: ../../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 "Eliminar" @@ -305,73 +160,74 @@ msgstr "Crear nueva carpeta" msgid "Upload file" msgstr "Subir fichero" -#: ../../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 "Permiso denegado" -#: ../../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 "Acceso denegado." @@ -379,9 +235,9 @@ msgstr "Acceso denegado." msgid "Not Found" msgstr "No encontrado" -#: ../../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 "Página no encontrada." @@ -397,13 +253,13 @@ msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión msgid "Welcome %s. Remote authentication successful." msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." -#: ../../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 "El perfil solicitado no está disponible." @@ -411,366 +267,615 @@ msgstr "El perfil solicitado no está disponible." msgid "Some blurb about what to do when you're new here" msgstr "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí" -#: ../../Zotlabs/Module/Chatsvc.php:117 -msgid "Away" -msgstr "Ausente" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nombre del bloque" -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" -msgstr "Conectado/a" +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Bloques" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "No se ha podido acceder al registro de contacto." +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Título del bloque" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "No se ha podido localizar el perfil seleccionado." +#: ../../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 "Creado" -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "Connection updated." -msgstr "Conexión actualizada." +#: ../../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 "Editado" -#: ../../Zotlabs/Module/Connedit.php:250 -msgid "Failed to update connection record." -msgstr "Error al actualizar el registro de la conexión." +#: ../../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/Connedit.php:300 -msgid "is now connected to" -msgstr "ahora está conectado/a" +#: ../../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 "Ver" -#: ../../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:1708 -msgid "No" -msgstr "No" +#: ../../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 encontrado." -#: ../../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:1708 -msgid "Yes" -msgstr "Sí" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permisos denegados." -#: ../../Zotlabs/Module/Connedit.php:435 -msgid "Could not access address book record." -msgstr "No se pudo acceder al registro en su libreta de direcciones." +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l j F" -#: ../../Zotlabs/Module/Connedit.php:455 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Recarga fallida - no se puede encontrar el canal en este momento." +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Enlazar con la entrada en su ubicación original" -#: ../../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 ha sido posible establecer los parámetros de la libreta de direcciones." +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Editar el evento" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Connection has been removed." -msgstr "La conexión ha sido eliminada." +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Crear un evento" -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 -msgid "View Profile" -msgstr "Ver el perfil" +#: ../../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/Connedit.php:552 -#, php-format -msgid "View %s's profile" -msgstr "Ver el perfil de %s" +#: ../../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 "Siguiente" -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Refresh Permissions" -msgstr "Recargar los permisos" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Exportar" -#: ../../Zotlabs/Module/Connedit.php:559 -msgid "Fetch updated permissions" -msgstr "Obtener los permisos actualizados" +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importar" -#: ../../Zotlabs/Module/Connedit.php:563 -msgid "Recent Activity" -msgstr "Actividad reciente" +#: ../../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/Connedit.php:566 -msgid "View recent posts and comments" -msgstr "Ver publicaciones y comentarios recientes" +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Hoy" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Desbloquear" +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Debe haber iniciado sesión para poder ver esta página." -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Bloquear" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "Publicaciones y comentarios" -#: ../../Zotlabs/Module/Connedit.php:573 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "Solo publicaciones" -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "This connection is blocked!" -msgstr "¡Esta conexión está bloqueada!" +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Unignore" -msgstr "Dejar de ignorar" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Sala no encontrada" -#: ../../Zotlabs/Module/Connedit.php:578 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Ignorar" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Abandonar la sala" -#: ../../Zotlabs/Module/Connedit.php:581 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Eliminar esta sala" -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "This connection is ignored!" -msgstr "¡Esta conexión es ignorada!" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Estoy ausente momentáneamente" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Unarchive" -msgstr "Desarchivar" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Estoy conectado/a" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Archive" -msgstr "Archivar" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Añadir esta sala a Marcadores" -#: ../../Zotlabs/Module/Connedit.php:589 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" +#: ../../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 "Por favor, introduzca la dirección del enlace:" -#: ../../Zotlabs/Module/Connedit.php:590 -msgid "This connection is archived!" -msgstr "¡Esta conexión esta archivada!" +#: ../../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 "Cifrar texto" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Unhide" -msgstr "Mostrar" +#: ../../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 "Insertar enlace web" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funcionalidad deshabilitada." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nueva sala de chat" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Nombre de la sala de chat" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Caducidad de los mensajes en los chats (en minutos)" + +#: ../../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 "Salas de chat de %1$s" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "No hay salas de chat disponibles" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" +msgstr "Crear" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Caducidad" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Chatsvc.php:117 +msgid "Away" +msgstr "Ausente" + +#: ../../Zotlabs/Module/Chatsvc.php:122 +msgid "Online" +msgstr "Conectado/a" + +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Elemento no válido." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Marcador añadido" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mis marcadores" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Marcadores de mis conexiones" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continuar" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Configuración del canal premium" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Habilitar restricciones de conexión del canal premium" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, 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 "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" + +#: ../../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 "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canal premium o restringido" + +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "No se ha podido acceder al registro de contacto." + +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "No se ha podido localizar el perfil seleccionado." + +#: ../../Zotlabs/Module/Connedit.php:227 +msgid "Connection updated." +msgstr "Conexión actualizada." + +#: ../../Zotlabs/Module/Connedit.php:229 +msgid "Failed to update connection record." +msgstr "Error al actualizar el registro de la conexión." + +#: ../../Zotlabs/Module/Connedit.php:276 +msgid "is now connected to" +msgstr "ahora está conectado/a" + +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "No" +msgstr "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 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "Yes" +msgstr "Sí" + +#: ../../Zotlabs/Module/Connedit.php:411 +msgid "Could not access address book record." +msgstr "No se pudo acceder al registro en su libreta de direcciones." + +#: ../../Zotlabs/Module/Connedit.php:425 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Recarga fallida - no se puede encontrar el canal en este momento." + +#: ../../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 "No ha sido posible establecer los parámetros de la libreta de direcciones." + +#: ../../Zotlabs/Module/Connedit.php:503 +msgid "Connection has been removed." +msgstr "La conexión ha sido eliminada." + +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 +msgid "View Profile" +msgstr "Ver el perfil" + +#: ../../Zotlabs/Module/Connedit.php:522 +#, php-format +msgid "View %s's profile" +msgstr "Ver el perfil de %s" + +#: ../../Zotlabs/Module/Connedit.php:526 +msgid "Refresh Permissions" +msgstr "Recargar los permisos" + +#: ../../Zotlabs/Module/Connedit.php:529 +msgid "Fetch updated permissions" +msgstr "Obtener los permisos actualizados" + +#: ../../Zotlabs/Module/Connedit.php:533 +msgid "Recent Activity" +msgstr "Actividad reciente" + +#: ../../Zotlabs/Module/Connedit.php:536 +msgid "View recent posts and comments" +msgstr "Ver publicaciones y comentarios recientes" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +msgid "Unblock" +msgstr "Desbloquear" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +msgid "Block" +msgstr "Bloquear" + +#: ../../Zotlabs/Module/Connedit.php:543 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" + +#: ../../Zotlabs/Module/Connedit.php:544 +msgid "This connection is blocked!" +msgstr "¡Esta conexión está bloqueada!" + +#: ../../Zotlabs/Module/Connedit.php:548 +msgid "Unignore" +msgstr "Dejar de ignorar" + +#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" +msgstr "Ignorar" + +#: ../../Zotlabs/Module/Connedit.php:551 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" + +#: ../../Zotlabs/Module/Connedit.php:552 +msgid "This connection is ignored!" +msgstr "¡Esta conexión es ignorada!" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Unarchive" +msgstr "Desarchivar" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Archive" +msgstr "Archivar" + +#: ../../Zotlabs/Module/Connedit.php:559 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" + +#: ../../Zotlabs/Module/Connedit.php:560 +msgid "This connection is archived!" +msgstr "¡Esta conexión esta archivada!" + +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Unhide" +msgstr "Mostrar" + +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Hide" msgstr "Ocultar" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:567 msgid "Hide or Unhide this connection from your other connections" msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "This connection is hidden!" msgstr "¡Esta conexión está oculta!" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Delete this connection" msgstr "Eliminar esta conexión" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 msgid "Me" msgstr "Yo" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 msgid "Family" msgstr "Familia" -#: ../../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 "Amigos/as" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Conocidos/as" -#: ../../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 "Todos/as" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Approve this connection" msgstr "Aprobar esta conexión" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Accept connection to allow communication" msgstr "Aceptar la conexión para permitir la comunicación" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:659 msgid "Set Affinity" msgstr "Ajustar la afinidad" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:662 msgid "Set Profile" msgstr "Ajustar el perfil" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity & Profile" msgstr "Ajustar la afinidad y el perfil" -#: ../../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 "Permisos predeterminados de conexión" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 #, php-format msgid "Connection: %s" msgstr "Conexión: %s" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Apply these permissions automatically" msgstr "Aplicar estos permisos automaticamente" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Connection requests will be approved without your interaction" msgstr "Las solicitudes de conexión serán aprobadas sin su intervención" -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:705 msgid "This connection's primary address is" msgstr "La dirección primaria de esta conexión es" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Available locations:" msgstr "Ubicaciones disponibles:" -#: ../../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 "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "Connection Tools" msgstr "Gestión de las conexiones" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "Slide to adjust your degree of friendship" msgstr "Deslizar para ajustar el grado de amistad" -#: ../../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 "Valoración" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:715 msgid "Slide to adjust your rating" msgstr "Deslizar para ajustar su valoración" -#: ../../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 "Opcionalmente, puede explicar su valoración" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Custom Filter" msgstr "Filtro personalizado" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Only import posts with this text" msgstr "Importar solo entradas que contengan este texto" -#: ../../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 "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo" -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:720 msgid "Do not import posts with this text" msgstr "No importar entradas que contengan este texto" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "This information is public!" msgstr "¡Esta información es pública!" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:727 msgid "Connection Pending Approval" msgstr "Conexión pendiente de aprobación" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "inherited" msgstr "heredado" -#: ../../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 +#: ../../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 "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:734 msgid "Their Settings" msgstr "Sus ajustes" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:735 msgid "My Settings" msgstr "Mis ajustes" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Individual Permissions" msgstr "Permisos individuales" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -778,7 +883,7 @@ msgid "" " settings here." msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:739 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -786,146 +891,42 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Last update:" msgstr "Última actualización:" -#: ../../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 "Acceso público denegado." -#: ../../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 no encontrado." +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valoración" +msgstr[1] "%d valoraciones" -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Nombre" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Género:" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Apellido" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Estado:" -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Sobrenombre o Alias" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Página personal:" -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nombre completo" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 +msgid "Age:" +msgstr "Edad:" -#: ../../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 "Correo electrónico" - -#: ../../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 "Huso horario" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Dirección de la página personal" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Idioma" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Año de nacimiento" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Mes de nacimiento" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Día de nacimiento" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Fecha de nacimiento" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Género" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Hombre" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Mujer" - -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canal añadido." - -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valoración" -msgstr[1] "%d valoraciones" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Género:" - -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Estado:" - -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Página personal:" - -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 -msgid "Age:" -msgstr "Edad:" - -#: ../../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 "Ubicación:" @@ -934,18 +935,18 @@ msgstr "Ubicación:" msgid "Description:" msgstr "Descripción:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 msgid "Hometown:" msgstr "Lugar de nacimiento:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 msgid "About:" msgstr "Sobre mí:" #: ../../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 "Conectar" @@ -1021,406 +1022,122 @@ msgstr "De más antiguo a más nuevo" msgid "No entries (some entries may be hidden)." msgstr "Sin entradas (algunas entradas pueden estar ocultas)." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continuar" +#: ../../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 no encontrado." -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Configuración del canal premium" +#: ../../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 no encontrado" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Habilitar restricciones de conexión del canal premium" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Título (opcional)" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modificar este bloque" -#: ../../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 "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Ningún canal." -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Conexiones comunes" -#: ../../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 "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Ninguna conexión en común." -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Bloqueadas" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canal premium o restringido" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignoradas" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Entradas de calendario importadas." +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Ocultas" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "No se han encontrado entradas de calendario." +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archivadas" -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Un evento no puede terminar antes de que haya comenzado." +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1535 +msgid "New" +msgstr "Nuevas" -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "No se puede crear la vista previa." +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nuevas conexiones" -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Se requieren el título del evento y su hora de inicio." +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Mostrar conexiones (nuevas) pendientes" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Evento no encontrado." +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Todas las conexiones" -#: ../../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 "evento" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Mostrar todas las conexiones" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Editar el título del evento" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Mostrar solo las conexiones bloqueadas" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Título del evento" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Mostrar solo conexiones ignoradas" -#: ../../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 "Obligatorio" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Mostrar solo las conexiones archivadas" -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Categorías (lista separada por comas)" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Mostrar solo las conexiones ocultas" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Editar la categoría" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Pendiente de aprobación" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Categoría" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Modificar la fecha y hora de comienzo" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Editar conexión" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Fecha y hora de comienzo" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Eliminar conexión" -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "La fecha y hora de terminación no se conocen o no son relevantes" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Modificar la fecha y hora de terminación" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Fecha y hora de terminación" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "Ajustar para obtener el visor de los husos horarios" - -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales." - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Editar la descripción" - -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descripción" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Modificar la dirección" - -#: ../../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 "Ubicación" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Compartir este 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 "Previsualizar" - -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Configuración de permisos" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Opciones avanzadas" - -#: ../../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 "Editar evento" - -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Borrar evento" - -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Enlazar con la entrada en su ubicación original" - -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "calendario" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Editar el evento" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Crear 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 "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 "Siguiente" - -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Exportar" - -#: ../../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 "Ver" - -#: ../../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 "Hoy" - -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "Evento borrado" - -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "Error al eliminar el evento" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Marcador añadido" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mis marcadores" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Marcadores de mis conexiones" - -#: ../../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 -msgid "Item not found" -msgstr "Elemento no encontrado" - -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "El elemento no es editable" - -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Editar la entrada" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Fotos" - -#: ../../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 "Cancelar" - -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Elemento no válido." - -#: ../../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 encontrado." - -#: ../../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 carpeta:" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- seleccionar -" - -#: ../../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 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Bloqueadas" - -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignoradas" - -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Ocultas" - -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archivadas" - -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 -msgid "New" -msgstr "Nuevas" - -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nuevas conexiones" - -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Mostrar conexiones (nuevas) pendientes" - -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Todas las conexiones" - -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Mostrar todas las conexiones" - -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Mostrar solo las conexiones bloqueadas" - -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Mostrar solo conexiones ignoradas" - -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Mostrar solo las conexiones archivadas" - -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Mostrar solo las conexiones ocultas" - -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "Pendiente de aprobación" - -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Editar conexión" - -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Eliminar conexión" - -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Dirección del canal" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Dirección del canal" #: ../../Zotlabs/Module/Connections.php:267 msgid "Network" @@ -1451,15 +1168,15 @@ msgstr "Ignorar esta conexión" msgid "Recent activity" msgstr "Actividad reciente" -#: ../../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 "Conexiones" #: ../../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 "Buscar" @@ -1472,7 +1189,7 @@ msgid "Connections search" msgstr "Buscar conexiones" #: ../../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 "Imagen actualizada, pero el recorte de la imagen ha fallado. " @@ -1482,66 +1199,66 @@ msgid "Cover Photos" msgstr "Imágenes de portada del perfil" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 +#: ../../Zotlabs/Module/Profile_photo.php:133 msgid "Image resize failed." msgstr "El ajuste del tamaño de la imagen ha fallado." #: ../../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 "No ha sido posible procesar la imagen" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 +#: ../../Zotlabs/Module/Profile_photo.php:217 msgid "Image upload failed." msgstr "La carga de la imagen ha fallado." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 +#: ../../Zotlabs/Module/Profile_photo.php:236 msgid "Unable to process image." msgstr "No ha sido posible procesar la imagen." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 msgid "female" msgstr "mujer" -#: ../../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 "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 msgid "male" msgstr "hombre" -#: ../../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 "%1$s ha actualizado su %2$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 "%1$s ha actualizado su %2$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 "Imagen de portada del perfil" #: ../../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 no disponible." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:365 msgid "Upload File:" msgstr "Subir fichero:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:366 msgid "Select a profile:" msgstr "Seleccionar un perfil:" @@ -1550,256 +1267,315 @@ msgid "Upload Cover Photo" msgstr "Subir imagen de portada del perfil" #: ../../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 "Omitir este paso" #: ../../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 "Seleccione una foto de sus álbumes de fotos" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 +#: ../../Zotlabs/Module/Profile_photo.php:390 msgid "Crop Image" msgstr "Recortar imagen" #: ../../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 "Por favor ajuste el recorte de la imagen para una visión óptima." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:393 msgid "Done Editing" msgstr "Edición completada" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "página web" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "El elemento no es editable" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "bloque" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" +msgstr "Editar la entrada" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "plantilla" +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "Entradas de calendario importadas." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menú" +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "No se han encontrado entradas de calendario." -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "%s elemento instalado" +#: ../../Zotlabs/Module/Events.php:105 +msgid "Event can not end before it has started." +msgstr "Un evento no puede terminar antes de que haya comenzado." -#: ../../Zotlabs/Module/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "Elemento con instalación fallida: %s" +#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 +#: ../../Zotlabs/Module/Events.php:136 +msgid "Unable to generate preview." +msgstr "No se puede crear la vista previa." -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permisos denegados." +#: ../../Zotlabs/Module/Events.php:114 +msgid "Event title and start time are required." +msgstr "Se requieren el título del evento y su hora de inicio." -#: ../../Zotlabs/Module/Cal.php:337 -msgid "Import" -msgstr "Importar" +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "Evento no encontrado." -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Este sitio no es un servidor de directorio" +#: ../../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 "evento" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "El servidor de este directorio necesita un \"token\" de acceso" +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Editar el título del 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 "Debe haber iniciado sesión para poder ver esta página." +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Título del evento" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Sala no encontrada" +#: ../../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 "Obligatorio" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Abandonar la sala" +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Categorías (lista separada por comas)" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Eliminar esta sala" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Editar la categoría" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Estoy ausente momentáneamente" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Categoría" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Estoy conectado/a" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Modificar la fecha y hora de comienzo" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Añadir esta sala a Marcadores" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Fecha y hora de comienzo" -#: ../../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 "Por favor, introduzca la dirección del enlace:" +#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 +msgid "Finish date and time are not known or not relevant" +msgstr "La fecha y hora de terminación no se conocen o no son relevantes" -#: ../../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 "Cifrar texto" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit finish date and time" +msgstr "Modificar la fecha y hora de terminación" -#: ../../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 "Insertar enlace web" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Fecha y hora de terminación" -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funcionalidad deshabilitada." +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "Ajustar para obtener el visor de los husos horarios" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nueva sala de chat" +#: ../../Zotlabs/Module/Events.php:460 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales." -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Nombre de la sala de chat" +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" +msgstr "Editar la descripción" -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Caducidad de los mensajes en los chats (en minutos)" +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descripción" -#: ../../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/Events.php:464 +msgid "Edit Location" +msgstr "Modificar la dirección" -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Salas de chat de %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 "Ubicación" -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "No hay salas de chat disponibles" +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Compartir este evento" -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Crear" +#: ../../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 "Previsualizar" -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Caducidad" +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Configuración de permisos" -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" +msgstr "Opciones avanzadas" + +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "Editar evento" + +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "Borrar evento" + +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "calendario" + +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" +msgstr "Evento borrado" + +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" +msgstr "Error al eliminar el evento" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:92 ../../include/conversation.php:1632 +msgid "Photos" +msgstr "Fotos" + +#: ../../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 "Cancelar" + +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "Este sitio no es un servidor de directorio" + +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "El servidor de este directorio necesita un \"token\" de acceso" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Guardar en carpeta:" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- seleccionar -" + +#: ../../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/Dreport.php:44 +#: ../../Zotlabs/Module/Dreport.php:27 msgid "Invalid message" msgstr "Mensaje no válido" -#: ../../Zotlabs/Module/Dreport.php:76 +#: ../../Zotlabs/Module/Dreport.php:59 msgid "no results" msgstr "sin resultados" -#: ../../Zotlabs/Module/Dreport.php:91 +#: ../../Zotlabs/Module/Dreport.php:64 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Informe de entrega para %1$s" + +#: ../../Zotlabs/Module/Dreport.php:78 msgid "channel sync processed" msgstr "se ha realizado la sincronización del canal" -#: ../../Zotlabs/Module/Dreport.php:95 +#: ../../Zotlabs/Module/Dreport.php:82 msgid "queued" msgstr "encolado" -#: ../../Zotlabs/Module/Dreport.php:99 +#: ../../Zotlabs/Module/Dreport.php:86 msgid "posted" msgstr "enviado" -#: ../../Zotlabs/Module/Dreport.php:103 +#: ../../Zotlabs/Module/Dreport.php:90 msgid "accepted for delivery" msgstr "aceptado para el envío" -#: ../../Zotlabs/Module/Dreport.php:107 +#: ../../Zotlabs/Module/Dreport.php:94 msgid "updated" msgstr "actualizado" -#: ../../Zotlabs/Module/Dreport.php:110 +#: ../../Zotlabs/Module/Dreport.php:97 msgid "update ignored" msgstr "actualización ignorada" -#: ../../Zotlabs/Module/Dreport.php:113 +#: ../../Zotlabs/Module/Dreport.php:100 msgid "permission denied" msgstr "permiso denegado" -#: ../../Zotlabs/Module/Dreport.php:117 +#: ../../Zotlabs/Module/Dreport.php:104 msgid "recipient not found" msgstr "destinatario no encontrado" -#: ../../Zotlabs/Module/Dreport.php:120 +#: ../../Zotlabs/Module/Dreport.php:107 msgid "mail recalled" msgstr "mensaje de correo revocado" -#: ../../Zotlabs/Module/Dreport.php:123 +#: ../../Zotlabs/Module/Dreport.php:110 msgid "duplicate mail received" msgstr "se ha recibido mensaje duplicado" -#: ../../Zotlabs/Module/Dreport.php:126 +#: ../../Zotlabs/Module/Dreport.php:113 msgid "mail delivered" msgstr "correo enviado" -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Informe de entrega para %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 +#: ../../Zotlabs/Module/Editlayout.php:126 +#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 msgid "Layout Name" msgstr "Nombre de la plantilla" -#: ../../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 "Descripción de la plantilla (opcional)" -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editlayout.php:135 msgid "Edit Layout" msgstr "Modificar la plantilla" -#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:143 msgid "Page link" msgstr "Enlace de la página" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 msgid "Edit Webpage" msgstr "Editar la página web" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Canal añadido." + +#: ../../Zotlabs/Module/Acl.php:227 +msgid "network" +msgstr "red" + +#: ../../Zotlabs/Module/Acl.php:237 +msgid "RSS" +msgstr "RSS" + #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "El grupo de canales ha sido creado." @@ -1809,7 +1585,7 @@ msgid "Could not create privacy group." msgstr "No se puede crear el grupo de canales" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 +#: ../../include/items.php:3893 msgid "Privacy group not found." msgstr "Grupo de canales no encontrado." @@ -1853,61 +1629,35 @@ msgstr "Todos los canales conectados" msgid "Click on a channel to add or remove." msgstr "Haga clic en un canal para agregarlo o quitarlo." -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "Aplicación instalada." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Compartir contenido desde Firefox a $Projectname" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Aplicación con errores" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Servicio de compartición de Firefox: activar el proveedor $Projectname " -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Código incorporado" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Autorizar una conexión de aplicación" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modificar la aplicación" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Volver a su aplicación e introducir este código de seguridad:" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crear una aplicación" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Por favor inicie sesión para continuar." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nombre de la aplicación" +#: ../../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 "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Dirección (URL) de la aplicación" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "Dirección del icono" - -#: ../../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 "Categorías (opcional, lista separada por comas)" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versión" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Precio de la aplicación" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Dirección (URL) donde adquirir la aplicación" - -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Búsqueda de Documentación" +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Búsqueda de Documentación" #: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 #: ../../Zotlabs/Module/Help.php:79 @@ -1915,8 +1665,8 @@ msgid "Help:" msgstr "Ayuda:" #: ../../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 "Ayuda" @@ -1924,5487 +1674,5098 @@ msgstr "Ayuda" msgid "$Projectname Documentation" msgstr "Documentación de $Projectname" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Elemento no disponible" - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Plantilla actualizada." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Editor del Sistema de Descripción de Páginas" - -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Plantilla no encontrada" - -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nombre del módulo:" - -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Ayuda para el diseño de plantillas de página" - -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Compartir contenido desde Firefox a $Projectname" - -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Servicio de compartición de Firefox: activar el proveedor $Projectname " - -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "red" - -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" - -#: ../../Zotlabs/Module/Filestorage.php:87 +#: ../../Zotlabs/Module/Filestorage.php:88 msgid "Permission Denied." msgstr "Permiso denegado" -#: ../../Zotlabs/Module/Filestorage.php:103 +#: ../../Zotlabs/Module/Filestorage.php:104 msgid "File not found." msgstr "Fichero no encontrado." -#: ../../Zotlabs/Module/Filestorage.php:146 +#: ../../Zotlabs/Module/Filestorage.php:147 msgid "Edit file permissions" msgstr "Modificar los permisos del fichero" -#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:156 msgid "Set/edit permissions" msgstr "Establecer/editar los permisos" -#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:157 msgid "Include all files and sub folders" msgstr "Incluir todos los ficheros y subcarpetas" -#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:158 msgid "Return to file list" msgstr "Volver a la lista de ficheros" -#: ../../Zotlabs/Module/Filestorage.php:159 +#: ../../Zotlabs/Module/Filestorage.php:160 msgid "Copy/paste this code to attach file to a post" msgstr "Copiar/pegar este código para adjuntar el fichero al envío" -#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:161 msgid "Copy/paste this URL to link file from a web page" msgstr "Copiar/pegar esta dirección para enlazar el fichero desde una página web" -#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Filestorage.php:163 msgid "Share this file" msgstr "Compartir este fichero" -#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Module/Filestorage.php:164 msgid "Show URL to this file" msgstr "Mostrar la dirección de este fichero" -#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Filestorage.php:165 msgid "Notify your contacts about this file" msgstr "Avisar a sus contactos sobre este fichero" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 -msgid "Layouts" -msgstr "Plantillas" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Aplicaciones (apps)" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elemento no disponible" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Descripción de la plantilla" +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Su paquete de servicios solo permite %d canales." -#: ../../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 "Creado" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "No hay nada para importar." -#: ../../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 "Editado" +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "No se han podido descargar datos de su antiguo servidor" -#: ../../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/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "El fichero importado está vacío." -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Descargar el fichero PDL" +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Me gusta/No me gusta" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." +msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Esta acción está restringida solo para miembros." +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "No hay canal. La importación ha fallado" -#: ../../Zotlabs/Module/Like.php:25 +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Importación completada." + +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." +msgstr "Debe estar registrado para poder usar esta funcionalidad." + +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Importar canal" + +#: ../../Zotlabs/Module/Import.php:538 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Solicitud incorrecta." +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Fichero para subir" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "el canal" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "O proporcione los detalles de su antiguo servidor/hub" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "elemento" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Canal no disponible." +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Su antigua dirección de correo electrónico" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Acción anterior revocada." +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "Su antigua contraseña" -#: ../../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/Import.php:544 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 -msgid "status" -msgstr "el mensaje de estado" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Convertir este servidor en mi ubicación primaria" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s le gusta %3$s de %2$s" +#: ../../Zotlabs/Module/Import.php:546 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" -#: ../../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 no le gusta %3$s de %2$s" +#: ../../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 "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s está de acuerdo" +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "No ha sido posible encontrar la entrada original." -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s no está de acuerdo" +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "La entrada vacía ha sido desechada." -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s se abstiene" +#: ../../Zotlabs/Module/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "Contenido de tipo ejecutable no permitido en este canal." -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s participa" +#: ../../Zotlabs/Module/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "Se ha suprimido la entrada duplicada." + +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Error del sistema. La entrada no se ha podido salvar." + +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "No ha sido posible obtener información de la entrada en la base de datos." -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Item.php:1248 #, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s no participa" +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." -#: ../../Zotlabs/Module/Like.php:433 +#: ../../Zotlabs/Module/Item.php:1255 #, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s quizá participe" +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Ha alcanzado su límite de %1$.0f páginas web." -#: ../../Zotlabs/Module/Like.php:536 -msgid "Action completed." -msgstr "Acción completada." +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +msgid "Layouts" +msgstr "Plantillas" -#: ../../Zotlabs/Module/Like.php:537 -msgid "Thank you." -msgstr "Gracias." +#: ../../Zotlabs/Module/Layouts.php:183 +msgid "Comanche page description language help" +msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" -#: ../../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 encontrado." +#: ../../Zotlabs/Module/Layouts.php:187 +msgid "Layout Description" +msgstr "Descripción de la plantilla" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Perfil eliminado." +#: ../../Zotlabs/Module/Layouts.php:192 +msgid "Download PDL file" +msgstr "Descargar el fichero PDL" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Perfil-" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "El nuevo perfil ha sido creado." +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Perfil no disponible para clonar." +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Nombre" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Perfil no disponible para exportar." +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Apellido" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Se necesita el nombre del perfil." +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Sobrenombre o Alias" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Estado civil" +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nombre completo" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Pareja sentimental" +#: ../../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 "Correo electrónico" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Me gusta" +#: ../../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/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "No me gusta" +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Foto del perfil 16px" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Trabajo:" +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Foto del perfil 32px" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religión" +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Foto del perfil 48px" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Ideas políticas" +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Foto del perfil 64px" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Preferencia sexual" +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Foto del perfil 80px" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Página personal" +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Foto del perfil 128px" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Intereses" +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Huso horario" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Dirección" +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Dirección de la página personal" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Perfil actualizado." +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" +msgstr "Idioma" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Ocultar la lista de conexiones a los visitantes del perfil" +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Año de nacimiento" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Modificar los detalles de este perfil" +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Mes de nacimiento" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Ver este perfil" +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Día de nacimiento" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 -msgid "Edit visibility" -msgstr "Editar visibilidad" +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Fecha de nacimiento" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Gestión del perfil" +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Género" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Cambiar la imagen de portada del perfil" +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Hombre" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 -msgid "Change profile photo" -msgstr "Cambiar la foto del perfil" +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Mujer" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Crear un nuevo perfil usando estos ajustes" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "página web" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Clonar este perfil" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloque" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Eliminar este perfil" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "plantilla" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Añadir cosas al perfil" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menú" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Personales" +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s elemento instalado" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relación" +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Elemento con instalación fallida: %s" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Varios" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Me gusta/No me gusta" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importar perfil desde un fichero" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Esta acción está restringida solo para miembros." -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Exportar perfil a un fichero" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Género" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Solicitud incorrecta." -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Estado civil" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "el canal" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Preferencia sexual" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "elemento" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Nombre del perfil" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Canal no disponible." -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Este es su perfil principal." +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Acción anterior revocada." -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Nombre completo" +#: ../../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/Profiles.php:714 -msgid "Title/Description" -msgstr "Título o descripción" +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 +msgid "status" +msgstr "el mensaje de estado" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Dirección" +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Ciudad" +#: ../../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 no le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Región o Estado" +#: ../../Zotlabs/Module/Like.php:424 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s está de acuerdo" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "Código postal" +#: ../../Zotlabs/Module/Like.php:426 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s no está de acuerdo" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "País" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Quién (si es pertinente)" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Por ejemplo: ana123, María González, sara@ejemplo.com" +#: ../../Zotlabs/Module/Like.php:428 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s se abstiene" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "Desde (fecha)" +#: ../../Zotlabs/Module/Like.php:430 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s participa" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Háblenos de usted" +#: ../../Zotlabs/Module/Like.php:432 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s no participa" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Lugar de nacimiento" +#: ../../Zotlabs/Module/Like.php:434 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s quizá participe" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Ideas políticas" +#: ../../Zotlabs/Module/Like.php:537 +msgid "Action completed." +msgstr "Acción completada." -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Creencias religiosas" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Thank you." +msgstr "Gracias." -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Palabras clave utilizadas en los listados de directorios" +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Importación completada" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Por ejemplo: software de fotografía submarina" +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importar elementos" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Preferencias musicales" +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación." -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Libros, literatura" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Se ha superado el límite máximo de invitaciones." -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisión" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : No es una dirección de correo electrónico válida. " -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Cine, danza, cultura, entretenimiento" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Únase a nosotros en $Projectname" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Aficiones o intereses" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Vida sentimental o amorosa" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Falló el envío del mensaje." -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Estudios" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mensajes enviados." +msgstr[1] "%d mensajes enviados." -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Información de contacto y redes sociales" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "No tiene más invitaciones disponibles" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Mis otros canales" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Enviar invitaciones" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 -msgid "Profile Image" -msgstr "Imagen del perfil" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Introduzca las direcciones de correo electrónico, una por línea:" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 -msgid "Edit Profiles" -msgstr "Editar perfiles" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Su mensaje:" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Su paquete de servicios solo permite %d canales." +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Por favor, únase a mi comunidad en $Projectname." -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "No hay nada para importar." +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Tendrá que suministrar este código de invitación:" -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "No se han podido descargar datos de su antiguo servidor" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Regístrese en cualquier sitio de $Projectname (están todos interconectados)" -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "El fichero importado está vacío." +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio." -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "o visitar" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Pulse [conectar]" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "No hay canal. La importación ha fallado" +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "La información privada remota no está disponible." -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Importación completada." +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Visible para:" -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Debe estar registrado para poder usar esta funcionalidad." +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Dirección no encontrada." -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importar canal" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Ha fallado la búsqueda de la dirección." -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Locs.php:66 msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." +"Please select another location to become primary before removing the primary" +" location." +msgstr "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal." -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Fichero para subir" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronización de ubicaciones" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "O proporcione los detalles de su antiguo servidor/hub" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "No encontrada ninguna dirección." -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gestionar las direcciones del canal" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Su antigua dirección de correo electrónico" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Dirección" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Su antigua contraseña" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primario" -#: ../../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" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Eliminar" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Convertir este servidor en mi ubicación primaria" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronizar ahora" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Por favor, espere algunos minutos entre operaciones consecutivas." -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Module/Locs.php:124 msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." - -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal." -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo." -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "No ha sido posible encontrar la entrada original." +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Servidor no encontrado" -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "La entrada vacía ha sido desechada." +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Imposible asociar a un destinatario." -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "Contenido de tipo ejecutable no permitido en este canal." +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Imposible comunicar con el canal solicitado." -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Se ha suprimido la entrada duplicada." +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "No se puede verificar el canal solicitado." -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Error del sistema. La entrada no se ha podido salvar." +#: ../../Zotlabs/Module/Mail.php:78 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "No ha sido posible obtener información de la entrada en la base de datos." +#: ../../Zotlabs/Module/Mail.php:143 +msgid "Messages" +msgstr "Mensajes" -#: ../../Zotlabs/Module/Item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Mensaje revocado." -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Ha alcanzado su límite de %1$.0f páginas web." +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversación eliminada." -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "La información del propietario de la página no pudo ser recuperada." +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Caduca YYYY-MM-DD HH:MM" -#: ../../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/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "El canal solicitado no existe en esta red" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Álbum no encontrado." +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Enviar un mensaje privado" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Borrar álbum" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "Para:" -#: ../../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 "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros" +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Asunto:" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Borrar foto" +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Adjuntar fichero" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "No hay fotos seleccionadas" +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Enviar" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Configurar fecha de caducidad" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "Borrar mensaje" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB de almacenamiento de fotos utilizado." +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Informe de transmisión" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Subir fotos" +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Revocar el mensaje" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Introducir un nombre de álbum" +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "El mensaje ha sido revocado." -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o seleccionar uno existente (doble click)" +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Eliminar conversación" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Crear un mensaje de estado para esta subida" +#: ../../Zotlabs/Module/Mail.php:363 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Título (opcional):" +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Send Reply" +msgstr "Responder" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descripción (opcional):" +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Su mensaje para %s (%s):" -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "El nombre del álbum no ha podido ser descifrado" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Fotos de contacto" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crear un nuevo canal" -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Mostrar lo más reciente primero" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Administración de canales" -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Mostrar lo más antiguo primero" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canal actual" -#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 -msgid "View Photo" -msgstr "Ver foto" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Cambiar a uno de sus canales seleccionándolo." -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Editar álbum" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canal principal" -#: ../../Zotlabs/Module/Photos.php:868 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Convertir en predeterminado" -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" -msgstr "Foto no disponible" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d mensajes nuevos" -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Usar como foto del perfil" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuevas isolicitudes de conexión" -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Usar como imagen de portada del perfil" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canal delegado" -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Foto privada" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "No se ha encontrado una cuenta válida." -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Ver tamaño completo" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Eliminar" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Usuario del sitio (%s)" -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Editar foto" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Se ha solicitado restablecer la contraseña en %s" -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Girar CW (a la derecha)" +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Girar CCW (a la izquierda)" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Restablecer la contraseña" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Introducir un nuevo nombre de álbum" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Su contraseña ha sido restablecida según lo solicitó." -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "o seleccionar uno (doble click) existente" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Su nueva contraseña es" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Título" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Guarde o copie su nueva contraseña - y después" -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Añadir una etiqueta" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "pulse aquí para conectarse" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Marcar como \"solo para adultos\" en el álbum" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Su contraseña en %s ha sido cambiada" -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Me gusta (cambiar)" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "¿Ha olvidado su contraseña?" -#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "No me gusta esto (cambiar)" +#: ../../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 "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Espere por favor" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Dirección de correo electrónico" -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Este es usted" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reiniciar" -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Comentar" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Me gusta" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "No me gusta" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "No se puede actualizar el menú." -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "De acuerdo" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "No se puede crear el menú." -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "En desacuerdo" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nombre del menú" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Abstención" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nombre único (no será visible en la página web) - requerido" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Participaré" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Título del menú" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "No participaré" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visible en la página web - no ponga nada si no desea un título" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Quizá participe" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permitir marcadores" -#: ../../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 "Ver todo" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "El menú se puede usar para guardar marcadores" -#: ../../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] "Me gusta" -msgstr[1] "Me gusta" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Enviar y proceder" -#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1765 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "No me gusta" -msgstr[1] "No me gusta" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menús" -#: ../../Zotlabs/Module/Photos.php:1233 -msgid "Photo Tools" -msgstr "Gestión de las fotos" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Marcadores permitidos" -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "En esta foto:" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Borrar este menú" -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Mapa" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Editar los contenidos del menú" -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Me gusta" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modificar este menú" -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "No me gusta" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "El menú no puede ser eliminado." -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Cerrar" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menú no encontrado" -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Ver álbum" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modificar el menú" -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Fotos recientes" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Añadir o quitar entradas en este menú" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "La información privada remota no está disponible." +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nombre del menú" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visible para:" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Debe ser único, solo será visible para usted" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importación completada" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Título del menú" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importar elementos" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "El título del menú tal como será visto por los demás" -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación." +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permitir marcadores" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Se ha superado el límite máximo de invitaciones." +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "No encontrado." -#: ../../Zotlabs/Module/Invite.php:53 +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una dirección de correo electrónico válida. " +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s está %2$s" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Únase a nosotros en $Projectname" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Estado de ánimo" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Falló el envío del mensaje." +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Perfil compatible" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensajes enviados." -msgstr[1] "%d mensajes enviados." +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "No tiene más invitaciones disponibles" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "está interesado en:" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Enviar invitaciones" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "No se han encontrado perfiles compatibles" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Introduzca las direcciones de correo electrónico, una por línea:" +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "No se encuentra el grupo" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Su mensaje:" +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "No se encuentra el canal" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Por favor, únase a mi comunidad en $Projectname." +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "foro" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Tendrá que suministrar este código de invitación:" +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Buscar resultados para:" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Regístrese en cualquier sitio de $Projectname (están todos interconectados)" +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "El grupo de canales está vacío" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio." +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Grupo de canales: " -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "o visitar" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Conexión no válida." -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Pulse [conectar]" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "No hay más notificaciones del sistema" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Dirección no encontrada." +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notificaciones del sistema" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Ha fallado la búsqueda de la dirección." +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Imposible crear el elemento." -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal." +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "No es posible actualizar el elemento del menú." -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronización de ubicaciones" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "No es posible añadir el elemento al menú" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "No encontrada ninguna dirección." +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permisos del elemento del menú" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Gestionar las direcciones del canal" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(pulsar para abrir o cerrar)" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primario" +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nombre del enlace" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Eliminar" +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Destino del enlace o submenú" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronizar ahora" +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Introducir la dirección del enlace o seleccionar el nombre de un submenú" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Por favor, espere algunos minutos entre operaciones consecutivas." +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Usar la autenticación mágica si está disponible" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal." +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Abrir el enlace en una nueva ventana" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Orden en la lista" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Servidor no encontrado" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Los números más altos irán al final de la lista" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Imposible asociar a un destinatario." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Enviar y terminar" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Imposible comunicar con el canal solicitado." +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Enviar y continuar" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "No se puede verificar el canal solicitado." +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menú:" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Destino del enlace" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Mensajes" +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Editar menú" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Mensaje revocado." +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Editar el elemento" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversación eliminada." +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Eliminar el elemento" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Caduca YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nuevo elemento" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "El canal solicitado no existe en esta red" +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Modificar el contenedor del menú" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Enviar un mensaje privado" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Añadir un elemento al menú" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "Para:" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Eliminar este elemento del menú" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Asunto:" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Modificar este elemento del menú" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Adjuntar fichero" +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Este elemento del menú no se ha encontrado" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Enviar" +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Este elemento del menú ha sido borrado" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Configurar fecha de caducidad" +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Este elemento del menú no puede ser borrado." -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Borrar mensaje" +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Editar elemento del menú" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Informe de transmisión" +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Texto del enlace" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Revocar el mensaje" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nombre o descripción" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "El mensaje ha sido revocado." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Eliminar conversación" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Elija un alias corto" -#: ../../Zotlabs/Module/Mail.php:355 +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Responder" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Clase de canal y privacidad" -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Su mensaje para %s (%s):" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Leer más sobre los roles" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crear un nuevo canal" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crear un canal" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Administración de canales" +#: ../../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 su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canal actual" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "O importar un canal existente desde otro lugar." -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Cambiar a uno de sus canales seleccionándolo." +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Petición inválida del identificador." -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canal principal" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Descartar" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Convertir en predeterminado" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Marcar todas las notificaciones de sistema como leídas" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d mensajes nuevos" +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "La información del propietario de la página no pudo ser recuperada." -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nuevas isolicitudes de conexión" +#: ../../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/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canal delegado" +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Álbum no encontrado." -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "No se puede actualizar el menú." +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Borrar álbum" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "No se puede crear el menú." +#: ../../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 "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nombre del menú" +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Borrar foto" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nombre único (no será visible en la página web) - requerido" +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "No hay fotos seleccionadas" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Título del menú" +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "El acceso a este elemento está restringido." -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible en la página web - no ponga nada si no desea un título" +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permitir marcadores" +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB de almacenamiento de fotos utilizado." -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "El menú se puede usar para guardar marcadores" +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Subir fotos" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Enviar y proceder" +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Introducir un nombre de álbum" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menús" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "o seleccionar uno existente (doble click)" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Marcadores permitidos" +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Crear un mensaje de estado para esta subida" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Borrar este menú" +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Título (opcional):" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Editar los contenidos del menú" +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Descripción (opcional):" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modificar este menú" +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "El nombre del álbum no ha podido ser descifrado" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "El menú no puede ser eliminado." +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Fotos de contacto" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menú no encontrado" +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Mostrar lo más reciente primero" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modificar el menú" +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Mostrar lo más antiguo primero" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Añadir o quitar entradas en este menú" +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Ver foto" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nombre del menú" +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Editar álbum" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Debe ser único, solo será visible para usted" +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Título del menú" +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Foto no disponible" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "El título del menú tal como será visto por los demás" +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Usar como foto del perfil" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permitir marcadores" +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Usar como imagen de portada del perfil" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "No encontrado." +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Foto privada" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "No se ha encontrado una cuenta válida." +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Ver tamaño completo" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Eliminar" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Usuario del sitio (%s)" +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Editar foto" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Se ha solicitado restablecer la contraseña en %s" +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Girar CW (a la derecha)" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Girar CCW (a la izquierda)" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Restablecer la contraseña" +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Introducir un nuevo nombre de álbum" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Su contraseña ha sido restablecida según lo solicitó." +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "o seleccionar uno (doble click) existente" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Su nueva contraseña es" +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Título" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Guarde o copie su nueva contraseña - y después" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Añadir una etiqueta" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "pulse aquí para conectarse" +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Marcar como \"solo para adultos\" en el álbum" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Su contraseña en %s ha sido cambiada" +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Me gusta (cambiar)" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "¿Ha olvidado su contraseña?" +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "No me gusta esto (cambiar)" -#: ../../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 "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Espere por favor" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Dirección de correo electrónico" +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Este es usted" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reiniciar" +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Comentar" -#: ../../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/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Me gusta" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Estado de ánimo" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "No me gusta" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "De acuerdo" -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "No se encuentra el grupo" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "En desacuerdo" -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "No se encuentra el canal" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Abstención" -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "foro" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Participaré" -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Buscar resultados para:" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "No participaré" -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "El grupo de canales está vacío" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Quizá participe" -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Grupo de canales: " +#: ../../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 "Ver todo" -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Conexión no válida." +#: ../../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] "Me gusta" +msgstr[1] "Me gusta" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "No hay más notificaciones del sistema" +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "No me gusta" +msgstr[1] "No me gusta" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notificaciones del sistema" +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "Gestión de las fotos" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Perfil compatible" +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "En esta foto:" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Mapa" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "está interesado en:" +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Me gusta" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "No se han encontrado perfiles compatibles" +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "No me gusta" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Publicaciones y comentarios" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Cerrar" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo publicaciones" +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Ver álbum" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Fotos recientes" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Imposible crear el elemento." +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "le ha enviado un mensaje privado" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "No es posible actualizar el elemento del menú." +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "añadió este canal a sus conexiones" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "No es posible añadir el elemento al menú" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permisos del elemento del menú" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[hoy]" -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(pulsar para abrir o cerrar)" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "publicó un evento" -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nombre del enlace" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "No se puede encontrar su servidor." -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Destino del enlace o submenú" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Enviado con éxito." -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Introducir la dirección del enlace o seleccionar el nombre de un submenú" +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Error del protocolo OpenID. Ningún ID recibido como respuesta." -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Usar la autenticación mágica si está disponible" +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "El acceso ha fallado." -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Abrir el enlace en una nueva ventana" +#: ../../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/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Orden en la lista" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Los números más altos irán al final de la lista" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor de configuración" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Enviar y terminar" +#: ../../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ón: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Enviar y continuar" +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Plantilla actualizada." -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menú:" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Editor del Sistema de Descripción de Páginas" -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Destino del enlace" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Plantilla no encontrada" -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Editar menú" +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nombre del módulo:" -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Editar el elemento" +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Ayuda para el diseño de plantillas de página" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Eliminar el elemento" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Toques y otras cosas" -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nuevo elemento" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Dar un toque a alguien" -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Modificar el contenedor del menú" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Toque/Incitación" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Añadir un elemento al menú" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Dar un toque, incitar o hacer otras cosas a alguien" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Eliminar este elemento del menú" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Modificar este elemento del menú" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Elegir qué desea enviar al destinatario" -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Este elemento del menú no se ha encontrado" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Convertir en privado este envío" -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Este elemento del menú ha sido borrado" +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Al intentar obtener la dirección, retorna el error: %1$s" -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Este elemento del menú no puede ser borrado." +#: ../../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 encontrado." -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Editar elemento del menú" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Perfil eliminado." -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Texto del enlace" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Perfil-" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Ajustes del tema actualizados." +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "El nuevo perfil ha sido creado." -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# Cuentas" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Perfil no disponible para clonar." -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# cuentas bloqueadas" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Perfil no disponible para exportar." -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# cuentas caducadas" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Se necesita el nombre del perfil." -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# cuentas que caducan" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Estado civil" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# Canales" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Pareja sentimental" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# primario" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Me gusta" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# clones" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "No me gusta" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Mensajes en cola" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Trabajo:" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Debe actualizar su software" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religión" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" -msgstr "Administración" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Ideas políticas" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Sumario" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Preferencia sexual" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Cuentas registradas" +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Página personal" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "Registros pendientes" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Intereses" -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Canales registrados" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Perfil actualizado." -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" -msgstr "Extensiones (plugins) activas" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Ocultar la lista de conexiones a los visitantes del perfil" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versión" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Modificar los detalles de este perfil" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Versión del repositorio (master)" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Ver este perfil" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Versión del repositorio (dev)" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:959 +msgid "Edit visibility" +msgstr "Editar visibilidad" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Ajustes del sitio actualizados." +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Gestión del perfil" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 -msgid "Default" -msgstr "Predeterminado" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Cambiar la imagen de portada del perfil" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 -msgid "mobile" -msgstr "móvil" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +msgid "Change profile photo" +msgstr "Cambiar la foto del perfil" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "experimental" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Crear un nuevo perfil usando estos ajustes" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "no soportado" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Clonar este perfil" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Sí - con aprobación" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Eliminar este perfil" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "Mi sitio no es un servidor público" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Añadir cosas al perfil" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "Mi sitio es un servicio de pago" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 +msgid "Personal" +msgstr "Personales" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "Mi sitio es un servicio gratuito" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relación" -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Varios" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 -msgid "Site" -msgstr "Sitio" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importar perfil desde un fichero" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Registro" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Exportar perfil a un fichero" -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" -msgstr "Subir fichero" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Género" -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" -msgstr "Políticas" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Estado civil" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avanzado" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Preferencia sexual" -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" -msgstr "Nombre del sitio" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Nombre del perfil" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" -msgstr "Banner/Logo" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Este es su perfil principal." -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" -msgstr "Información del Administrador" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Nombre completo" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Título o descripción" -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "Idioma del sistema" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Dirección" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "Tema gráfico del sistema" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Ciudad" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Región o Estado" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" -msgstr "Tema del sistema para móviles" - -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" -msgstr "Tema para dispositivos móviles" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "Código postal" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" -msgstr "Permitir contenidos RSS como conexiones" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "País" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso de los recursos del sistema)" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Quién (si es pertinente)" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" -msgstr "Tamaño máximo de la imagen" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Por ejemplo: ana123, María González, sara@ejemplo.com" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "Desde (fecha)" -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" -msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Háblenos de usted" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" -msgstr "Solo con una invitación" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Lugar de nacimiento" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"." +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Ideas políticas" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" -msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Creencias religiosas" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" -msgstr "Texto del registro" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Palabras clave utilizadas en los listados de directorios" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." -msgstr "Se mostrará de forma destacada en la página de registro." +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Por ejemplo: software de fotografía submarina" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Preferencias musicales" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Libros, literatura" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" -msgstr "Preservar la dirección de la página personal" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisión" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Cine, danza, cultura, entretenimiento" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" -msgstr "Cuentas abandonadas después de x días" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Aficiones o intereses" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Vida sentimental o amorosa" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" -msgstr "Dominios amigos permitidos" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "Estudios" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Información de contacto y redes sociales" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" -msgstr "Se aceptan dominios de correo electrónico" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Mis otros canales" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. " +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +msgid "Profile Image" +msgstr "Imagen del perfil" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" -msgstr "No se permiten dominios de correo electrónico" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 +#: ../../include/channel.php:937 +msgid "Edit Profiles" +msgstr "Editar perfiles" -#: ../../Zotlabs/Module/Admin.php:518 +#: ../../Zotlabs/Module/Profile_photo.php:179 msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" -msgstr "Verificar las direcciones de correo electrónico" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Subir foto de perfil" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identificador del perfil no válido" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" -msgstr "Forzar la publicación" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidad del perfil" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Perfil" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" -msgstr "Importar contenido público" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Pulsar en un contacto para añadirlo o eliminarlo." -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas." +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible para" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" -msgstr "Iniciar sesión en la página personal" +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Servidores públicos" -#: ../../Zotlabs/Module/Admin.php:522 +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Los sitios listados permiten el registro público en la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales." -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" -msgstr "Habilitar la ayuda contextual" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Dirección del hub" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Ver la ayuda contextual para la página actual cuando se pulse el botón de Ayuda." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Tipo de acceso" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" -msgstr "URL del servidor de directorio" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Normas de registro" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" -msgstr "Servidor de directorio predeterminado" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Estadísticas" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" -msgstr "Usuario del proxy" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" -msgstr "Dirección del proxy" +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Valoraciones" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" -msgstr "Tiempo de espera de la red" +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Valorar" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" - -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" -msgstr "Intervalo de entrega" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Sitio web:" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" -msgstr "Intentos de envío por proceso" +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Valoración (esta información es pública)" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5." +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" -msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Ninguna valoración" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Valoración:" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" -msgstr "Carga media máxima" +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Sitio web:" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50." +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Descripción:" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Caducidad del contenido importado de otros sitios (en días)" +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." +msgstr "Ajustes del tema actualizados." -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" -msgstr "0 para que no caduque el contenido importado" +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" +msgstr "# Cuentas" -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "Off" -msgstr "Desactivado" +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" +msgstr "# cuentas bloqueadas" -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "On" -msgstr "Activado" +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" +msgstr "# cuentas caducadas" -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" -msgstr "Bloquear la funcionalidad %s" +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" +msgstr "# cuentas que caducan" -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" -msgstr "Gestionar las funcionalidades" +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" +msgstr "# Canales" -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" -msgstr "Servidor no encontrado" +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" +msgstr "# primario" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" +msgstr "# clones" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" -msgstr "por canal" +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" +msgstr "Mensajes en cola" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" -msgstr "en el servidor" +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" +msgstr "Debe actualizar su software" -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" -msgstr "Servidor" +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 +#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 +#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 +#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 +#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 +#: ../../Zotlabs/Module/Admin.php:1731 +msgid "Administration" +msgstr "Administración" -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro." +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" +msgstr "Sumario" -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: " +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" +msgstr "Cuentas registradas" -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +msgid "Pending registrations" +msgstr "Registros pendientes" -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita." +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" +msgstr "Canales registrados" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 -msgid "Security" -msgstr "Seguridad" +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +msgid "Active plugins" +msgstr "Extensiones (plugins) activas" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" -msgstr "Bloquear páginas públicas" +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" +msgstr "Versión" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado." +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" +msgstr "Versión del repositorio (master)" -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Habilitar \"Seguridad de transporte\" (\"Transport Security\") en la cabecera HTTP" +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" +msgstr "Versión del repositorio (dev)" -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Habilitar la \"Política de seguridad del contenido\" (\"Content Security Policy\") en la cabecera HTTP" +#: ../../Zotlabs/Module/Admin.php:373 +msgid "Site settings updated." +msgstr "Ajustes del sitio actualizados." -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" -msgstr "Permitir la comunicación solo desde estos sitios" +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +msgid "Default" +msgstr "Predeterminado" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +msgid "mobile" +msgstr "móvil" -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" -msgstr "Bloquear la comunicación desde estos sitios" +#: ../../Zotlabs/Module/Admin.php:412 +msgid "experimental" +msgstr "experimental" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" -msgstr "Permitir la comunicación solo desde estos canales" +#: ../../Zotlabs/Module/Admin.php:414 +msgid "unsupported" +msgstr "no soportado" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" +#: ../../Zotlabs/Module/Admin.php:460 +msgid "Yes - with approval" +msgstr "Sí - con aprobación" -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" -msgstr "Bloquear la comunicación desde estos canales" +#: ../../Zotlabs/Module/Admin.php:466 +msgid "My site is not a public server" +msgstr "Mi sitio no es un servidor público" -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Sólo se permite contenido multimedia incorporado desde sitios y enlaces seguros (SSL)." +#: ../../Zotlabs/Module/Admin.php:467 +msgid "My site has paid access only" +msgstr "Mi sitio es un servicio de pago" -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Permitir contenido HTML sin filtrar sólo desde estos dominios " +#: ../../Zotlabs/Module/Admin.php:468 +msgid "My site has free access only" +msgstr "Mi sitio es un servicio gratuito" -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." -msgstr "Un sitio por línea. El contenido incorporado se filtra de forma predeterminada." +#: ../../Zotlabs/Module/Admin.php:469 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" -msgstr "Bloquear contenido con HTML incorporado desde estos dominios" +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +msgid "Site" +msgstr "Sitio" -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" -msgstr "La actualización ha sido marcada como exitosa" - -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "La ejecución de %s ha fallado. Mirar en los informes del sistema." - -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." -msgstr "La actualización de %s se ha realizado exitosamente." - -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito." - -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." -msgstr "No se encuentra la función de actualización de %s." - -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." -msgstr "No ha fallado ninguna actualización." - -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" -msgstr "Han fallado las actualizaciones" - -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" -msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" - -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" -msgstr "Intentar ejecutar este paso de actualización automáticamente" - -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" -msgstr "Estadísticas de la cola" - -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" -msgstr "Total de entradas" - -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" -msgstr "Prioridad" - -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" -msgstr "Dirección de destino" - -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" -msgstr "Marcar el servidor como permanentemente fuera de línea" - -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" -msgstr "Vaciar la cola para este servidor" - -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" -msgstr "Último contacto conocido" - -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s cuenta bloqueada/desbloqueada" -msgstr[1] "%s cuenta bloqueada/desbloqueada" - -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s cuentas eliminadas" -msgstr[1] "%s cuentas eliminadas" - -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "Cuenta no encontrada" - -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "La cuenta '%s' ha sido eliminada" - -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "La cuenta '%s' ha sido bloqueada" - -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "La cuenta '%s' ha sido desbloqueada" - -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 -msgid "Accounts" -msgstr "Cuentas" - -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "seleccionar todo" - -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" -msgstr "Inscripciones en espera de confirmación" - -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "Fecha de solicitud" - -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "Sin registros." - -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "Rechazar" - -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" -msgstr "Todos los canales" - -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" -msgstr "Fecha de registro" - -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" -msgstr "Último acceso" - -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" -msgstr "Caduca" - -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" -msgstr "Clase de servicio" - -#: ../../Zotlabs/Module/Admin.php:1054 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../Zotlabs/Module/Admin.php:1055 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s canales censurados/no censurados" -msgstr[1] "%s canales censurados/no censurados" - -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s código permitido/no permitido al canal" -msgstr[1] "%s código permitido/no permitido al canal" - -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canales eliminados" -msgstr[1] "%s canales eliminados" - -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "Canal no encontrado" - -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Canal '%s' eliminado" - -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' censored" -msgstr "Canal '%s' censurado" - -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Canal '%s' no censurado" - -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Código permitido al canal '%s'" - -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Código no permitido al canal '%s'" - -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 -msgid "Channels" -msgstr "Canales" - -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" -msgstr "Censurar" - -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" -msgstr "No censurar" - -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" -msgstr "Permitir código" - -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" -msgstr "No permitir código" - -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 -msgid "Channel" -msgstr "Canal" - -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" -msgstr "UID" - -#: ../../Zotlabs/Module/Admin.php:1226 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." -msgstr "Extensión %s desactivada." - -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." -msgstr "Extensión %s activada." - -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" -msgstr "Desactivar" - -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" -msgstr "Activar" - -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 -msgid "Plugins" -msgstr "Extensiones (plugins)" - -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" -msgstr "Cambiar" - -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 -msgid "Settings" -msgstr "Ajustes" - -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " -msgstr "Autor:" - -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " -msgstr "Mantenedor:" - -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " -msgstr "Versión mínima del proyecto:" - -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " -msgstr "Versión máxima del proyecto:" - -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " -msgstr "Versión mínima de PHP:" - -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " -msgstr "Se requiere:" - -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" -msgstr "Deshabilitado - versiones incompatibles" - -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Escriba la URL pública del repositorio git del plugin." - -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" -msgstr "URL del repositorio git del plugin" - -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" -msgstr "Nombre personalizado del repositorio" - -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" -msgstr "(opcional)" - -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" -msgstr "Descargar el repositorio" - -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" -msgstr "Instalar un nuevo repositorio" - -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Instalar" - -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" -msgstr "Gestionar los repositorios" - -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" -msgstr "Repositorios de los plugins instalados" - -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" -msgstr "Instalar un nuevo repositorio de plugins" - -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "Actualizar" - -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" -msgstr "Cambiar la rama" - -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." -msgstr "No se han encontrado temas." - -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" -msgstr "Instantánea de pantalla" - -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 -msgid "Themes" -msgstr "Temas" - -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" -msgstr "[Experimental]" - -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" -msgstr "[No soportado]" - -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." -msgstr "Actualizado el informe de configuraciones." - -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 -msgid "Logs" -msgstr "Informes" - -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" -msgstr "Vaciar" - -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" -msgstr "Depuración" - -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" -msgstr "Fichero de informe" - -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio web principal." - -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "Nivel de depuración" - -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "Nuevo campo en el perfil" - -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "Alias del campo" +#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 +msgid "Registration" +msgstr "Registro" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "Nombre del campo en el sistema" +#: ../../Zotlabs/Module/Admin.php:494 +msgid "File upload" +msgstr "Subir fichero" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "Tipo de entrada" +#: ../../Zotlabs/Module/Admin.php:495 +msgid "Policies" +msgstr "Políticas" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "Nombre del campo" +#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avanzado" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" -msgstr "Etiqueta a mostrar en la página del perfil" +#: ../../Zotlabs/Module/Admin.php:500 +msgid "Site name" +msgstr "Nombre del sitio" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" -msgstr "Texto de ayuda" +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Banner/Logo" +msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" -msgstr "Información adicional (opcional)" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "Administrator Information" +msgstr "Información del Administrador" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" -msgstr "Definición del campo no encontrada" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" -msgstr "Modificar el campo del perfil" +#: ../../Zotlabs/Module/Admin.php:503 +msgid "System language" +msgstr "Idioma del sistema" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 -msgid "Profile Fields" -msgstr "Campos del perfil" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "System theme" +msgstr "Tema gráfico del sistema" -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" -msgstr "Campos básicos del perfil" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" -msgstr "Campos avanzados del perfil" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Mobile system theme" +msgstr "Tema del sistema para móviles" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" -msgstr "(Además de los campos básicos)" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Theme for mobile devices" +msgstr "Tema para dispositivos móviles" -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" -msgstr "Todos los campos disponibles" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "Allow Feeds as Connections" +msgstr "Permitir contenidos RSS como conexiones" -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" -msgstr "Campos personalizados" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso de los recursos del sistema)" -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" -msgstr "Crear un campo personalizado" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "Maximum image size" +msgstr "Tamaño máximo de la imagen" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nombre o descripción" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" +#: ../../Zotlabs/Module/Admin.php:509 +msgid "Does this site allow new member registration?" +msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Elija un alias corto" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Invitation only" +msgstr "Solo con una invitación" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format +#: ../../Zotlabs/Module/Admin.php:510 msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"." -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Clase de canal y privacidad" +#: ../../Zotlabs/Module/Admin.php:511 +msgid "Which best describes the types of account offered by this hub?" +msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Register text" +msgstr "Texto del registro" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Leer más sobre los roles" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Will be displayed prominently on the registration page." +msgstr "Se mostrará de forma destacada en la página de registro." -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crear un canal" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" -#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Admin.php:513 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 su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "O importar un canal existente desde otro lugar." +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Preserve site homepage URL" +msgstr "Preservar la dirección de la página personal" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "le ha enviado un mensaje privado" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "añadió este canal a sus conexiones" +#: ../../Zotlabs/Module/Admin.php:515 +msgid "Accounts abandoned after x days" +msgstr "Cuentas abandonadas después de x días" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../Zotlabs/Module/Admin.php:515 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[hoy]" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "Allowed friend domains" +msgstr "Dominios amigos permitidos" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "publicó un evento" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Petición inválida del identificador." +#: ../../Zotlabs/Module/Admin.php:517 +msgid "Allowed email domains" +msgstr "Se aceptan dominios de correo electrónico" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Descartar" +#: ../../Zotlabs/Module/Admin.php:517 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. " -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones de sistema como leídas" +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Not allowed email domains" +msgstr "No se permiten dominios de correo electrónico" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Toques y otras cosas" +#: ../../Zotlabs/Module/Admin.php:518 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado." -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Dar un toque a alguien" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "Verify Email Addresses" +msgstr "Verificar las direcciones de correo electrónico" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Toque/Incitación" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Dar un toque, incitar o hacer otras cosas a alguien" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Force publish" +msgstr "Forzar la publicación" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Elegir qué desea enviar al destinatario" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Import Public Streams" +msgstr "Importar contenido público" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Convertir en privado este envío" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas." -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "No se puede encontrar su servidor." +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Login on Homepage" +msgstr "Iniciar sesión en la página personal" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Enviado con éxito." +#: ../../Zotlabs/Module/Admin.php:522 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Error del protocolo OpenID. Ningún ID recibido como respuesta." +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Enable context help" +msgstr "Habilitar la ayuda contextual" -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "El acceso ha fallado." +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Ver la ayuda contextual para la página actual cuando se pulse el botón de Ayuda." -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identificador del perfil no válido" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Directory Server URL" +msgstr "URL del servidor de directorio" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidad del perfil" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Default directory server" +msgstr "Servidor de directorio predeterminado" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Perfil" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Proxy user" +msgstr "Usuario del proxy" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Pulsar en un contacto para añadirlo o eliminarlo." +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Proxy URL" +msgstr "Dirección del proxy" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible para" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Network timeout" +msgstr "Tiempo de espera de la red" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor de configuración" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Delivery interval" +msgstr "Intervalo de entrega" -#: ../../Zotlabs/Module/Pconfig.php:49 +#: ../../Zotlabs/Module/Admin.php:530 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ón: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." - -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Al intentar obtener la dirección, retorna el error: %1$s" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versión %s" +#: ../../Zotlabs/Module/Admin.php:531 +msgid "Deliveries per process" +msgstr "Intentos de envío por proceso" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:" +#: ../../Zotlabs/Module/Admin.php:531 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5." -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Poll interval" +msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" -#: ../../Zotlabs/Module/Siteinfo.php:49 +#: ../../Zotlabs/Module/Admin.php:532 msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." - -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Etiqueta:" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega." -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Última actualización en segundo plano:" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "Maximum Load Average" +msgstr "Carga media máxima" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Carga media actual:" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50." -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Corriendo en el sitio web" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Caducidad del contenido importado de otros sitios (en días)" -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." +#: ../../Zotlabs/Module/Admin.php:534 +msgid "0 for no expiration of imported content" +msgstr "0 para que no caduque el contenido importado" -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Informes de errores e incidencias: por favor visite" +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "Off" +msgstr "Desactivado" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problemas en $projectname" +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "On" +msgstr "Activado" -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" +#: ../../Zotlabs/Module/Admin.php:678 +#, php-format +msgid "Lock feature %s" +msgstr "Bloquear la funcionalidad %s" -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Administradores del sitio" +#: ../../Zotlabs/Module/Admin.php:686 +msgid "Manage Additional Features" +msgstr "Gestionar las funcionalidades" -#: ../../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 "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita." +#: ../../Zotlabs/Module/Admin.php:703 +msgid "No server found" +msgstr "Servidor no encontrado" -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "El mensaje de error fue:" +#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +msgid "ID" +msgstr "ID" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Falló la autenticación." +#: ../../Zotlabs/Module/Admin.php:710 +msgid "for channel" +msgstr "por canal" -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Acceso desde su servidor" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "on server" +msgstr "en el servidor" -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" +#: ../../Zotlabs/Module/Admin.php:712 +msgid "Server" +msgstr "Servidor" -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Acceder" +#: ../../Zotlabs/Module/Admin.php:746 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro." -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Servidores públicos" +#: ../../Zotlabs/Module/Admin.php:749 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: " -#: ../../Zotlabs/Module/Pubsites.php:25 +#: ../../Zotlabs/Module/Admin.php:750 msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Los sitios listados permiten el registro público en la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales." +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" +msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Dirección del hub" +#: ../../Zotlabs/Module/Admin.php:751 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita." -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipo de acceso" +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +msgid "Security" +msgstr "Seguridad" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Normas de registro" +#: ../../Zotlabs/Module/Admin.php:758 +msgid "Block public" +msgstr "Bloquear páginas públicas" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Estadísticas" +#: ../../Zotlabs/Module/Admin.php:758 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado." -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Admin.php:759 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Habilitar \"Seguridad de transporte\" (\"Transport Security\") en la cabecera HTTP" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Valoraciones" +#: ../../Zotlabs/Module/Admin.php:760 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Habilitar la \"Política de seguridad del contenido\" (\"Content Security Policy\") en la cabecera HTTP" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Valorar" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "Allow communications only from these sites" +msgstr "Permitir la comunicación solo desde estos sitios" -#: ../../Zotlabs/Module/Profile_photo.php:186 +#: ../../Zotlabs/Module/Admin.php:761 msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Subir foto de perfil" +#: ../../Zotlabs/Module/Admin.php:762 +msgid "Block communications from these sites" +msgstr "Bloquear la comunicación desde estos sitios" -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nombre del bloque" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "Allow communications only from these channels" +msgstr "Permitir la comunicación solo desde estos canales" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Bloques" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Título del bloque" +#: ../../Zotlabs/Module/Admin.php:764 +msgid "Block communications from these channels" +msgstr "Bloquear la comunicación desde estos canales" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Sitio web:" +#: ../../Zotlabs/Module/Admin.php:765 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Sólo se permite contenido multimedia incorporado desde sitios y enlaces seguros (SSL)." -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Permitir contenido HTML sin filtrar sólo desde estos dominios " -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Valoración (esta información es pública)" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "One site per line. By default embedded content is filtered." +msgstr "Un sitio por línea. El contenido incorporado se filtra de forma predeterminada." -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" +#: ../../Zotlabs/Module/Admin.php:767 +msgid "Block embedded HTML from these domains" +msgstr "Bloquear contenido con HTML incorporado desde estos dominios" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Ninguna valoración" +#: ../../Zotlabs/Module/Admin.php:785 +msgid "Update has been marked successful" +msgstr "La actualización ha sido marcada como exitosa" -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Valoración:" +#: ../../Zotlabs/Module/Admin.php:795 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "La ejecución de %s ha fallado. Mirar en los informes del sistema." -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Sitio web:" +#: ../../Zotlabs/Module/Admin.php:798 +#, php-format +msgid "Update %s was successfully applied." +msgstr "La actualización de %s se ha realizado exitosamente." -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Descripción:" +#: ../../Zotlabs/Module/Admin.php:802 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito." -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Aplicaciones (apps)" +#: ../../Zotlabs/Module/Admin.php:805 +#, php-format +msgid "Update function %s could not be found." +msgstr "No se encuentra la función de actualización de %s." -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Título (opcional)" +#: ../../Zotlabs/Module/Admin.php:821 +msgid "No failed updates." +msgstr "No ha fallado ninguna actualización." -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modificar este bloque" +#: ../../Zotlabs/Module/Admin.php:825 +msgid "Failed Updates" +msgstr "Han fallado las actualizaciones" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Ningún canal." +#: ../../Zotlabs/Module/Admin.php:827 +msgid "Mark success (if update was manually applied)" +msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Conexiones comunes" +#: ../../Zotlabs/Module/Admin.php:828 +msgid "Attempt to execute this update step automatically" +msgstr "Intentar ejecutar este paso de actualización automáticamente" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Ninguna conexión en común." +#: ../../Zotlabs/Module/Admin.php:859 +msgid "Queue Statistics" +msgstr "Estadísticas de la cola" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Seleccionar una carpeta de marcadores" +#: ../../Zotlabs/Module/Admin.php:860 +msgid "Total Entries" +msgstr "Total de entradas" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Guardar marcador" +#: ../../Zotlabs/Module/Admin.php:861 +msgid "Priority" +msgstr "Prioridad" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "Dirección del marcador" +#: ../../Zotlabs/Module/Admin.php:862 +msgid "Destination URL" +msgstr "Dirección de destino" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" +#: ../../Zotlabs/Module/Admin.php:863 +msgid "Mark hub permanently offline" +msgstr "Marcar el servidor como permanentemente fuera de línea" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana." +#: ../../Zotlabs/Module/Admin.php:864 +msgid "Empty queue for this hub" +msgstr "Vaciar la cola para este servidor" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado." +#: ../../Zotlabs/Module/Admin.php:865 +msgid "Last known contact" +msgstr "Último contacto conocido" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Las contraseñas no coinciden." +#: ../../Zotlabs/Module/Admin.php:901 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s cuenta bloqueada/desbloqueada" +msgstr[1] "%s cuenta bloqueada/desbloqueada" -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." +#: ../../Zotlabs/Module/Admin.php:908 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s cuentas eliminadas" +msgstr[1] "%s cuentas eliminadas" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "Su registro está pendiente de aprobación por el propietario del sitio." +#: ../../Zotlabs/Module/Admin.php:944 +msgid "Account not found" +msgstr "Cuenta no encontrada" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "Su registro no puede ser procesado." +#: ../../Zotlabs/Module/Admin.php:955 +#, php-format +msgid "Account '%s' deleted" +msgstr "La cuenta '%s' ha sido eliminada" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "El registro está deshabilitado en este sitio." +#: ../../Zotlabs/Module/Admin.php:963 +#, php-format +msgid "Account '%s' blocked" +msgstr "La cuenta '%s' ha sido bloqueada" + +#: ../../Zotlabs/Module/Admin.php:971 +#, php-format +msgid "Account '%s' unblocked" +msgstr "La cuenta '%s' ha sido desbloqueada" + +#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 +#: ../../include/widgets.php:1383 +msgid "Accounts" +msgstr "Cuentas" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "El registro en este hub está sometido a aprobación previa." +#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +msgid "select all" +msgstr "seleccionar todo" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registrarse en otro hub afiliado." +#: ../../Zotlabs/Module/Admin.php:1034 +msgid "Registrations waiting for confirm" +msgstr "Inscripciones en espera de confirmación" -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." +#: ../../Zotlabs/Module/Admin.php:1035 +msgid "Request date" +msgstr "Fecha de solicitud" -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Términos del servicio" +#: ../../Zotlabs/Module/Admin.php:1036 +msgid "No registrations." +msgstr "Sin registros." -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" -msgstr "Acepto los %s de este sitio" +#: ../../Zotlabs/Module/Admin.php:1038 +msgid "Deny" +msgstr "Rechazar" -#: ../../Zotlabs/Module/Register.php:223 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Tengo más de 13 años de edad y acepto los %s de este sitio" +#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +msgid "All Channels" +msgstr "Todos los canales" -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Su dirección de correo electrónico" +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "Register date" +msgstr "Fecha de registro" -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Elija una contraseña" +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Last login" +msgstr "Último acceso" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Por favor, vuelva a escribir su contraseña" +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Expires" +msgstr "Caduca" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Por favor, introduzca el código de su invitación" +#: ../../Zotlabs/Module/Admin.php:1052 +msgid "Service Class" +msgstr "Clase de servicio" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "no" +#: ../../Zotlabs/Module/Admin.php:1054 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "sí" +#: ../../Zotlabs/Module/Admin.php:1055 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." -msgstr "Para registrarse en este sitio es necesaria una invitación." +#: ../../Zotlabs/Module/Admin.php:1091 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s canales censurados/no censurados" +msgstr[1] "%s canales censurados/no censurados" -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 -msgid "Register" -msgstr "Registrarse" +#: ../../Zotlabs/Module/Admin.php:1100 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s código permitido/no permitido al canal" +msgstr[1] "%s código permitido/no permitido al 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/Admin.php:1106 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canales eliminados" +msgstr[1] "%s canales eliminados" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Por favor, inicie sesión." +#: ../../Zotlabs/Module/Admin.php:1126 +msgid "Channel not found" +msgstr "Canal no encontrado" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." +#: ../../Zotlabs/Module/Admin.php:1136 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Canal '%s' eliminado" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Eliminar esta cuenta" +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' censored" +msgstr "Canal '%s' censurado" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "ATENCIÓN:" +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Canal '%s' no censurado" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Código permitido al canal '%s'" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" -msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Código no permitido al canal '%s'" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "Por favor, introduzca su contraseña para su verificación:" +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +msgid "Channels" +msgstr "Canales" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Remover esta cuenta, todos sus canales y clones de la red" +#: ../../Zotlabs/Module/Admin.php:1214 +msgid "Censor" +msgstr "Censurar" -#: ../../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 "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" +#: ../../Zotlabs/Module/Admin.php:1215 +msgid "Uncensor" +msgstr "No censurar" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 -msgid "Remove Account" -msgstr "Eliminar cuenta" +#: ../../Zotlabs/Module/Admin.php:1216 +msgid "Allow Code" +msgstr "Permitir código" -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." +#: ../../Zotlabs/Module/Admin.php:1217 +msgid "Disallow Code" +msgstr "No permitir código" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Eliminar este canal" +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +msgid "Channel" +msgstr "Canal" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Este canal va a ser completamente eliminado de la red." +#: ../../Zotlabs/Module/Admin.php:1222 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Eliminar este canal y todos sus clones de la red" +#: ../../Zotlabs/Module/Admin.php:1226 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Admin.php:1227 msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 -msgid "Remove Channel" -msgstr "Eliminar el canal" +#: ../../Zotlabs/Module/Admin.php:1284 +#, php-format +msgid "Plugin %s disabled." +msgstr "Extensión %s desactivada." -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exportar el canal" +#: ../../Zotlabs/Module/Admin.php:1288 +#, php-format +msgid "Plugin %s enabled." +msgstr "Extensión %s activada." -#: ../../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 "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." +#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +msgid "Disable" +msgstr "Desactivar" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Exportar contenidos" +#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +msgid "Enable" +msgstr "Activar" -#: ../../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 "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." +#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 +#: ../../include/widgets.php:1387 +msgid "Plugins" +msgstr "Extensiones (plugins)" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporta sus publicaciones de un año dado." +#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +msgid "Toggle" +msgstr "Cambiar" -#: ../../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 "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." +#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 +msgid "Settings" +msgstr "Ajustes" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" +#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +msgid "Author: " +msgstr "Autor:" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" +#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +msgid "Maintainer: " +msgstr "Mantenedor:" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." +#: ../../Zotlabs/Module/Admin.php:1341 +msgid "Minimum project version: " +msgstr "Versión mínima del proyecto:" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" -msgstr "elementos etiquetados con: %s" +#: ../../Zotlabs/Module/Admin.php:1342 +msgid "Maximum project version: " +msgstr "Versión máxima del proyecto:" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Resultados de la búsqueda para: %s" +#: ../../Zotlabs/Module/Admin.php:1343 +msgid "Minimum PHP version: " +msgstr "Versión mínima de PHP:" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "No se han encontrado restricciones sobre esta clase de servicio." +#: ../../Zotlabs/Module/Admin.php:1344 +msgid "Requires: " +msgstr "Se requiere:" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "El nombre es obligatorio" +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +msgid "Disabled - version incompatibility" +msgstr "Deshabilitado - versiones incompatibles" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "\"Key\" y \"Secret\" son obligatorios" +#: ../../Zotlabs/Module/Admin.php:1394 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Escriba la URL pública del repositorio git del plugin." -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:1395 +msgid "Plugin repo git URL" +msgstr "URL del repositorio git del plugin" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "" +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "Custom repo name" +msgstr "Nombre personalizado del repositorio" -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "" +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "(optional)" +msgstr "(opcional)" -#: ../../Zotlabs/Module/Settings.php:274 -msgid "Not valid email." -msgstr "Correo electrónico no válido." +#: ../../Zotlabs/Module/Admin.php:1397 +msgid "Download Plugin Repo" +msgstr "Descargar el repositorio" -#: ../../Zotlabs/Module/Settings.php:277 -msgid "Protected email address. Cannot change to that email." -msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." +#: ../../Zotlabs/Module/Admin.php:1404 +msgid "Install new repo" +msgstr "Instalar un nuevo repositorio" -#: ../../Zotlabs/Module/Settings.php:286 -msgid "System failure storing new email. Please try again." -msgstr "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo." +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +msgid "Install" +msgstr "Instalar" -#: ../../Zotlabs/Module/Settings.php:303 -msgid "Password verification failed." -msgstr "La comprobación de la contraseña ha fallado." +#: ../../Zotlabs/Module/Admin.php:1427 +msgid "Manage Repos" +msgstr "Gestionar los repositorios" -#: ../../Zotlabs/Module/Settings.php:310 -msgid "Passwords do not match. Password unchanged." -msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." +#: ../../Zotlabs/Module/Admin.php:1428 +msgid "Installed Plugin Repositories" +msgstr "Repositorios de los plugins instalados" -#: ../../Zotlabs/Module/Settings.php:314 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." +#: ../../Zotlabs/Module/Admin.php:1429 +msgid "Install a New Plugin Repository" +msgstr "Instalar un nuevo repositorio de plugins" -#: ../../Zotlabs/Module/Settings.php:328 -msgid "Password changed." -msgstr "Contraseña cambiada." +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +msgid "Update" +msgstr "Actualizar" -#: ../../Zotlabs/Module/Settings.php:330 -msgid "Password update failed. Please try again." -msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." +#: ../../Zotlabs/Module/Admin.php:1436 +msgid "Switch branch" +msgstr "Cambiar la rama" -#: ../../Zotlabs/Module/Settings.php:579 -msgid "Settings updated." -msgstr "Ajustes actualizados." +#: ../../Zotlabs/Module/Admin.php:1550 +msgid "No themes found." +msgstr "No se han encontrado temas." -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 -msgid "Add application" -msgstr "Añadir aplicación" +#: ../../Zotlabs/Module/Admin.php:1606 +msgid "Screenshot" +msgstr "Instantánea de pantalla" -#: ../../Zotlabs/Module/Settings.php:646 -msgid "Name of application" -msgstr "Nombre de la aplicación" +#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 +#: ../../include/widgets.php:1388 +msgid "Themes" +msgstr "Temas" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../Zotlabs/Module/Admin.php:1652 +msgid "[Experimental]" +msgstr "[Experimental]" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" +#: ../../Zotlabs/Module/Admin.php:1653 +msgid "[Unsupported]" +msgstr "[No soportado]" -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../Zotlabs/Module/Admin.php:1677 +msgid "Log settings updated." +msgstr "Actualizado el informe de configuraciones." -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 -msgid "Redirect" -msgstr "Redirigir" +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 +msgid "Logs" +msgstr "Informes" -#: ../../Zotlabs/Module/Settings.php:649 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" +#: ../../Zotlabs/Module/Admin.php:1734 +msgid "Clear" +msgstr "Vaciar" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 -msgid "Icon url" -msgstr "Dirección del icono" +#: ../../Zotlabs/Module/Admin.php:1740 +msgid "Debugging" +msgstr "Depuración" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Opcional" +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "Log file" +msgstr "Fichero de informe" -#: ../../Zotlabs/Module/Settings.php:661 -msgid "Application not found." -msgstr "Aplicación no encontrada." +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio web principal." -#: ../../Zotlabs/Module/Settings.php:704 -msgid "Connected Apps" -msgstr "Aplicaciones (apps) conectadas" +#: ../../Zotlabs/Module/Admin.php:1742 +msgid "Log level" +msgstr "Nivel de depuración" -#: ../../Zotlabs/Module/Settings.php:708 -msgid "Client key starts with" -msgstr "La \"client key\" empieza por" +#: ../../Zotlabs/Module/Admin.php:2028 +msgid "New Profile Field" +msgstr "Nuevo campo en el perfil" -#: ../../Zotlabs/Module/Settings.php:709 -msgid "No name" -msgstr "Sin nombre" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "Field nickname" +msgstr "Alias del campo" -#: ../../Zotlabs/Module/Settings.php:710 -msgid "Remove authorization" -msgstr "Eliminar autorización" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "System name of field" +msgstr "Nombre del campo en el sistema" -#: ../../Zotlabs/Module/Settings.php:723 -msgid "No feature settings configured" -msgstr "No se ha establecido la configuración de los complementos" +#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +msgid "Input type" +msgstr "Tipo de entrada" -#: ../../Zotlabs/Module/Settings.php:730 -msgid "Feature/Addon Settings" -msgstr "Ajustes de los complementos" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Field Name" +msgstr "Nombre del campo" -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Account Settings" -msgstr "Configuración de la cuenta" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Label on profile pages" +msgstr "Etiqueta a mostrar en la página del perfil" -#: ../../Zotlabs/Module/Settings.php:754 -msgid "Current Password" -msgstr "Contraseña actual" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Help text" +msgstr "Texto de ayuda" -#: ../../Zotlabs/Module/Settings.php:755 -msgid "Enter New Password" -msgstr "Escribir una nueva contraseña" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Additional info (optional)" +msgstr "Información adicional (opcional)" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Confirm New Password" -msgstr "Confirmar la nueva contraseña" +#: ../../Zotlabs/Module/Admin.php:2042 +msgid "Field definition not found" +msgstr "Definición del campo no encontrada" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Leave password fields blank unless changing" -msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." +#: ../../Zotlabs/Module/Admin.php:2048 +msgid "Edit Profile Field" +msgstr "Modificar el campo del perfil" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 -msgid "Email Address:" -msgstr "Dirección de correo electrónico:" +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +msgid "Profile Fields" +msgstr "Campos del perfil" -#: ../../Zotlabs/Module/Settings.php:760 -msgid "Remove this account including all its channels" -msgstr "Eliminar esta cuenta incluyendo todos sus canales" +#: ../../Zotlabs/Module/Admin.php:2107 +msgid "Basic Profile Fields" +msgstr "Campos básicos del perfil" -#: ../../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/Admin.php:2108 +msgid "Advanced Profile Fields" +msgstr "Campos avanzados del perfil" + +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "(In addition to basic fields)" +msgstr "(Además de los campos básicos)" -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:2110 +msgid "All available fields" +msgstr "Todos los campos disponibles" -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:2111 +msgid "Custom Fields" +msgstr "Campos personalizados" -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:2115 +msgid "Create Custom Field" +msgstr "Crear un campo personalizado" -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "Aplicación instalada." -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Aplicación con errores" -#: ../../Zotlabs/Module/Settings.php:830 -msgid "Additional Features" -msgstr "Funcionalidades" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Código incorporado" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "Connector Settings" -msgstr "Configuración del conector" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modificar la aplicación" -#: ../../Zotlabs/Module/Settings.php:893 -msgid "No special theme for mobile devices" -msgstr "Sin tema especial para dispositivos móviles" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crear una aplicación" -#: ../../Zotlabs/Module/Settings.php:896 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nombre de la aplicación" -#: ../../Zotlabs/Module/Settings.php:938 -msgid "Display Settings" -msgstr "Ajustes de visualización" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Dirección (URL) de la aplicación" -#: ../../Zotlabs/Module/Settings.php:939 -msgid "Theme Settings" -msgstr "Ajustes del tema" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Dirección del icono" -#: ../../Zotlabs/Module/Settings.php:940 -msgid "Custom Theme Settings" -msgstr "Ajustes personalizados del tema" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - opcional" -#: ../../Zotlabs/Module/Settings.php:941 -msgid "Content Settings" -msgstr "Ajustes del contenido" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorías (opcional, lista separada por comas)" -#: ../../Zotlabs/Module/Settings.php:947 -msgid "Display Theme:" -msgstr "Tema gráfico del perfil:" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versión" -#: ../../Zotlabs/Module/Settings.php:948 -msgid "Mobile Theme:" -msgstr "Tema para el móvil:" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Precio de la aplicación" -#: ../../Zotlabs/Module/Settings.php:949 -msgid "Preload images before rendering the page" -msgstr "Carga previa de las imágenes antes de generar la página" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Dirección (URL) donde adquirir la aplicación" -#: ../../Zotlabs/Module/Settings.php:949 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Seleccionar una carpeta de marcadores" -#: ../../Zotlabs/Module/Settings.php:950 -msgid "Enable user zoom on mobile devices" -msgstr "Habilitar zoom de usuario en dispositivos móviles" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Guardar marcador" -#: ../../Zotlabs/Module/Settings.php:951 -msgid "Update browser every xx seconds" -msgstr "Actualizar navegador cada xx segundos" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "Dirección del marcador" -#: ../../Zotlabs/Module/Settings.php:951 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínimo de 10 segundos, sin máximo" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" -#: ../../Zotlabs/Module/Settings.php:952 -msgid "Maximum number of conversations to load at any time:" -msgstr "Máximo número de conversaciones a cargar en cualquier momento:" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana." -#: ../../Zotlabs/Module/Settings.php:952 -msgid "Maximum of 100 items" -msgstr "Máximo de 100 elementos" +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado." -#: ../../Zotlabs/Module/Settings.php:953 -msgid "Show emoticons (smilies) as images" -msgstr "Mostrar emoticonos (smilies) como imágenes" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Las contraseñas no coinciden." -#: ../../Zotlabs/Module/Settings.php:954 -msgid "Link post titles to source" -msgstr "Enlazar título de la publicación a la fuente original" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." -#: ../../Zotlabs/Module/Settings.php:955 -msgid "System Page Layout Editor - (advanced)" -msgstr "Editor de plantilla de página del sistema - (avanzado)" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "Su registro está pendiente de aprobación por el propietario del sitio." -#: ../../Zotlabs/Module/Settings.php:958 -msgid "Use blog/list mode on channel page" -msgstr "Usar modo blog/lista en la página de inicio del canal" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "Su registro no puede ser procesado." -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 -msgid "(comments displayed separately)" -msgstr "(comentarios mostrados de forma separada)" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "El registro está deshabilitado en este sitio." -#: ../../Zotlabs/Module/Settings.php:959 -msgid "Use blog/list mode on grid page" -msgstr "Mostrar mi red en modo blog" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "El registro en este hub está sometido a aprobación previa." -#: ../../Zotlabs/Module/Settings.php:960 -msgid "Channel page max height of content (in pixels)" -msgstr "Altura máxima del contenido de la página del canal (en píxeles)" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registrarse en otro hub afiliado." -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 -msgid "click to expand content exceeding this height" -msgstr "Pulsar para expandir el contenido que exceda de esta altura" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." -#: ../../Zotlabs/Module/Settings.php:961 -msgid "Grid page max height of content (in pixels)" -msgstr "Altura máxima del contenido de mi red (en píxeles)" +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" +msgstr "Términos del servicio" -#: ../../Zotlabs/Module/Settings.php:990 -msgid "Nobody except yourself" -msgstr "Nadie excepto usted" +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "Acepto los %s de este sitio" -#: ../../Zotlabs/Module/Settings.php:991 -msgid "Only those you specifically allow" -msgstr "Solo aquellos a los que usted permita explícitamente" +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Tengo más de 13 años de edad y acepto los %s de este sitio" -#: ../../Zotlabs/Module/Settings.php:992 -msgid "Approved connections" -msgstr "Conexiones aprobadas" +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "Su dirección de correo electrónico" -#: ../../Zotlabs/Module/Settings.php:993 -msgid "Any connections" -msgstr "Cualquier conexión" +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" +msgstr "Elija una contraseña" -#: ../../Zotlabs/Module/Settings.php:994 -msgid "Anybody on this website" -msgstr "Cualquiera en este sitio web" +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" +msgstr "Por favor, vuelva a escribir su contraseña" -#: ../../Zotlabs/Module/Settings.php:995 -msgid "Anybody in this network" -msgstr "Cualquiera en esta red" +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" +msgstr "Por favor, introduzca el código de su invitación" -#: ../../Zotlabs/Module/Settings.php:996 -msgid "Anybody authenticated" -msgstr "Cualquiera que esté autenticado" +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" +msgstr "no" -#: ../../Zotlabs/Module/Settings.php:997 -msgid "Anybody on the internet" -msgstr "Cualquiera en internet" +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "sí" -#: ../../Zotlabs/Module/Settings.php:1071 -msgid "Publish your default profile in the network directory" -msgstr "Publicar su perfil principal en el directorio de la red" +#: ../../Zotlabs/Module/Register.php:250 +msgid "Membership on this site is by invitation only." +msgstr "Para registrarse en este sitio es necesaria una invitación." -#: ../../Zotlabs/Module/Settings.php:1076 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?" +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 +msgid "Register" +msgstr "Registrarse" -#: ../../Zotlabs/Module/Settings.php:1085 -msgid "Your channel address is" -msgstr "Su dirección de canal es" +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Crear su primer canal" -#: ../../Zotlabs/Module/Settings.php:1127 -msgid "Channel Settings" -msgstr "Ajustes del canal" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Por favor, inicie sesión." -#: ../../Zotlabs/Module/Settings.php:1134 -msgid "Basic Settings" -msgstr "Configuración básica" +#: ../../Zotlabs/Module/Removeaccount.php:34 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 -msgid "Full Name:" -msgstr "Nombre completo:" +#: ../../Zotlabs/Module/Removeaccount.php:56 +msgid "Remove This Account" +msgstr "Eliminar esta cuenta" -#: ../../Zotlabs/Module/Settings.php:1137 -msgid "Your Timezone:" -msgstr "Su huso horario:" +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "WARNING: " +msgstr "ATENCIÓN:" -#: ../../Zotlabs/Module/Settings.php:1138 -msgid "Default Post Location:" -msgstr "Localización geográfica predeterminada para sus publicaciones:" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." -#: ../../Zotlabs/Module/Settings.php:1138 -msgid "Geographical location to display on your posts" -msgstr "Localización geográfica que debe mostrarse en sus publicaciones" +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "This action is permanent and can not be undone!" +msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" -#: ../../Zotlabs/Module/Settings.php:1139 -msgid "Use Browser Location:" -msgstr "Usar la localización geográfica del navegador:" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Please enter your password for verification:" +msgstr "Por favor, introduzca su contraseña para su verificación:" -#: ../../Zotlabs/Module/Settings.php:1141 -msgid "Adult Content" -msgstr "Contenido solo para adultos" +#: ../../Zotlabs/Module/Removeaccount.php:59 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Remover esta cuenta, todos sus canales y clones de la red" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Removeaccount.php:59 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" -#: ../../Zotlabs/Module/Settings.php:1143 -msgid "Security and Privacy Settings" -msgstr "Configuración de seguridad y privacidad" +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 +msgid "Remove Account" +msgstr "Eliminar cuenta" -#: ../../Zotlabs/Module/Settings.php:1146 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" +#: ../../Zotlabs/Module/Removeme.php:33 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." -#: ../../Zotlabs/Module/Settings.php:1148 -msgid "Hide my online presence" -msgstr "Ocultar mi presencia en línea" +#: ../../Zotlabs/Module/Removeme.php:58 +msgid "Remove This Channel" +msgstr "Eliminar este canal" -#: ../../Zotlabs/Module/Settings.php:1148 -msgid "Prevents displaying in your profile that you are online" -msgstr "Evitar mostrar en su perfil que está en línea" +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "This channel will be completely removed from the network. " +msgstr "Este canal va a ser completamente eliminado de la red." -#: ../../Zotlabs/Module/Settings.php:1150 -msgid "Simple Privacy Settings:" -msgstr "Configuración de privacidad sencilla:" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "Remove this channel and all its clones from the network" +msgstr "Eliminar este canal y todos sus clones de la red" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" -#: ../../Zotlabs/Module/Settings.php:1152 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 +msgid "Remove Channel" +msgstr "Eliminar el canal" -#: ../../Zotlabs/Module/Settings.php:1153 -msgid "Private - default private, never open or public" -msgstr "Privado - por defecto, privado, nunca abierto o público" +#: ../../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 "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita." -#: ../../Zotlabs/Module/Settings.php:1154 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "El mensaje de error fue:" -#: ../../Zotlabs/Module/Settings.php:1156 -msgid "Allow others to tag your posts" -msgstr "Permitir a otros etiquetar sus publicaciones" +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Falló la autenticación." -#: ../../Zotlabs/Module/Settings.php:1156 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Acceso desde su servidor" -#: ../../Zotlabs/Module/Settings.php:1158 -msgid "Advanced Privacy Settings" -msgstr "Configuración de privacidad avanzada" +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "Expire other channel content after this many days" -msgstr "Caducar contenido de otros canales después de este número de días" +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Acceder" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "0 or blank to use the website limit." -msgstr "0 o en blanco para usar el límite del sitio web." +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "elementos etiquetados con: %s" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Search.php:218 #, php-format -msgid "This website expires after %d days." -msgstr "Este sitio web caduca después de %d días." +msgid "Search results for: %s" +msgstr "Resultados de la búsqueda para: %s" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "This website does not expire imported content." -msgstr "Este sitio web no caduca el contenido importado." +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "No se han encontrado restricciones sobre esta clase de servicio." -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "The website limit takes precedence if lower than your limit." -msgstr "El límite del sitio web tiene prioridad si es inferior a su propio límite." +#: ../../Zotlabs/Module/Settings.php:69 +msgid "Name is required" +msgstr "El nombre es obligatorio" -#: ../../Zotlabs/Module/Settings.php:1161 -msgid "Maximum Friend Requests/Day:" -msgstr "Máximo de solicitudes de amistad por día:" +#: ../../Zotlabs/Module/Settings.php:73 +msgid "Key and Secret are required" +msgstr "\"Key\" y \"Secret\" son obligatorios" -#: ../../Zotlabs/Module/Settings.php:1161 -msgid "May reduce spam activity" -msgstr "Podría reducir la actividad de spam" +#: ../../Zotlabs/Module/Settings.php:225 +msgid "Not valid email." +msgstr "Correo electrónico no válido." -#: ../../Zotlabs/Module/Settings.php:1162 -msgid "Default Post and Publish Permissions" -msgstr "Permisos predeterminados de entradas y publicaciones" +#: ../../Zotlabs/Module/Settings.php:228 +msgid "Protected email address. Cannot change to that email." +msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." -#: ../../Zotlabs/Module/Settings.php:1164 -msgid "Use my default audience setting for the type of object published" -msgstr "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación" +#: ../../Zotlabs/Module/Settings.php:237 +msgid "System failure storing new email. Please try again." +msgstr "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo." -#: ../../Zotlabs/Module/Settings.php:1167 -msgid "Channel permissions category:" -msgstr "Categoría de permisos del canal:" +#: ../../Zotlabs/Module/Settings.php:254 +msgid "Password verification failed." +msgstr "La comprobación de la contraseña ha fallado." -#: ../../Zotlabs/Module/Settings.php:1173 -msgid "Maximum private messages per day from unknown people:" -msgstr "Máximo de mensajes privados por día de gente desconocida:" +#: ../../Zotlabs/Module/Settings.php:261 +msgid "Passwords do not match. Password unchanged." +msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Settings.php:1173 -msgid "Useful to reduce spamming" -msgstr "Útil para reducir el envío de correo no deseado" +#: ../../Zotlabs/Module/Settings.php:265 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Settings.php:1176 -msgid "Notification Settings" -msgstr "Configuración de las notificaciones" +#: ../../Zotlabs/Module/Settings.php:279 +msgid "Password changed." +msgstr "Contraseña cambiada." -#: ../../Zotlabs/Module/Settings.php:1177 -msgid "By default post a status message when:" -msgstr "Por defecto, enviar un mensaje de estado cuando:" +#: ../../Zotlabs/Module/Settings.php:281 +msgid "Password update failed. Please try again." +msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." -#: ../../Zotlabs/Module/Settings.php:1178 -msgid "accepting a friend request" -msgstr "Acepte una solicitud de amistad" +#: ../../Zotlabs/Module/Settings.php:525 +msgid "Settings updated." +msgstr "Ajustes actualizados." -#: ../../Zotlabs/Module/Settings.php:1179 -msgid "joining a forum/community" -msgstr "al unirse a un foro o comunidad" +#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 +#: ../../Zotlabs/Module/Settings.php:651 +msgid "Add application" +msgstr "Añadir aplicación" -#: ../../Zotlabs/Module/Settings.php:1180 -msgid "making an interesting profile change" -msgstr "Realice un cambio interesante en su perfil" +#: ../../Zotlabs/Module/Settings.php:592 +msgid "Name of application" +msgstr "Nombre de la aplicación" -#: ../../Zotlabs/Module/Settings.php:1181 -msgid "Send a notification email when:" -msgstr "Enviar una notificación por correo electrónico cuando:" +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../Zotlabs/Module/Settings.php:1182 -msgid "You receive a connection request" -msgstr "Reciba una solicitud de conexión" +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" -#: ../../Zotlabs/Module/Settings.php:1183 -msgid "Your connections are confirmed" -msgstr "Sus conexiones hayan sido confirmadas" +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Settings.php:1184 -msgid "Someone writes on your profile wall" -msgstr "Alguien escriba en la página de su perfil (\"muro\")" +#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 +msgid "Redirect" +msgstr "Redirigir" -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Someone writes a followup comment" -msgstr "Alguien escriba un comentario sobre sus publicaciones" +#: ../../Zotlabs/Module/Settings.php:595 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" -#: ../../Zotlabs/Module/Settings.php:1186 -msgid "You receive a private message" -msgstr "Reciba un mensaje privado" +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 +msgid "Icon url" +msgstr "Dirección del icono" -#: ../../Zotlabs/Module/Settings.php:1187 -msgid "You receive a friend suggestion" -msgstr "Reciba una sugerencia de amistad" +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Opcional" -#: ../../Zotlabs/Module/Settings.php:1188 -msgid "You are tagged in a post" -msgstr "Usted sea etiquetado en una publicación" +#: ../../Zotlabs/Module/Settings.php:607 +msgid "Application not found." +msgstr "Aplicación no encontrada." -#: ../../Zotlabs/Module/Settings.php:1189 -msgid "You are poked/prodded/etc. in a post" -msgstr "Reciba un toque o incitación en una publicación" +#: ../../Zotlabs/Module/Settings.php:650 +msgid "Connected Apps" +msgstr "Aplicaciones (apps) conectadas" -#: ../../Zotlabs/Module/Settings.php:1192 -msgid "Show visual notifications including:" -msgstr "Mostrar notificaciones visuales que incluyan:" +#: ../../Zotlabs/Module/Settings.php:654 +msgid "Client key starts with" +msgstr "La \"client key\" empieza por" -#: ../../Zotlabs/Module/Settings.php:1194 -msgid "Unseen grid activity" -msgstr "Nueva actividad en la red" +#: ../../Zotlabs/Module/Settings.php:655 +msgid "No name" +msgstr "Sin nombre" -#: ../../Zotlabs/Module/Settings.php:1195 -msgid "Unseen channel activity" -msgstr "Actividad no vista en el canal" +#: ../../Zotlabs/Module/Settings.php:656 +msgid "Remove authorization" +msgstr "Eliminar autorización" -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Unseen private messages" -msgstr "Mensajes privados no leídos" +#: ../../Zotlabs/Module/Settings.php:669 +msgid "No feature settings configured" +msgstr "No se ha establecido la configuración de los complementos" -#: ../../Zotlabs/Module/Settings.php:1196 -#: ../../Zotlabs/Module/Settings.php:1201 -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Settings.php:1203 -msgid "Recommended" -msgstr "Recomendado" +#: ../../Zotlabs/Module/Settings.php:676 +msgid "Feature/Addon Settings" +msgstr "Ajustes de los complementos" -#: ../../Zotlabs/Module/Settings.php:1197 -msgid "Upcoming events" -msgstr "Próximos eventos" +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Account Settings" +msgstr "Configuración de la cuenta" -#: ../../Zotlabs/Module/Settings.php:1198 -msgid "Events today" -msgstr "Eventos de hoy" +#: ../../Zotlabs/Module/Settings.php:700 +msgid "Current Password" +msgstr "Contraseña actual" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Upcoming birthdays" -msgstr "Próximos cumpleaños" +#: ../../Zotlabs/Module/Settings.php:701 +msgid "Enter New Password" +msgstr "Escribir una nueva contraseña" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Not available in all themes" -msgstr "No disponible en todos los temas" +#: ../../Zotlabs/Module/Settings.php:702 +msgid "Confirm New Password" +msgstr "Confirmar la nueva contraseña" -#: ../../Zotlabs/Module/Settings.php:1200 -msgid "System (personal) notifications" -msgstr "Notificaciones del sistema (personales)" +#: ../../Zotlabs/Module/Settings.php:702 +msgid "Leave password fields blank unless changing" +msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." -#: ../../Zotlabs/Module/Settings.php:1201 -msgid "System info messages" -msgstr "Mensajes de información del sistema" +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 +msgid "Email Address:" +msgstr "Dirección de correo electrónico:" -#: ../../Zotlabs/Module/Settings.php:1202 -msgid "System critical alerts" -msgstr "Alertas críticas del sistema" +#: ../../Zotlabs/Module/Settings.php:706 +msgid "Remove this account including all its channels" +msgstr "Eliminar esta cuenta incluyendo todos sus canales" -#: ../../Zotlabs/Module/Settings.php:1203 -msgid "New connections" -msgstr "Nuevas conexiones" +#: ../../Zotlabs/Module/Settings.php:729 +msgid "Additional Features" +msgstr "Funcionalidades" + +#: ../../Zotlabs/Module/Settings.php:753 +msgid "Connector Settings" +msgstr "Configuración del conector" + +#: ../../Zotlabs/Module/Settings.php:792 +msgid "No special theme for mobile devices" +msgstr "Sin tema especial para dispositivos móviles" + +#: ../../Zotlabs/Module/Settings.php:795 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimental)" + +#: ../../Zotlabs/Module/Settings.php:837 +msgid "Display Settings" +msgstr "Ajustes de visualización" -#: ../../Zotlabs/Module/Settings.php:1204 -msgid "System Registrations" -msgstr "Registros del sistema" +#: ../../Zotlabs/Module/Settings.php:838 +msgid "Theme Settings" +msgstr "Ajustes del tema" -#: ../../Zotlabs/Module/Settings.php:1205 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" +#: ../../Zotlabs/Module/Settings.php:839 +msgid "Custom Theme Settings" +msgstr "Ajustes personalizados del tema" -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Notify me of events this many days in advance" -msgstr "Avisarme de los eventos con algunos días de antelación" +#: ../../Zotlabs/Module/Settings.php:840 +msgid "Content Settings" +msgstr "Ajustes del contenido" -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Must be greater than 0" -msgstr "Debe ser mayor que 0" +#: ../../Zotlabs/Module/Settings.php:846 +msgid "Display Theme:" +msgstr "Tema gráfico del perfil:" -#: ../../Zotlabs/Module/Settings.php:1209 -msgid "Advanced Account/Page Type Settings" -msgstr "Ajustes avanzados de la cuenta y de los tipos de página" +#: ../../Zotlabs/Module/Settings.php:847 +msgid "Mobile Theme:" +msgstr "Tema para el móvil:" -#: ../../Zotlabs/Module/Settings.php:1210 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" +#: ../../Zotlabs/Module/Settings.php:848 +msgid "Preload images before rendering the page" +msgstr "Carga previa de las imágenes antes de generar la página" -#: ../../Zotlabs/Module/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:848 msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!." +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." -#: ../../Zotlabs/Module/Settings.php:1214 -msgid "Miscellaneous Settings" -msgstr "Ajustes diversos" +#: ../../Zotlabs/Module/Settings.php:849 +msgid "Enable user zoom on mobile devices" +msgstr "Habilitar zoom de usuario en dispositivos móviles" -#: ../../Zotlabs/Module/Settings.php:1215 -msgid "Default photo upload folder" -msgstr "Carpeta por defecto de las fotos subidas" +#: ../../Zotlabs/Module/Settings.php:850 +msgid "Update browser every xx seconds" +msgstr "Actualizar navegador cada xx segundos" -#: ../../Zotlabs/Module/Settings.php:1215 -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "%Y - current year, %m - current month" -msgstr "%Y - año en curso, %m - mes actual" +#: ../../Zotlabs/Module/Settings.php:850 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Mínimo de 10 segundos, sin máximo" -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "Default file upload folder" -msgstr "Carpeta por defecto de los archivos subidos" +#: ../../Zotlabs/Module/Settings.php:851 +msgid "Maximum number of conversations to load at any time:" +msgstr "Máximo número de conversaciones a cargar en cualquier momento:" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "Personal menu to display in your channel pages" -msgstr "Menú personal que debe mostrarse en las páginas de su canal" +#: ../../Zotlabs/Module/Settings.php:851 +msgid "Maximum of 100 items" +msgstr "Máximo de 100 elementos" -#: ../../Zotlabs/Module/Settings.php:1220 -msgid "Remove this channel." -msgstr "Eliminar este canal." +#: ../../Zotlabs/Module/Settings.php:852 +msgid "Show emoticons (smilies) as images" +msgstr "Mostrar emoticonos (smilies) como imágenes" -#: ../../Zotlabs/Module/Settings.php:1221 -msgid "Firefox Share $Projectname provider" -msgstr "Servicio de compartición de Firefox: proveedor $Projectname" +#: ../../Zotlabs/Module/Settings.php:853 +msgid "Link post titles to source" +msgstr "Enlazar título de la publicación a la fuente original" -#: ../../Zotlabs/Module/Settings.php:1222 -msgid "Start calendar week on monday" -msgstr "Comenzar el calendario semanal por el lunes" +#: ../../Zotlabs/Module/Settings.php:854 +msgid "System Page Layout Editor - (advanced)" +msgstr "Editor de plantilla de página del sistema - (avanzado)" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "Servidor $Projectname - Instalación" +#: ../../Zotlabs/Module/Settings.php:857 +msgid "Use blog/list mode on channel page" +msgstr "Usar modo blog/lista en la página de inicio del canal" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr "No se ha podido conectar a la base de datos." +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +msgid "(comments displayed separately)" +msgstr "(comentarios mostrados de forma separada)" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS." +#: ../../Zotlabs/Module/Settings.php:858 +msgid "Use blog/list mode on grid page" +msgstr "Mostrar mi red en modo blog" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "No se puede crear la tabla." +#: ../../Zotlabs/Module/Settings.php:859 +msgid "Channel page max height of content (in pixels)" +msgstr "Altura máxima del contenido de la página del canal (en píxeles)" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "La base de datos del sitio ha sido instalada." +#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 +msgid "click to expand content exceeding this height" +msgstr "Pulsar para expandir el contenido que exceda de esta altura" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." +#: ../../Zotlabs/Module/Settings.php:860 +msgid "Grid page max height of content (in pixels)" +msgstr "Altura máxima del contenido de mi red (en píxeles)" -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Settings.php:894 +msgid "Nobody except yourself" +msgstr "Nadie excepto usted" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "Verificación del sistema" +#: ../../Zotlabs/Module/Settings.php:895 +msgid "Only those you specifically allow" +msgstr "Solo aquellos a los que usted permita explícitamente" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "Verificar de nuevo" +#: ../../Zotlabs/Module/Settings.php:896 +msgid "Approved connections" +msgstr "Conexiones aprobadas" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Conexión a la base de datos" +#: ../../Zotlabs/Module/Settings.php:897 +msgid "Any connections" +msgstr "Cualquier conexión" -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos." +#: ../../Zotlabs/Module/Settings.php:898 +msgid "Anybody on this website" +msgstr "Cualquiera en este sitio web" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes." +#: ../../Zotlabs/Module/Settings.php:899 +msgid "Anybody in this network" +msgstr "Cualquiera en esta red" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir." +#: ../../Zotlabs/Module/Settings.php:900 +msgid "Anybody authenticated" +msgstr "Cualquiera que esté autenticado" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "Nombre del servidor de base de datos" +#: ../../Zotlabs/Module/Settings.php:901 +msgid "Anybody on the internet" +msgstr "Cualquiera en internet" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "De forma predeterminada es 127.0.0.1" +#: ../../Zotlabs/Module/Settings.php:976 +msgid "Publish your default profile in the network directory" +msgstr "Publicar su perfil principal en el directorio de la red" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Puerto de la base de datos" +#: ../../Zotlabs/Module/Settings.php:981 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" +#: ../../Zotlabs/Module/Settings.php:990 +msgid "Your channel address is" +msgstr "Su dirección de canal es" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Usuario de la base de datos" +#: ../../Zotlabs/Module/Settings.php:1032 +msgid "Channel Settings" +msgstr "Ajustes del canal" -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Contraseña de acceso a la base de datos" +#: ../../Zotlabs/Module/Settings.php:1039 +msgid "Basic Settings" +msgstr "Configuración básica" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Nombre de la base de datos" +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 +msgid "Full Name:" +msgstr "Nombre completo:" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "Tipo de base de datos" +#: ../../Zotlabs/Module/Settings.php:1042 +msgid "Your Timezone:" +msgstr "Su huso horario:" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "Dirección de correo electrónico del administrador del sitio" +#: ../../Zotlabs/Module/Settings.php:1043 +msgid "Default Post Location:" +msgstr "Localización geográfica predeterminada para sus publicaciones:" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web." +#: ../../Zotlabs/Module/Settings.php:1043 +msgid "Geographical location to display on your posts" +msgstr "Localización geográfica que debe mostrarse en sus publicaciones" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "Dirección del sitio web" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Use Browser Location:" +msgstr "Usar la localización geográfica del navegador:" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Por favor, use SSL (https) si está disponible." +#: ../../Zotlabs/Module/Settings.php:1046 +msgid "Adult Content" +msgstr "Contenido solo para adultos" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" +#: ../../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 "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Ajustes del sitio" +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Security and Privacy Settings" +msgstr "Configuración de seguridad y privacidad" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "¿Habilitar las funcionalidades avanzadas de $Projectname ?" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Algunas funcionalidades avanzadas, si bien son útiles, pueden ser más adecuadas para un público técnicamente competente" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Hide my online presence" +msgstr "Ocultar mi presencia en línea" -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." -msgstr "Se requiere la versión 5.5, o superior, de PHP." +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Prevents displaying in your profile that you are online" +msgstr "Evitar mostrar en su perfil que está en línea" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" -msgstr "Versión de PHP" +#: ../../Zotlabs/Module/Settings.php:1055 +msgid "Simple Privacy Settings:" +msgstr "Configuración de privacidad sencilla:" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web." +#: ../../Zotlabs/Module/Settings.php:1056 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" -#: ../../Zotlabs/Module/Setup.php:405 +#: ../../Zotlabs/Module/Settings.php:1057 msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron." +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" -msgstr "Ruta del ejecutable PHP" +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Private - default private, never open or public" +msgstr "Privado - por defecto, privado, nunca abierto o público" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación." +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" -msgstr "PHP en línea de comandos" +#: ../../Zotlabs/Module/Settings.php:1061 +msgid "Allow others to tag your posts" +msgstr "Permitir a otros etiquetar sus publicaciones" -#: ../../Zotlabs/Module/Setup.php:423 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"." +"Often used by the community to retro-actively flag inappropriate content" +msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." -msgstr "Esto es necesario para que funcione la transmisión de mensajes." +#: ../../Zotlabs/Module/Settings.php:1063 +msgid "Advanced Privacy Settings" +msgstr "Configuración de privacidad avanzada" -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "Expire other channel content after this many days" +msgstr "Caducar contenido de otros canales después de este número de días" -#: ../../Zotlabs/Module/Setup.php:445 +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "0 or blank to use the website limit." +msgstr "0 o en blanco para usar el límite del sitio web." + +#: ../../Zotlabs/Module/Settings.php:1065 #, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez." +msgid "This website expires after %d days." +msgstr "Este sitio web caduca después de %d días." -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "This website does not expire imported content." +msgstr "Este sitio web no caduca el contenido importado." -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" -msgstr "Límites PHP de subida" +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "The website limit takes precedence if lower than your limit." +msgstr "El límite del sitio web tiene prioridad si es inferior a su propio límite." -#: ../../Zotlabs/Module/Setup.php:475 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado." +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "Maximum Friend Requests/Day:" +msgstr "Máximo de solicitudes de amistad por día:" -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "May reduce spam activity" +msgstr "Podría reducir la actividad de spam" -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" -msgstr "Generar claves de cifrado" +#: ../../Zotlabs/Module/Settings.php:1067 +msgid "Default Post and Publish Permissions" +msgstr "Permisos predeterminados de entradas y publicaciones" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" -msgstr "módulo libCurl PHP" +#: ../../Zotlabs/Module/Settings.php:1069 +msgid "Use my default audience setting for the type of object published" +msgstr "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación" -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" -msgstr "módulo PHP GD graphics" +#: ../../Zotlabs/Module/Settings.php:1072 +msgid "Channel permissions category:" +msgstr "Categoría de permisos del canal:" -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" -msgstr "módulo PHP OpenSSL" +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "Maximum private messages per day from unknown people:" +msgstr "Máximo de mensajes privados por día de gente desconocida:" -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" -msgstr "módulo PHP mysqli o postgres" +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "Useful to reduce spamming" +msgstr "Útil para reducir el envío de correo no deseado" -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" -msgstr "módulo PHP mb_string" +#: ../../Zotlabs/Module/Settings.php:1081 +msgid "Notification Settings" +msgstr "Configuración de las notificaciones" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "xml PHP module" -msgstr "módulo PHP xml" +#: ../../Zotlabs/Module/Settings.php:1082 +msgid "By default post a status message when:" +msgstr "Por defecto, enviar un mensaje de estado cuando:" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 -msgid "Apache mod_rewrite module" -msgstr "módulo Apache mod_rewrite " +#: ../../Zotlabs/Module/Settings.php:1083 +msgid "accepting a friend request" +msgstr "Acepte una solicitud de amistad" -#: ../../Zotlabs/Module/Setup.php:500 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." +#: ../../Zotlabs/Module/Settings.php:1084 +msgid "joining a forum/community" +msgstr "al unirse a un foro o comunidad" -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Settings.php:1085 +msgid "making an interesting profile change" +msgstr "Realice un cambio interesante en su perfil" -#: ../../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: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" +#: ../../Zotlabs/Module/Settings.php:1086 +msgid "Send a notification email when:" +msgstr "Enviar una notificación por correo electrónico cuando:" -#: ../../Zotlabs/Module/Setup.php:514 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." +#: ../../Zotlabs/Module/Settings.php:1087 +msgid "You receive a connection request" +msgstr "Reciba una solicitud de conexión" -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." +#: ../../Zotlabs/Module/Settings.php:1088 +msgid "Your connections are confirmed" +msgstr "Sus conexiones hayan sido confirmadas" -#: ../../Zotlabs/Module/Setup.php:522 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." +#: ../../Zotlabs/Module/Settings.php:1089 +msgid "Someone writes on your profile wall" +msgstr "Alguien escriba en la página de su perfil (\"muro\")" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado." +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "Someone writes a followup comment" +msgstr "Alguien escriba un comentario sobre sus publicaciones" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "You receive a private message" +msgstr "Reciba un mensaje privado" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "You receive a friend suggestion" +msgstr "Reciba una sugerencia de amistad" -#: ../../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 "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." +#: ../../Zotlabs/Module/Settings.php:1093 +msgid "You are tagged in a post" +msgstr "Usted sea etiquetado en una publicación" -#: ../../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 "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." +#: ../../Zotlabs/Module/Settings.php:1094 +msgid "You are poked/prodded/etc. in a post" +msgstr "Reciba un toque o incitación en una publicación" -#: ../../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 término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla." +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Show visual notifications including:" +msgstr "Mostrar notificaciones visuales que incluyan:" -#: ../../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 "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." +#: ../../Zotlabs/Module/Settings.php:1099 +msgid "Unseen grid activity" +msgstr "Nueva actividad en la red" -#: ../../Zotlabs/Module/Setup.php:558 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php tiene permisos de escritura" +#: ../../Zotlabs/Module/Settings.php:1100 +msgid "Unseen channel activity" +msgstr "Actividad no vista en el canal" -#: ../../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 "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." +#: ../../Zotlabs/Module/Settings.php:1101 +msgid "Unseen private messages" +msgstr "Mensajes privados no leídos" -#: ../../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 "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal." +#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "Recommended" +msgstr "Recomendado" -#: ../../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 "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." +#: ../../Zotlabs/Module/Settings.php:1102 +msgid "Upcoming events" +msgstr "Próximos eventos" -#: ../../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: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." +#: ../../Zotlabs/Module/Settings.php:1103 +msgid "Events today" +msgstr "Eventos de hoy" -#: ../../Zotlabs/Module/Setup.php:578 -#, php-format -msgid "%s is writable" -msgstr "%s tiene permisos de escritura" +#: ../../Zotlabs/Module/Settings.php:1104 +msgid "Upcoming birthdays" +msgstr "Próximos cumpleaños" -#: ../../Zotlabs/Module/Setup.php:594 -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 "" +#: ../../Zotlabs/Module/Settings.php:1104 +msgid "Not available in all themes" +msgstr "No disponible en todos los temas" -#: ../../Zotlabs/Module/Setup.php:598 -msgid "store is writable" -msgstr "\"store\" tiene permisos de escritura" +#: ../../Zotlabs/Module/Settings.php:1105 +msgid "System (personal) notifications" +msgstr "Notificaciones del sistema (personales)" -#: ../../Zotlabs/Module/Setup.php:631 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." +#: ../../Zotlabs/Module/Settings.php:1106 +msgid "System info messages" +msgstr "Mensajes de información del sistema" -#: ../../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 su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." +#: ../../Zotlabs/Module/Settings.php:1107 +msgid "System critical alerts" +msgstr "Alertas críticas del sistema" -#: ../../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 "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "New connections" +msgstr "Nuevas conexiones" -#: ../../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 su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." +#: ../../Zotlabs/Module/Settings.php:1109 +msgid "System Registrations" +msgstr "Registros del sistema" -#: ../../Zotlabs/Module/Setup.php:635 +#: ../../Zotlabs/Module/Settings.php:1110 msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." +"Also show new wall posts, private messages and connections under Notices" +msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" + +#: ../../Zotlabs/Module/Settings.php:1112 +msgid "Notify me of events this many days in advance" +msgstr "Avisarme de los eventos con algunos días de antelación" + +#: ../../Zotlabs/Module/Settings.php:1112 +msgid "Must be greater than 0" +msgstr "Debe ser mayor que 0" + +#: ../../Zotlabs/Module/Settings.php:1114 +msgid "Advanced Account/Page Type Settings" +msgstr "Ajustes avanzados de la cuenta y de los tipos de página" + +#: ../../Zotlabs/Module/Settings.php:1115 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Settings.php:1118 msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!." -#: ../../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/Settings.php:1119 +msgid "Miscellaneous Settings" +msgstr "Ajustes diversos" -#: ../../Zotlabs/Module/Setup.php:641 -msgid "SSL certificate validation" -msgstr "validación del certificado SSL" +#: ../../Zotlabs/Module/Settings.php:1120 +msgid "Default photo upload folder" +msgstr "Carpeta por defecto de las fotos subidas" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" +#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1121 +msgid "%Y - current year, %m - current month" +msgstr "%Y - año en curso, %m - mes actual" -#: ../../Zotlabs/Module/Setup.php:650 -msgid "Url rewrite is working" -msgstr "La reescritura de las direcciones funciona correctamente" +#: ../../Zotlabs/Module/Settings.php:1121 +msgid "Default file upload folder" +msgstr "Carpeta por defecto de los archivos subidos" -#: ../../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 "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." +#: ../../Zotlabs/Module/Settings.php:1123 +msgid "Personal menu to display in your channel pages" +msgstr "Menú personal que debe mostrarse en las páginas de su canal" -#: ../../Zotlabs/Module/Setup.php:683 -msgid "Errors encountered creating database tables." -msgstr "Se han encontrado errores al crear las tablas de la base de datos." +#: ../../Zotlabs/Module/Settings.php:1125 +msgid "Remove this channel." +msgstr "Eliminar este canal." -#: ../../Zotlabs/Module/Setup.php:720 -msgid "

What next

" -msgstr "

Siguiente paso

" +#: ../../Zotlabs/Module/Settings.php:1126 +msgid "Firefox Share $Projectname provider" +msgstr "Servicio de compartición de Firefox: proveedor $Projectname" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Settings.php:1127 +msgid "Start calendar week on monday" +msgstr "Comenzar el calendario semanal por el lunes" + +#: ../../Zotlabs/Module/Setup.php:179 +msgid "$Projectname Server - Setup" +msgstr "Servidor $Projectname - Instalación" + +#: ../../Zotlabs/Module/Setup.php:183 +msgid "Could not connect to database." +msgstr "No se ha podido conectar a la base de datos." + +#: ../../Zotlabs/Module/Setup.php:187 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS." -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Ficheros: compartidos conmigo" +#: ../../Zotlabs/Module/Setup.php:194 +msgid "Could not create table." +msgstr "No se puede crear la tabla." -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NUEVO" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Your site database has been installed." +msgstr "La base de datos del sitio ha sido instalada." -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Eliminar todos los ficheros" +#: ../../Zotlabs/Module/Setup.php:203 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Eliminar este fichero" +#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 +#: ../../Zotlabs/Module/Setup.php:721 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Elemento actualizado." +#: ../../Zotlabs/Module/Setup.php:263 +msgid "System check" +msgstr "Verificación del sistema" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Guardar objeto: ha fallado" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "Check again" +msgstr "Verificar de nuevo" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Elemento añadido" +#: ../../Zotlabs/Module/Setup.php:290 +msgid "Database connection" +msgstr "Conexión a la base de datos" -#: ../../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/Setup.php:291 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos." -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Mostrar elemento" +#: ../../Zotlabs/Module/Setup.php:292 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes." -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "elemento no encontrado." +#: ../../Zotlabs/Module/Setup.php:293 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir." -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Editar elemento" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Server Name" +msgstr "Nombre del servidor de base de datos" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Seleccionar un perfil" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Default is 127.0.0.1" +msgstr "De forma predeterminada es 127.0.0.1" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Publicar una actividad" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Port" +msgstr "Puerto de la base de datos" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Sólo enviar a espectadores del perfil pertinente." +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Communication port number - use 0 for default" +msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Nombre del elemento, p. ej.:. \"algo\"" +#: ../../Zotlabs/Module/Setup.php:299 +msgid "Database Login Name" +msgstr "Usuario de la base de datos" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "Dirección del elemento (opcional)" +#: ../../Zotlabs/Module/Setup.php:300 +msgid "Database Login Password" +msgstr "Contraseña de acceso a la base de datos" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "Dirección para la foto o elemento (opcional)" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Name" +msgstr "Nombre de la base de datos" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Añadir alguna cosa a su perfil" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Type" +msgstr "Tipo de base de datos" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado." +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "Site administrator email address" +msgstr "Dirección de correo electrónico del administrador del sitio" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Fuente creada." +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web." -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Fuente actualizada." +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Website URL" +msgstr "Dirección del sitio web" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Please use SSL (https) URL if available." +msgstr "Por favor, use SSL (https) si está disponible." -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 -msgid "Channel Sources" -msgstr "Orígenes de los contenidos del canal" +#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 +msgid "Please select a default timezone for your website" +msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Gestionar contenido de origen remoto para su canal." +#: ../../Zotlabs/Module/Setup.php:333 +msgid "Site settings" +msgstr "Ajustes del sitio" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nueva fuente" +#: ../../Zotlabs/Module/Setup.php:347 +msgid "Enable $Projectname advanced features?" +msgstr "¿Habilitar las funcionalidades avanzadas de $Projectname ?" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Module/Setup.php:347 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes." +"Some advanced features, while useful - may be best suited for technically " +"proficient audiences" +msgstr "Algunas funcionalidades avanzadas, si bien son útiles, pueden ser más adecuadas para un público técnicamente competente" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importar solo contenido que contenga estas palabras (una por línea)" +#: ../../Zotlabs/Module/Setup.php:388 +msgid "PHP version 5.5 or greater is required." +msgstr "Se requiere la versión 5.5, o superior, de PHP." -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Dejar en blanco para importar todo el contenido público" +#: ../../Zotlabs/Module/Setup.php:389 +msgid "PHP version" +msgstr "Versión de PHP" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Nombre del canal" +#: ../../Zotlabs/Module/Setup.php:404 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web." -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Setup.php:405 msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Añadir las categorías siguientes a las entradas importadas de esta fuente (separadas por comas)" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron." -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Fuente no encontrada" +#: ../../Zotlabs/Module/Setup.php:409 +msgid "PHP executable path" +msgstr "Ruta del ejecutable PHP" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Editar fuente" +#: ../../Zotlabs/Module/Setup.php:409 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación." -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Eliminar fuente" +#: ../../Zotlabs/Module/Setup.php:414 +msgid "Command line PHP" +msgstr "PHP en línea de comandos" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Fuente eliminada" +#: ../../Zotlabs/Module/Setup.php:423 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"." -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Imposible eliminar la fuente." +#: ../../Zotlabs/Module/Setup.php:424 +msgid "This is required for message delivery to work." +msgstr "Esto es necesario para que funcione la transmisión de mensajes." -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s está siguiendo %3$s de %2$s" +#: ../../Zotlabs/Module/Setup.php:427 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Subthread.php:120 +#: ../../Zotlabs/Module/Setup.php:445 #, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s ha dejado de seguir %3$s de %2$s" - -#: ../../Zotlabs/Module/Suggest.php:39 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez." -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" +#: ../../Zotlabs/Module/Setup.php:450 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "la entrada" +#: ../../Zotlabs/Module/Setup.php:452 +msgid "PHP upload limits" +msgstr "Límites PHP de subida" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 -msgid "comment" -msgstr "el comentario" +#: ../../Zotlabs/Module/Setup.php:475 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado." -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha etiquetado %3$s de %2$s con %4$s" +#: ../../Zotlabs/Module/Setup.php:476 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Etiqueta eliminada." +#: ../../Zotlabs/Module/Setup.php:479 +msgid "Generate encryption keys" +msgstr "Generar claves de cifrado" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Eliminar etiqueta del elemento." +#: ../../Zotlabs/Module/Setup.php:491 +msgid "libCurl PHP module" +msgstr "módulo libCurl PHP" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Seleccionar una etiqueta para eliminar:" +#: ../../Zotlabs/Module/Setup.php:492 +msgid "GD graphics PHP module" +msgstr "módulo PHP GD graphics" -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Páginas web" +#: ../../Zotlabs/Module/Setup.php:493 +msgid "OpenSSL PHP module" +msgstr "módulo PHP OpenSSL" -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Acciones" +#: ../../Zotlabs/Module/Setup.php:494 +msgid "mysqli or postgres PHP module" +msgstr "módulo PHP mysqli o postgres" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Vínculo de la página" +#: ../../Zotlabs/Module/Setup.php:495 +msgid "mb_string PHP module" +msgstr "módulo PHP mb_string" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Título de página" +#: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "módulo PHP mcrypt " -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "" +#: ../../Zotlabs/Module/Setup.php:497 +msgid "xml PHP module" +msgstr "módulo PHP xml" + +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 +msgid "Apache mod_rewrite module" +msgstr "módulo Apache mod_rewrite " -#: ../../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/Setup.php:501 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "Entorno de edición" +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Setup.php:507 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Comparación de revisiones" +#: ../../Zotlabs/Module/Setup.php:515 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Revertir" +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Nombre de su nuevo wiki:" +#: ../../Zotlabs/Module/Setup.php:523 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Nombre de la nueva página:" +#: ../../Zotlabs/Module/Setup.php:527 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado." -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Nuevo nombre:" +#: ../../Zotlabs/Module/Setup.php:531 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Incluir una imagen de los álbumes de fotos" +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Error: el módulo PHP mcrypt es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "Incluir una imagen de sus álbumes" +#: ../../Zotlabs/Module/Setup.php:539 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "OK" +#: ../../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 "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "Elegir imágenes para incluir" +#: ../../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 "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Elegir un álbum" +#: ../../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 "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla." -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Elegir un álbum diferente..." +#: ../../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 "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "Error al obtener la lista de álbumes" +#: ../../Zotlabs/Module/Setup.php:563 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php tiene permisos de escritura" -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "Error al obtener el enlace de la foto" +#: ../../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 hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Error al obtener el álbum" +#: ../../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 "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal." -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Sin conexiones." +#: ../../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 "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Setup.php:580 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visitar el perfil de %s [%s]" +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" -msgstr "Ver conexiones" +#: ../../Zotlabs/Module/Setup.php:583 +#, php-format +msgid "%s is writable" +msgstr "%s tiene permisos de escritura" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Origen del elemento" +#: ../../Zotlabs/Module/Setup.php:599 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to" +" have write access to the store directory under the Red top level folder" +msgstr "Hubzilla guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación." -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autorizar una conexión de aplicación" +#: ../../Zotlabs/Module/Setup.php:603 +msgid "store is writable" +msgstr "\"store\" tiene permisos de escritura" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Volver a su aplicación e introducir este código de seguridad:" +#: ../../Zotlabs/Module/Setup.php:636 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Por favor inicie sesión para continuar." +#: ../../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 "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." -#: ../../Zotlabs/Module/Api.php:87 +#: ../../Zotlabs/Module/Setup.php:638 msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Búsqueda de canales" +#: ../../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 "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Buscar un canal (o un \"webbie\") que comience por:" +#: ../../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 "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "Sala de chat sin nombre" +#: ../../Zotlabs/Module/Setup.php:641 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "Nombre de sala duplicado." +#: ../../Zotlabs/Module/Setup.php:643 +msgid "SSL certificate validation" +msgstr "validación del certificado SSL" -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "Especificador de sala no válido." +#: ../../Zotlabs/Module/Setup.php:649 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "Sala no encontrada." +#: ../../Zotlabs/Module/Setup.php:652 +msgid "Url rewrite is working" +msgstr "La reescritura de las direcciones funciona correctamente" -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "La sala está llena." +#: ../../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 "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 -msgid "$Projectname Notification" -msgstr "Notificación de $Projectname" +#: ../../Zotlabs/Module/Setup.php:685 +msgid "Errors encountered creating database tables." +msgstr "Se han encontrado errores al crear las tablas de la base de datos." -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 -msgid "$projectname" -msgstr "$projectname" +#: ../../Zotlabs/Module/Setup.php:719 +msgid "

What next

" +msgstr "

Siguiente paso

" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 -msgid "Thank You," -msgstr "Gracias," +#: ../../Zotlabs/Module/Setup.php:720 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrador" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Ficheros: compartidos conmigo" -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NUEVO" -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:Aviso] Nuevo mensaje en %s" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Eliminar todos los ficheros" -#: ../../Zotlabs/Lib/Enotify.php:106 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s le ha enviado un nuevo mensaje privado en %3$s." +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Eliminar este fichero" -#: ../../Zotlabs/Lib/Enotify.php:107 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s le ha enviado %2$s." +msgid "Version %s" +msgstr "Versión %s" -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" -msgstr "un mensaje privado" +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:" -#: ../../Zotlabs/Lib/Enotify.php:108 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Por favor visite %s para ver y/o responder a su mensaje privado." +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)" -#: ../../Zotlabs/Lib/Enotify.php:164 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s[/zrl]" +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." -#: ../../Zotlabs/Lib/Enotify.php:172 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%5$s de %4$s[/zrl] " +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Etiqueta:" -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s creado por usted[/zrl]" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Última actualización en segundo plano:" -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:Aviso] Nuevo comentario de %2$s a la conversación #%1$d" +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Carga media actual:" -#: ../../Zotlabs/Lib/Enotify.php:193 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s ha comentado un elemento/conversación que ha estado siguiendo." +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Corriendo en el sitio web" -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Para ver o comentar la conversación, visite %s" +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")" +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Informes de errores e incidencias: por favor visite" -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s ha publicado en su página del perfil en %3$s" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "Problemas en $projectname" -#: ../../Zotlabs/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s ha publicado en [zrl=%3$s]su página del perfil[/zrl]" +#: ../../Zotlabs/Module/Siteinfo.php:80 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla:Aviso] %s le ha etiquetado" +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Administradores del sitio" -#: ../../Zotlabs/Lib/Enotify.php:231 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s le ha etiquetado en %3$s" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado." -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]le etiquetó[/zrl]." +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Fuente creada." -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla:Aviso] %1$s le ha dado un toque" +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Fuente actualizada." -#: ../../Zotlabs/Lib/Enotify.php:245 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s le ha dado un toque en %3$s" +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Lib/Enotify.php:246 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]le ha dado un toque[/zrl]." +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:71 +msgid "Channel Sources" +msgstr "Orígenes de los contenidos del canal" -#: ../../Zotlabs/Lib/Enotify.php:262 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla:Aviso] %s ha etiquetado su publicación" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Gestionar contenido de origen remoto para su canal." -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s ha etiquetado su publicación en %3$s" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nueva fuente" -#: ../../Zotlabs/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s ha etiquetado [zrl=%3$s]su publicación[/zrl]" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes." -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla:Aviso] Ha recibido una solicitud de conexión" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importar solo contenido que contenga estas palabras (una por línea)" -#: ../../Zotlabs/Lib/Enotify.php:277 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, ha recibido una nueva solicitud de conexión de '%2$s' en %3$s" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Dejar en blanco para importar todo el contenido público" -#: ../../Zotlabs/Lib/Enotify.php:278 -#, php-format +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Nombre del canal" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, ha recibido [zrl=%2$s]una nueva solicitud de conexión[/zrl] de %3$s." +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Añadir las categorías siguientes a las entradas importadas de esta fuente (separadas por comas)" -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puede visitar su perfil en %s" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Fuente no encontrada" -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Por favor, visite %s para permitir o rechazar la solicitad de conexión." +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Editar fuente" -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Eliminar fuente" + +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Fuente eliminada" + +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Imposible eliminar la fuente." -#: ../../Zotlabs/Lib/Enotify.php:292 +#: ../../Zotlabs/Module/Subthread.php:118 #, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, ha recibido una sugerencia de conexión de '%2$s' en %3$s" +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s está siguiendo %3$s de %2$s" -#: ../../Zotlabs/Lib/Enotify.php:293 +#: ../../Zotlabs/Module/Subthread.php:120 #, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, ha recibido [zrl=%2$s]una sugerencia de conexión[/zrl] para %3$s de %4$s." - -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "Nombre:" +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s ha dejado de seguir %3$s de %2$s" -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "Foto:" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." -#: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Por favor, visite %s para aprobar o rechazar la sugerencia." +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignorar/Ocultar" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:Aviso]" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +msgid "post" +msgstr "la entrada" -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "ha creado una nueva entrada" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "el comentario" -#: ../../Zotlabs/Lib/Enotify.php:668 +#: ../../Zotlabs/Module/Tagger.php:100 #, php-format -msgid "commented on %s's post" -msgstr "ha comentado la entrada de %s" +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha etiquetado %3$s de %2$s con %4$s" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Administrador del sitio" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Etiqueta eliminada." -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Informe de errores" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Eliminar etiqueta del elemento." -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Ver los marcadores" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Seleccionar una etiqueta para eliminar:" -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Mis salas de chat" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Elemento actualizado." -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Servicio de compartición de Firefox" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Guardar objeto: ha fallado" -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnóstico remoto" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Elemento añadido" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Sugerir canales" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Iniciar sesión" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostrar elemento" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Red" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "elemento no encontrado." -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Mi canal" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Editar elemento" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Eventos" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Seleccionar un perfil" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Directorio" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Publicar una actividad" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Correo" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Sólo enviar a espectadores del perfil pertinente." -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Nombre del elemento, p. ej.:. \"algo\"" -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Probar" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "Dirección del elemento (opcional)" -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Sugerir" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "Dirección para la foto o elemento (opcional)" -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Canal aleatorio" +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Añadir alguna cosa a su perfil" -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Invitar" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exportar el canal" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funcionalidades" +#: ../../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 "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Publicación" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exportar contenidos" -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Comprar" +#: ../../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 "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Mensaje Privado" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporta sus publicaciones de un año dado." -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "Seleccionar" +#: ../../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 "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "Guardar en carpeta" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Participaré" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "No participaré" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Quizá participe" +#: ../../Zotlabs/Module/Viewconnections.php:62 +msgid "No connections." +msgstr "Sin conexiones." -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Estoy de acuerdo" +#: ../../Zotlabs/Module/Viewconnections.php:75 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visitar el perfil de %s [%s]" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "No estoy de acuerdo" +#: ../../Zotlabs/Module/Viewconnections.php:104 +msgid "View Connections" +msgstr "Ver conexiones" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Me abstengo" +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Origen del elemento" -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Destacar añadiendo una estrella" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Páginas web" -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Eliminar estrella" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Acciones" -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Activar o desactivar el estado de entrada preferida" +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Vínculo de la página" -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "preferidas" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Título de página" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Firma de mensaje validada" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Búsqueda de canales" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Firma de mensaje incorrecta" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Buscar un canal (o un \"webbie\") que comience por:" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Añadir etiqueta" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Administrador del sitio" -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 -msgid "like" -msgstr "me gusta" +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "Informe de errores" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "no me gusta" +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "Ver los marcadores" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "Share This" -msgstr "Compartir esto" +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "Mis salas de chat" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "share" -msgstr "compartir" +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "Servicio de compartición de Firefox" -#: ../../Zotlabs/Lib/ThreadItem.php:275 -msgid "Delivery Report" -msgstr "Informe de transmisión" +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "Diagnóstico remoto" -#: ../../Zotlabs/Lib/ThreadItem.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentario" -msgstr[1] "%d comentarios" +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Sugerir canales" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 -#, php-format -msgid "View %s's profile - %s" -msgstr "Ver el perfil de %s - %s" +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Iniciar sesión" -#: ../../Zotlabs/Lib/ThreadItem.php:326 -msgid "to" -msgstr "a" +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Red" -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "via" -msgstr "mediante" +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Mi canal" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "Wall-to-Wall" -msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Eventos" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via Wall-To-Wall:" -msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Directorio" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 -#, php-format -msgid "from %s" -msgstr "desde %s" +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Correo" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" -msgstr "último cambio: %s" +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" -msgstr "Caduca: %s" +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Probar" -#: ../../Zotlabs/Lib/ThreadItem.php:370 -msgid "Save Bookmarks" -msgstr "Guardar en Marcadores" +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Sugerir" -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Add to Calendar" -msgstr "Añadir al calendario" +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Canal aleatorio" -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Mark all seen" -msgstr "Marcar todo como visto" +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Invitar" -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "" +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Funcionalidades" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 -msgid "Bold" -msgstr "Negrita" +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Publicación" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 -msgid "Italic" -msgstr "Itálico " +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Comprar" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 -msgid "Underline" -msgstr "Subrayar" +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" +msgstr "Sala de chat sin nombre" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 -msgid "Quote" -msgstr "Citar" +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" +msgstr "Nombre de sala duplicado." -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 -msgid "Code" -msgstr "Código" +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." +msgstr "Especificador de sala no válido." -#: ../../Zotlabs/Lib/ThreadItem.php:716 -msgid "Image" -msgstr "Imagen" +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." +msgstr "Sala no encontrada." -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Insert Link" -msgstr "Insertar enlace" +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" +msgstr "La sala está llena." -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Video" -msgstr "Vídeo" +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +msgid "$Projectname Notification" +msgstr "Notificación de $Projectname" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Visible para su público predeterminado." +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +msgid "$projectname" +msgstr "$projectname" -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Sólo yo" +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +msgid "Thank You," +msgstr "Gracias," -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Público" +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrador" -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Cualquiera en la red $Projectname" +#: ../../Zotlabs/Lib/Enotify.php:100 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#: ../../Zotlabs/Lib/Enotify.php:104 #, php-format -msgid "Any account on %s" -msgstr "Cualquier cuenta en %s" +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Aviso] Nuevo mensaje en %s" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Cualquiera de mis conexiones" +#: ../../Zotlabs/Lib/Enotify.php:106 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s le ha enviado un nuevo mensaje privado en %3$s." -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Sólo las conexiones que yo permita de forma explícita" +#: ../../Zotlabs/Lib/Enotify.php:107 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s le ha enviado %2$s." -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)" +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" +msgstr "un mensaje privado" -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas" +#: ../../Zotlabs/Lib/Enotify.php:108 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Por favor visite %s para ver y/o responder a su mensaje privado." -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones." +#: ../../Zotlabs/Lib/Enotify.php:164 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s[/zrl]" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado" +#: ../../Zotlabs/Lib/Enotify.php:172 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%5$s de %4$s[/zrl] " -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones" +#: ../../Zotlabs/Lib/Enotify.php:181 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s creado por usted[/zrl]" -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos" +#: ../../Zotlabs/Lib/Enotify.php:192 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla:Aviso] Nuevo comentario de %2$s a la conversación #%1$d" -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web" +#: ../../Zotlabs/Lib/Enotify.php:193 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s ha comentado un elemento/conversación que ha estado siguiendo." -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "No se ha encontrado el nombre de usuario en el fichero importado." +#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 +#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 +#: ../../Zotlabs/Lib/Enotify.php:269 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Para ver o comentar la conversación, visite %s" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." -msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación." +#: ../../Zotlabs/Lib/Enotify.php:202 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")" -#: ../../include/dba/dba_driver.php:171 +#: ../../Zotlabs/Lib/Enotify.php:204 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s ha publicado en su página del perfil en %3$s" -#: ../../include/photos.php:114 +#: ../../Zotlabs/Lib/Enotify.php:206 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "La imagen excede el límite de %lu bytes del sitio" +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s ha publicado en [zrl=%3$s]su página del perfil[/zrl]" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "El fichero de imagen está vacío. " +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla:Aviso] %s le ha etiquetado" -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "La foto no ha podido ser guardada." +#: ../../Zotlabs/Lib/Enotify.php:231 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s le ha etiquetado en %3$s" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nueva foto" +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]le etiquetó[/zrl]." -#: ../../include/photos.php:303 +#: ../../Zotlabs/Lib/Enotify.php:244 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha publicado %2$s en %3$s" +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla:Aviso] %1$s le ha dado un toque" -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Álbumes de fotos" +#: ../../Zotlabs/Lib/Enotify.php:245 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s le ha dado un toque en %3$s" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" +#: ../../Zotlabs/Lib/Enotify.php:246 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]le ha dado un toque[/zrl]." -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Finalizar sesión" +#: ../../Zotlabs/Lib/Enotify.php:262 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla:Aviso] %s ha etiquetado su publicación" -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Finalizar esta sesión" +#: ../../Zotlabs/Lib/Enotify.php:263 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s ha etiquetado su publicación en %3$s" -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Inicio" +#: ../../Zotlabs/Lib/Enotify.php:264 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s ha etiquetado [zrl=%3$s]su publicación[/zrl]" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Sus publicaciones y conversaciones" +#: ../../Zotlabs/Lib/Enotify.php:276 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla:Aviso] Ha recibido una solicitud de conexión" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Su página del perfil" +#: ../../Zotlabs/Lib/Enotify.php:277 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, ha recibido una nueva solicitud de conexión de '%2$s' en %3$s" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Administrar/editar perfiles" +#: ../../Zotlabs/Lib/Enotify.php:278 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, ha recibido [zrl=%2$s]una nueva solicitud de conexión[/zrl] de %3$s." -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Editar el perfil" +#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puede visitar su perfil en %s" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Editar su perfil" +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Por favor, visite %s para permitir o rechazar la solicitad de conexión." -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Sus fotos" +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Sus ficheros" +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, ha recibido una sugerencia de conexión de '%2$s' en %3$s" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Sus salas de chat" +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, ha recibido [zrl=%2$s]una sugerencia de conexión[/zrl] para %3$s de %4$s." -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Marcadores" +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" +msgstr "Nombre:" -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Sus marcadores" +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" +msgstr "Foto:" -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Sus páginas web" +#: ../../Zotlabs/Lib/Enotify.php:303 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Por favor, visite %s para aprobar o rechazar la sugerencia." -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Aviso]" -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Acceder" +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" +msgstr "ha creado una nueva entrada" -#: ../../include/nav.php:129 +#: ../../Zotlabs/Lib/Enotify.php:668 #, php-format -msgid "%s - click to logout" -msgstr "%s - pulsar para finalizar sesión" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Acceder desde su servidor" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Pulsar para identificarse en su servidor de inicio" +msgid "commented on %s's post" +msgstr "ha comentado la entrada de %s" -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Página de inicio" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +msgid "Private Message" +msgstr "Mensaje Privado" -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Crear una cuenta" +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +msgid "Select" +msgstr "Seleccionar" -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Ayuda y documentación" +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "Guardar en carpeta" -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Aplicaciones, utilidades, enlaces, juegos" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Participaré" -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "No participaré" -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Directorio de canales" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Quizá participe" -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Mi red" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "Estoy de acuerdo" -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Marcar todas las notificaciones de la red como vistas" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "No estoy de acuerdo" -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Mi canal" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "Me abstengo" -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas las notificaciones del canal como leídas" +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" +msgstr "Destacar añadiendo una estrella" -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Avisos" +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" +msgstr "Eliminar estrella" -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notificaciones" +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" +msgstr "Activar o desactivar el estado de entrada preferida" -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" +msgstr "preferidas" -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Correo privado" +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +msgid "Message signature validated" +msgstr "Firma de mensaje validada" -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Ver todas los mensajes privados" +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +msgid "Message signature incorrect" +msgstr "Firma de mensaje incorrecta" -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Marcar todos los mensajes privados como leídos" +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" +msgstr "Añadir etiqueta" -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Bandeja de entrada" +#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +msgid "like" +msgstr "me gusta" -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Bandeja de salida" +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "no me gusta" -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nuevo mensaje" +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "Share This" +msgstr "Compartir esto" -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Calendario de eventos" +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "share" +msgstr "compartir" -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Ver todos los eventos" +#: ../../Zotlabs/Lib/ThreadItem.php:275 +msgid "Delivery Report" +msgstr "Informe de transmisión" -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Marcar todos los eventos como leidos" +#: ../../Zotlabs/Lib/ThreadItem.php:293 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentario" +msgstr[1] "%d comentarios" -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Gestionar sus canales" +#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#, php-format +msgid "View %s's profile - %s" +msgstr "Ver el perfil de %s - %s" -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Ajustes de cuenta/canales" +#: ../../Zotlabs/Lib/ThreadItem.php:326 +msgid "to" +msgstr "a" -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Administrador" +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "via" +msgstr "mediante" -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Ajustes y configuración del sitio" +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "Wall-to-Wall" +msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Cargando..." +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "via Wall-To-Wall:" +msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@nombre, #etiqueta, ?ayuda, contenido" +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#, php-format +msgid "from %s" +msgstr "desde %s" -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Espere por favor…" +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#, php-format +msgid "last edited: %s" +msgstr "último cambio: %s" -#: ../../include/network.php:704 -msgid "view full size" -msgstr "Ver en el tamaño original" +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#, php-format +msgid "Expires: %s" +msgstr "Caduca: %s" -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrador" +#: ../../Zotlabs/Lib/ThreadItem.php:370 +msgid "Save Bookmarks" +msgstr "Guardar en Marcadores" -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Sin asunto" +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Add to Calendar" +msgstr "Añadir al calendario" -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" +#: ../../Zotlabs/Lib/ThreadItem.php:380 +msgid "Mark all seen" +msgstr "Marcar todo como visto" -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" +#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] mostrar todo:" -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU Social" +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +msgid "Bold" +msgstr "Negrita" -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +msgid "Italic" +msgstr "Itálico " -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +msgid "Underline" +msgstr "Subrayar" -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +msgid "Quote" +msgstr "Citar" -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +msgid "Code" +msgstr "Código" -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../Zotlabs/Lib/ThreadItem.php:716 +msgid "Image" +msgstr "Imagen" -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Insert Link" +msgstr "Insertar enlace" -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Video" +msgstr "Vídeo" -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nueva página" +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "No se ha encontrado el nombre de usuario en el fichero importado." -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Título" +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +msgid "Unable to create a unique channel address. Import failed." +msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación." + +#: ../../include/dba/dba_driver.php:171 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 @@ -7440,1416 +6801,1586 @@ msgstr "quiere" msgid "likes" msgstr "gusta de" -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "no gusta de" +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "no gusta de" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d de F, Y \\@ G:i" + +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Comienza:" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Finaliza:" + +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Este evento ha sido añadido a su calendario." + +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Sin especificar" + +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Necesita de una intervención" + +#: ../../include/event.php:1014 +msgid "Completed" +msgstr "Completado/a" + +#: ../../include/event.php:1015 +msgid "In Process" +msgstr "En proceso" + +#: ../../include/event.php:1016 +msgid "Cancelled" +msgstr "Cancelado/a" + +#: ../../include/import.php:29 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." + +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "La clonación del canal no ha salido bien. La importación ha fallado." + +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Desconocido)" + +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Visible para cualquiera en internet." + +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Visible sólo para usted." + +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Visible para cualquiera en esta red." + +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Visible para cualquiera que esté autenticado." + +#: ../../include/items.php:1144 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visible para cualquiera en %s." + +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Visible para todas las conexiones." + +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Visible para las conexiones permitidas." + +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Visible para conexiones específicas." + +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "El grupo de canales está vacío." + +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Grupo de canales: %s" + +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Conexión no encontrada" + +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "foto del perfil" + +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "No se ha especificado ningún destinatario." + +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[sin asunto]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "No ha sido posible determinar el remitente. " + +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "No se han podido verificar las publicaciones guardadas." + +#: ../../include/text.php:428 +msgid "prev" +msgstr "anterior" + +#: ../../include/text.php:430 +msgid "first" +msgstr "primera" + +#: ../../include/text.php:459 +msgid "last" +msgstr "última" + +#: ../../include/text.php:462 +msgid "next" +msgstr "próxima" + +#: ../../include/text.php:472 +msgid "older" +msgstr "más antiguas" + +#: ../../include/text.php:474 +msgid "newer" +msgstr "más recientes" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "Sin conexiones" + +#: ../../include/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "Ver todas las %s conexiones" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "un toque" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "ha dado un toque a" + +#: ../../include/text.php:1039 +msgid "ping" +msgstr "un \"ping\"" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "ha enviado un \"ping\" a" -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nombre vacío" +#: ../../include/text.php:1040 +msgid "prod" +msgstr "una incitación " -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nombre demasiado largo" +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "ha incitado a " -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Ningún identificador de la cuenta" +#: ../../include/text.php:1041 +msgid "slap" +msgstr "una bofetada " -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Se requiere un sobrenombre (alias)." +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "ha abofeteado a " -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Sobrenombre en uso. Por favor, elija otro." +#: ../../include/text.php:1042 +msgid "finger" +msgstr "un \"finger\" " -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio." +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "envió un \"finger\" a" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "No ha sido posible recuperar la identidad creada" +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "un reproche" -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Perfil principal" +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "ha hecho un reproche a " -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "El canal solicitado no está disponible." +#: ../../include/text.php:1055 +msgid "happy" +msgstr "feliz " -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Crear un nuevo perfil" +#: ../../include/text.php:1056 +msgid "sad" +msgstr "triste " -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Visible para todos" +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "tranquilo/a" -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Género:" +#: ../../include/text.php:1058 +msgid "tired" +msgstr "cansado/a " -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Estado:" +#: ../../include/text.php:1059 +msgid "perky" +msgstr "vivaz" -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Página personal:" +#: ../../include/text.php:1060 +msgid "angry" +msgstr "enfadado/a" -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Ahora en línea" +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "asombrado/a" -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Me gusta este canal" +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "perplejo/a" -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F Y" +#: ../../include/text.php:1063 +msgid "interested" +msgstr "interesado/a" -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "amargado/a" -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Cumpleaños:" +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "alegre" -#: ../../include/channel.php:1232 -#, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" +#: ../../include/text.php:1066 +msgid "alive" +msgstr "animado/a" -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Orientación sexual:" +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "molesto/a" -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Etiquetas:" +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "ansioso/a" -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Posición política:" +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "de mal humor" -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religión:" +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "perturbado/a" -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Aficciones o intereses:" +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustrado/a" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Me gusta:" +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "deprimido/a" -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "No me gusta:" +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivado/a" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y redes sociales:" +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "relajado/a" -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Mis otros canales:" +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "sorprendido/a" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Preferencias musicales:" +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "lunes" -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Libros, literatura:" +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "martes" -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Televisión:" +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "miércoles" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Cine, danza, cultura, entretenimiento:" +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "jueves" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Vida sentimental o amorosa:" +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "viernes" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Trabajo:" +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "sábado" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Estudios:" +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "domingo" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Me gusta esto" +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "enero" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nueva ventana" +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "febrero" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "marzo" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "El usuario '%s' ha sido eliminado" +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "abril" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ahora está conectado/a con %2$s" +#: ../../include/text.php:1261 +msgid "May" +msgstr "mayo" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha dado un toque a %2$s" +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "junio" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "ha dado un toque a" +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "julio" -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Ver el perfil @ %s de %s" +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "agosto" -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Categorías:" +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "septiembre" -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Archivado bajo:" +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "octubre" -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "Mostrar en su contexto" +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "noviembre" -#: ../../include/conversation.php:850 -msgid "remove" -msgstr "eliminar" +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "diciembre" -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" -msgstr "Eliminar elementos seleccionados" +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Adjunto no reconocido" -#: ../../include/conversation.php:951 -msgid "View Source" -msgstr "Ver el código fuente de la entrada" +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "desconocido" -#: ../../include/conversation.php:952 -msgid "Follow Thread" -msgstr "Seguir este hilo" +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "eliminar categoría" -#: ../../include/conversation.php:953 -msgid "Unfollow Thread" -msgstr "Dejar de seguir este hilo" +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "eliminar del fichero" -#: ../../include/conversation.php:958 -msgid "Activity/Posts" -msgstr "Actividad y publicaciones" +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "por defecto" -#: ../../include/conversation.php:960 -msgid "Edit Connection" -msgstr "Editar conexión" +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Plantilla de la página" -#: ../../include/conversation.php:961 -msgid "Message" -msgstr "Mensaje" +#: ../../include/text.php:1761 +msgid "You can create your own with the layouts tool" +msgstr "Puede crear su propia disposición gráfica con la herramienta de plantillas" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s likes this." -msgstr "A %s le gusta esto." +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Tipo de contenido de la página" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s doesn't like this." -msgstr "A %s no le gusta esto." +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Seleccionar un idioma alternativo" -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "a %2$d personas le gusta esto." -msgstr[1] "A %2$d personas les gusta esto." +#: ../../include/text.php:1953 +msgid "activity" +msgstr "la actividad" -#: ../../include/conversation.php:1084 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "a %2$d personas no les gusta esto." -msgstr[1] "A %2$d personas no les gusta esto." +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Herramientas de diseño web" -#: ../../include/conversation.php:1090 -msgid "and" -msgstr "y" +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Páginas" -#: ../../include/conversation.php:1093 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", y %d persona más" -msgstr[1] ", y %d personas más" +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s like this." -msgstr "A %s le gusta esto." +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nueva aplicación (app)" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s don't like this." -msgstr "A %s no le gusta esto." +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Sugerencias" -#: ../../include/conversation.php:1133 -msgid "Set your location" -msgstr "Establecer su ubicación" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Ver más..." -#: ../../include/conversation.php:1134 -msgid "Clear browser location" -msgstr "Eliminar los datos de localización geográfica del navegador" +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." -#: ../../include/conversation.php:1182 -msgid "Tag term:" -msgstr "Término de la etiqueta:" +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Añadir nueva conexión" -#: ../../include/conversation.php:1183 -msgid "Where are you right now?" -msgstr "¿Donde está ahora?" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Dirección del canal" -#: ../../include/conversation.php:1221 -msgid "Page link name" -msgstr "Nombre del enlace de la página" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" -#: ../../include/conversation.php:1224 -msgid "Post as" -msgstr "Publicar como" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notas" -#: ../../include/conversation.php:1238 -msgid "Toggle voting" -msgstr "Cambiar votación" +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Eliminar término" -#: ../../include/conversation.php:1246 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorías (opcional, lista separada por comas)" +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Búsquedas guardadas" -#: ../../include/conversation.php:1269 -msgid "Set publish date" -msgstr "Establecer la fecha de publicación" +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "añadir" -#: ../../include/conversation.php:1518 -msgid "Discover" -msgstr "Descubrir" +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Carpetas guardadas" -#: ../../include/conversation.php:1521 -msgid "Imported public streams" -msgstr "Contenidos públicos importados" +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Todo" -#: ../../include/conversation.php:1526 -msgid "Commented Order" -msgstr "Comentarios recientes" +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Hemeroteca" -#: ../../include/conversation.php:1529 -msgid "Sort by Comment Date" -msgstr "Ordenar por fecha de comentario" +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Recargar" -#: ../../include/conversation.php:1533 -msgid "Posted Order" -msgstr "Publicaciones recientes" +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Configuración de la cuenta" -#: ../../include/conversation.php:1536 -msgid "Sort by Post Date" -msgstr "Ordenar por fecha de publicación" +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Configuración del canal" -#: ../../include/conversation.php:1544 -msgid "Posts that mention or involve you" -msgstr "Publicaciones que le mencionan o involucran" +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Funcionalidades" -#: ../../include/conversation.php:1553 -msgid "Activity Stream - by date" -msgstr "Contenido - por fecha" +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Complementos" -#: ../../include/conversation.php:1559 -msgid "Starred" -msgstr "Preferidas" +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Ajustes de visualización" -#: ../../include/conversation.php:1562 -msgid "Favourite Posts" -msgstr "Publicaciones favoritas" +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestión de ubicaciones (clones) del canal" -#: ../../include/conversation.php:1569 -msgid "Spam" -msgstr "Correo basura" +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Exportar canal" -#: ../../include/conversation.php:1572 -msgid "Posts flagged as SPAM" -msgstr "Publicaciones marcadas como basura" +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Aplicaciones (apps) conectadas" -#: ../../include/conversation.php:1629 -msgid "Status Messages and Posts" -msgstr "Mensajes de estado y publicaciones" +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Configuración del canal premium" -#: ../../include/conversation.php:1638 -msgid "About" -msgstr "Mi perfil" +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Menú de correo privado" -#: ../../include/conversation.php:1641 -msgid "Profile Details" -msgstr "Detalles del perfil" +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Vista combinada" -#: ../../include/conversation.php:1657 -msgid "Files and Storage" -msgstr "Ficheros y repositorio" +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Bandeja de entrada" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Salas de chat" +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Bandeja de salida" -#: ../../include/conversation.php:1693 -msgid "Saved Bookmarks" -msgstr "Marcadores guardados" +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nuevo mensaje" -#: ../../include/conversation.php:1703 -msgid "Manage Webpages" -msgstr "Administrar páginas web" +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversaciones" -#: ../../include/conversation.php:1768 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Participaré" -msgstr[1] "Participaré" +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Mensajes recibidos" -#: ../../include/conversation.php:1771 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "No participaré" -msgstr[1] "No participaré" +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Enviar mensajes" -#: ../../include/conversation.php:1774 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso/a" -msgstr[1] "Indecisos/as" +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Sin mensajes." -#: ../../include/conversation.php:1777 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "De acuerdo" -msgstr[1] "De acuerdo" +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Eliminar conversación" -#: ../../include/conversation.php:1780 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "En desacuerdo" -msgstr[1] "En desacuerdo" +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Menú de eventos" -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "se abstiene" -msgstr[1] "Se abstienen" +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Eventos del día" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Eventos de la semana" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "La clonación del canal no ha salido bien. La importación ha fallado." +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Eventos del mes" -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Frecuentemente" +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Gestión de eventos" -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Cada hora" +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Exportar el calendario" -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Dos veces al día" +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importar un calendario" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Diariamente" +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Salas de chat" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Semanalmente" +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Resumen" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Mensualmente" +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Miembros del chat" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Actualmente hombre" +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Salas de chat preferidas" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Actualmente mujer" +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Salas de chat sugeridas" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Generalmente hombre" +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/imagen" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Generalmente mujer" +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Hacer clic para ver más" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgénero" +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Valoraciones" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersexual" +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Valorar este canal" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transexual" +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Mostrar las valoraciones" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermafrodita" +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Foros" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Neutral" +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Tareas" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "No especificado" +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Documentación" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indeciso/a" +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Información sobre el proyecto o sitio" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Hombres" +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Para los miembros" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Mujeres" +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Para los administradores" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Homosexual" +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Para los desarrolladores" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbiana" +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "Inscripciones de nuevos miembros pendientes de aprobación" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Sin preferencias" +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Examinar la cola" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisexual" +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Actualizaciones de la base de datos" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosexual" +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Administrador" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Casto/a" +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Extensiones" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Virgen" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "El canal está bloqueado en este sitio." -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Fuera de lo común" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Falta la dirección del canal." -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetichista" +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "Respuesta incompleta del canal." -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Orgías" +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "El canal ha sido eliminado y ya no existe." -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Asexual" +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocolo deshabilitado." -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Soltero/a" +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "El intento de acceder al canal ha fallado." -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Solo/a" +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "No puede conectarse consigo mismo." -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponible" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Marcadores de %1$s" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "No disponible" +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Cronología pública" -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Enamorado/a" +#: ../../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 "Imagen/foto" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Apasionado/a" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Contenido cifrado" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Saliendo con alguien" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Instalar el elemento %s:" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infiel" +#: ../../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 "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio." -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Con adicción al sexo" +#: ../../include/bbcode.php:254 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s escribió %2$s siguiente %3$s" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amigos con algo extra" +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Pulsar para abrir/cerrar" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Casual" +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "spoiler" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Prometido/a" +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Visitantes diferentes verán este texto de forma distinta" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Casado/a" +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 escribió:" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Casado/a en sueños" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opciones del directorio" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Pareja" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modo seguro" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Cohabitando" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo foros públicos" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Matrimonio tradicional" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo este sitio web" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Felíz" +#: ../../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 \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "No estoy buscando" +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Finalizar sesión" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Libertino" +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Finalizar esta sesión" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Engañado/a" +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Inicio" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separado/a" +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Sus publicaciones y conversaciones" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Inestable" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Su página del perfil" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorciado/a" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Administrar/editar perfiles" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Divorciado/a en sueños" +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Editar el perfil" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Viudo/a" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Editar su perfil" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Indeterminado" +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Sus fotos" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Es complicado" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Sus ficheros" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "No me importa" +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Sus salas de chat" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Pregúnteme" +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Marcadores" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Marcadores de %1$s" +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Sus marcadores" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "" +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Sus páginas web" -#: ../../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 \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Acceder" -#: ../../include/text.php:404 -msgid "prev" -msgstr "anterior" +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - pulsar para finalizar sesión" -#: ../../include/text.php:406 -msgid "first" -msgstr "primera" +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Acceder desde su servidor" -#: ../../include/text.php:435 -msgid "last" -msgstr "última" +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Pulsar para identificarse en su servidor de inicio" -#: ../../include/text.php:438 -msgid "next" -msgstr "próxima" +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Página de inicio" -#: ../../include/text.php:448 -msgid "older" -msgstr "más antiguas" +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Crear una cuenta" -#: ../../include/text.php:450 -msgid "newer" -msgstr "más recientes" +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Ayuda y documentación" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Sin conexiones" +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Aplicaciones, utilidades, enlaces, juegos" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" -msgstr "Ver todas las %s conexiones" +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "un toque" +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Directorio de canales" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "un \"ping\"" +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Mi red" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "ha enviado un \"ping\" a" +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Marcar todas las notificaciones de la red como vistas" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "una incitación " +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Mi canal" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "ha incitado a " +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Marcar todas las notificaciones del canal como leídas" -#: ../../include/text.php:1021 -msgid "slap" -msgstr "una bofetada " +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Avisos" -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ha abofeteado a " +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notificaciones" -#: ../../include/text.php:1022 -msgid "finger" -msgstr "un \"finger\" " +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Ver todas las notificaciones" -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "envió un \"finger\" a" +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Correo privado" -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "un reproche" +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Ver todas los mensajes privados" -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "ha hecho un reproche a " +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Marcar todos los mensajes privados como leídos" -#: ../../include/text.php:1035 -msgid "happy" -msgstr "feliz " +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Calendario de eventos" -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste " +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Ver todos los eventos" -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "tranquilo/a" +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Marcar todos los eventos como leidos" -#: ../../include/text.php:1038 -msgid "tired" -msgstr "cansado/a " +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Gestionar sus canales" -#: ../../include/text.php:1039 -msgid "perky" -msgstr "vivaz" +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Ajustes de cuenta/canales" -#: ../../include/text.php:1040 -msgid "angry" -msgstr "enfadado/a" +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Ajustes y configuración del sitio" -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "asombrado/a" +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Cargando..." -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "perplejo/a" +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@nombre, #etiqueta, ?ayuda, contenido" -#: ../../include/text.php:1043 -msgid "interested" -msgstr "interesado/a" +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Espere por favor…" -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amargado/a" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nueva ventana" -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "alegre" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" -#: ../../include/text.php:1046 -msgid "alive" -msgstr "animado/a" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "El usuario '%s' ha sido eliminado" -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "molesto/a" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitación pendiente" +msgstr[1] "%d invitaciones disponibles" -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "ansioso/a" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Encontrar canales" -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "de mal humor" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Introducir nombre o interés" -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "perturbado/a" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Conectar/Seguir" -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrado/a" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Ejemplos: José Fernández, Pesca" -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "deprimido/a" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Perfil aleatorio" -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivado/a" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Invitar a amigos" -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "relajado/a" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Ejemplo avanzado: nombre=juan y país=españa" -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorprendido/a" +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d conexión en común" +msgstr[1] "%d conexiones en común" -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "lunes" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mostrar más" -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "martes" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ahora está conectado/a con %2$s" -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "miércoles" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha dado un toque a %2$s" -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "jueves" +#: ../../include/conversation.php:691 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Ver el perfil @ %s de %s" -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "viernes" +#: ../../include/conversation.php:710 +msgid "Categories:" +msgstr "Categorías:" -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "sábado" +#: ../../include/conversation.php:711 +msgid "Filed under:" +msgstr "Archivado bajo:" -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "domingo" +#: ../../include/conversation.php:738 +msgid "View in context" +msgstr "Mostrar en su contexto" -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "enero" +#: ../../include/conversation.php:847 +msgid "remove" +msgstr "eliminar" -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "febrero" +#: ../../include/conversation.php:852 +msgid "Delete Selected Items" +msgstr "Eliminar elementos seleccionados" -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "marzo" +#: ../../include/conversation.php:948 +msgid "View Source" +msgstr "Ver el código fuente de la entrada" -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "abril" +#: ../../include/conversation.php:949 +msgid "Follow Thread" +msgstr "Seguir este hilo" -#: ../../include/text.php:1241 -msgid "May" -msgstr "mayo" +#: ../../include/conversation.php:950 +msgid "Unfollow Thread" +msgstr "Dejar de seguir este hilo" -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "junio" +#: ../../include/conversation.php:955 +msgid "Activity/Posts" +msgstr "Actividad y publicaciones" -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "julio" +#: ../../include/conversation.php:957 +msgid "Edit Connection" +msgstr "Editar conexión" -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "agosto" +#: ../../include/conversation.php:958 +msgid "Message" +msgstr "Mensaje" -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "septiembre" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s likes this." +msgstr "A %s le gusta esto." -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "octubre" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s doesn't like this." +msgstr "A %s no le gusta esto." -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "noviembre" +#: ../../include/conversation.php:1079 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "a %2$d personas le gusta esto." +msgstr[1] "A %2$d personas les gusta esto." -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "diciembre" +#: ../../include/conversation.php:1081 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "a %2$d personas no les gusta esto." +msgstr[1] "A %2$d personas no les gusta esto." -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Adjunto no reconocido" +#: ../../include/conversation.php:1087 +msgid "and" +msgstr "y" -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "desconocido" +#: ../../include/conversation.php:1090 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", y %d persona más" +msgstr[1] ", y %d personas más" -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "eliminar categoría" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s like this." +msgstr "A %s le gusta esto." -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "eliminar del fichero" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s don't like this." +msgstr "A %s no le gusta esto." -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "por defecto" +#: ../../include/conversation.php:1130 +msgid "Set your location" +msgstr "Establecer su ubicación" -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Plantilla de la página" +#: ../../include/conversation.php:1131 +msgid "Clear browser location" +msgstr "Eliminar los datos de localización geográfica del navegador" -#: ../../include/text.php:1742 -msgid "You can create your own with the layouts tool" -msgstr "Puede crear su propia disposición gráfica con la herramienta de plantillas" +#: ../../include/conversation.php:1177 +msgid "Tag term:" +msgstr "Término de la etiqueta:" -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Tipo de contenido de la página" +#: ../../include/conversation.php:1178 +msgid "Where are you right now?" +msgstr "¿Donde está ahora?" -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Seleccionar un idioma alternativo" +#: ../../include/conversation.php:1210 +msgid "Page link name" +msgstr "Nombre del enlace de la página" -#: ../../include/text.php:1934 -msgid "activity" -msgstr "la actividad" +#: ../../include/conversation.php:1213 +msgid "Post as" +msgstr "Publicar como" -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Herramientas de diseño web" +#: ../../include/conversation.php:1223 +msgid "Toggle voting" +msgstr "Cambiar votación" -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Páginas" +#: ../../include/conversation.php:1231 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorías (opcional, lista separada por comas)" -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Desconectado/a." +#: ../../include/conversation.php:1254 +msgid "Set publish date" +msgstr "Establecer la fecha de publicación" -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Autenticación fallida." +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pueden verse mi actividad y publicaciones normales" +#: ../../include/conversation.php:1503 +msgid "Discover" +msgstr "Descubrir" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Pueden verse mis páginas web" +#: ../../include/conversation.php:1506 +msgid "Imported public streams" +msgstr "Contenidos públicos importados" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" +#: ../../include/conversation.php:1511 +msgid "Commented Order" +msgstr "Comentarios recientes" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Puede marcarse contenido como me gusta/no me gusta" +#: ../../include/conversation.php:1514 +msgid "Sort by Comment Date" +msgstr "Ordenar por fecha de comentario" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" +#: ../../include/conversation.php:1518 +msgid "Posted Order" +msgstr "Publicaciones recientes" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" +#: ../../include/conversation.php:1521 +msgid "Sort by Post Date" +msgstr "Ordenar por fecha de publicación" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" +#: ../../include/conversation.php:1529 +msgid "Posts that mention or involve you" +msgstr "Publicaciones que le mencionan o involucran" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Se puede charlar conmigo (cuando esté disponible)" +#: ../../include/conversation.php:1538 +msgid "Activity Stream - by date" +msgstr "Contenido - por fecha" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Puede escribirse en mi repositorio de ficheros y fotos" +#: ../../include/conversation.php:1544 +msgid "Starred" +msgstr "Preferidas" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Pueden editarse mis páginas web" +#: ../../include/conversation.php:1547 +msgid "Favourite Posts" +msgstr "Publicaciones favoritas" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Algo avanzado - muy útil en comunidades abiertas" +#: ../../include/conversation.php:1554 +msgid "Spam" +msgstr "Correo basura" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Pueden administrarse mis recursos del canal" +#: ../../include/conversation.php:1557 +msgid "Posts flagged as SPAM" +msgstr "Publicaciones marcadas como basura" -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." +#: ../../include/conversation.php:1614 +msgid "Status Messages and Posts" +msgstr "Mensajes de estado y publicaciones" -#: ../../include/features.php:48 -msgid "General Features" -msgstr "Funcionalidades básicas" +#: ../../include/conversation.php:1623 +msgid "About" +msgstr "Mi perfil" -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Caducidad del contenido" +#: ../../include/conversation.php:1626 +msgid "Profile Details" +msgstr "Detalles del perfil" -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Álbumes de fotos" -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Múltiples perfiles" +#: ../../include/conversation.php:1642 +msgid "Files and Storage" +msgstr "Ficheros y repositorio" -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Capacidad de crear múltiples perfiles" +#: ../../include/conversation.php:1678 +msgid "Saved Bookmarks" +msgstr "Marcadores guardados" -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Perfiles avanzados" +#: ../../include/conversation.php:1688 +msgid "Manage Webpages" +msgstr "Administrar páginas web" -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Secciones y selecciones de perfil adicionales" +#: ../../include/conversation.php:1747 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Participaré" +msgstr[1] "Participaré" -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Importar/Exportar perfil" +#: ../../include/conversation.php:1750 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "No participaré" +msgstr[1] "No participaré" -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" +#: ../../include/conversation.php:1753 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso/a" +msgstr[1] "Indecisos/as" -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Páginas web" +#: ../../include/conversation.php:1756 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "De acuerdo" +msgstr[1] "De acuerdo" -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Proveer páginas web gestionadas en su canal" +#: ../../include/conversation.php:1759 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "En desacuerdo" +msgstr[1] "En desacuerdo" -#: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "" +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "se abstiene" +msgstr[1] "Se abstienen" -#: ../../include/features.php:56 -msgid "Hide Rating" -msgstr "Ocultar las valoraciones" +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Frecuentemente" -#: ../../include/features.php:56 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares." +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Cada hora" -#: ../../include/features.php:57 -msgid "Private Notes" -msgstr "Notas privadas" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Dos veces al día" -#: ../../include/features.php:57 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Diariamente" -#: ../../include/features.php:58 -msgid "Navigation Channel Select" -msgstr "Navegación por el selector de canales" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Semanalmente" -#: ../../include/features.php:58 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Mensualmente" -#: ../../include/features.php:59 -msgid "Photo Location" -msgstr "Ubicación de las fotos" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Actualmente hombre" -#: ../../include/features.php:59 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Actualmente mujer" -#: ../../include/features.php:60 -msgid "Access Controlled Chatrooms" -msgstr "Salas de chat moderadas" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Generalmente hombre" -#: ../../include/features.php:60 -msgid "Provide chatrooms and chat services with access control." -msgstr "Proporcionar salas y servicios de chat moderados." +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Generalmente mujer" -#: ../../include/features.php:61 -msgid "Smart Birthdays" -msgstr "Cumpleaños inteligentes" +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transgénero" -#: ../../include/features.php:61 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Intersexual" -#: ../../include/features.php:62 -msgid "Expert Mode" -msgstr "Modo de experto" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transexual" -#: ../../include/features.php:62 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermafrodita" -#: ../../include/features.php:63 -msgid "Premium Channel" -msgstr "Canal premium" +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Neutral" -#: ../../include/features.php:63 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "No especificado" -#: ../../include/features.php:68 -msgid "Post Composition Features" -msgstr "Opciones para la redacción de entradas" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "Otro" -#: ../../include/features.php:71 -msgid "Large Photos" -msgstr "Fotos de gran tamaño" +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Indeciso/a" -#: ../../include/features.php:71 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Hombres" -#: ../../include/features.php:72 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Mujeres" -#: ../../include/features.php:73 -msgid "Even More Encryption" -msgstr "Más cifrado todavía" +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Homosexual" -#: ../../include/features.php:73 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbiana" -#: ../../include/features.php:74 -msgid "Enable Voting Tools" -msgstr "Permitir entradas con votación" +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Sin preferencias" -#: ../../include/features.php:74 -msgid "Provide a class of post which others can vote on" -msgstr "Proveer una clase de publicación en la que otros puedan votar" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisexual" -#: ../../include/features.php:75 -msgid "Delayed Posting" -msgstr "Publicación aplazada" +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosexual" -#: ../../include/features.php:75 -msgid "Allow posts to be published at a later date" -msgstr "Permitir mensajes que se publicarán en una fecha posterior" +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Casto/a" -#: ../../include/features.php:76 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Prevenir entradas o comentarios duplicados" +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Virgen" -#: ../../include/features.php:76 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Fuera de lo común" -#: ../../include/features.php:82 -msgid "Network and Stream Filtering" -msgstr "Filtrado del contenido" +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetichista" -#: ../../include/features.php:83 -msgid "Search by Date" -msgstr "Buscar por fecha" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Orgías" -#: ../../include/features.php:83 -msgid "Ability to select posts by date ranges" -msgstr "Capacidad de seleccionar entradas por rango de fechas" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Asexual" -#: ../../include/features.php:84 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Grupos de canales" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Soltero/a" -#: ../../include/features.php:84 -msgid "Enable management and selection of privacy groups" -msgstr "Activar la gestión y selección de grupos de canales" +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Solo/a" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Disponible" -#: ../../include/features.php:85 -msgid "Save search terms for re-use" -msgstr "Guardar términos de búsqueda para su reutilización" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "No disponible" -#: ../../include/features.php:86 -msgid "Network Personal Tab" -msgstr "Actividad personal" +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Enamorado/a" -#: ../../include/features.php:86 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Apasionado/a" -#: ../../include/features.php:87 -msgid "Network New Tab" -msgstr "Contenido nuevo" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Saliendo con alguien" -#: ../../include/features.php:87 -msgid "Enable tab to display all new Network activity" -msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Infiel" -#: ../../include/features.php:88 -msgid "Affinity Tool" -msgstr "Herramienta de afinidad" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Con adicción al sexo" -#: ../../include/features.php:88 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrar el contenido según la profundidad de las relaciones" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Amigos con algo extra" -#: ../../include/features.php:89 -msgid "Connection Filtering" -msgstr "Filtrado de conexiones" +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Casual" -#: ../../include/features.php:89 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Prometido/a" -#: ../../include/features.php:90 -msgid "Show channel suggestions" -msgstr "Mostrar sugerencias de canales" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Casado/a" -#: ../../include/features.php:95 -msgid "Post/Comment Tools" -msgstr "Gestión de entradas y comentarios" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Casado/a en sueños" -#: ../../include/features.php:96 -msgid "Community Tagging" -msgstr "Etiquetas de la comunidad" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Pareja" -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" -msgstr "Capacidad de etiquetar entradas existentes" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Cohabitando" -#: ../../include/features.php:97 -msgid "Post Categories" -msgstr "Categorías de entradas" +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Matrimonio tradicional" -#: ../../include/features.php:97 -msgid "Add categories to your posts" -msgstr "Añadir categorías a sus publicaciones" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Felíz" -#: ../../include/features.php:98 -msgid "Emoji Reactions" -msgstr "Emoticonos \"emoji\"" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "No estoy buscando" -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Libertino" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Carpetas guardadas" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Engañado/a" -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" -msgstr "Capacidad de archivar entradas en carpetas" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Separado/a" -#: ../../include/features.php:100 -msgid "Dislike Posts" -msgstr "Desagrado de publicaciones" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Inestable" -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" -msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Divorciado/a" -#: ../../include/features.php:101 -msgid "Star Posts" -msgstr "Entradas destacadas" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Divorciado/a en sueños" -#: ../../include/features.php:101 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Viudo/a" -#: ../../include/features.php:102 -msgid "Tag Cloud" -msgstr "Nube de etiquetas" +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Indeterminado" -#: ../../include/features.php:102 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Proveer nube de etiquetas personal en su página de canal" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Es complicado" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "No me importa" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Añadir conexiones nuevas a este grupo de canales" +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Pregúnteme" -#: ../../include/group.php:289 -msgid "edit" -msgstr "editar" +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Visible para su público predeterminado." -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Editar grupo" +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Sólo yo" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Añadir un grupo de canales" +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Público" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Sin canales en ningún grupo" +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Cualquiera en la red $Projectname" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "añadir" +#: ../../include/PermissionDescription.php:118 +#, php-format +msgid "Any account on %s" +msgstr "Cualquier cuenta en %s" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d de F, Y \\@ G:i" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Cualquiera de mis conexiones" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Comienza:" +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Sólo las conexiones que yo permita de forma explícita" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Finaliza:" +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)" -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Este evento ha sido añadido a su calendario." +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas" -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Sin especificar" +#: ../../include/PermissionDescription.php:161 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones." -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Necesita de una intervención" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado" -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Completado/a" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones" -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "En proceso" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos" -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Cancelado/a" +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web" #: ../../include/account.php:28 msgid "Not a valid email address" @@ -8889,6 +8420,11 @@ msgstr "Confirmación de registro para %s" msgid "Registration request at %s" msgstr "Solicitud de registro en %s" +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "Administrador" + #: ../../include/account.php:339 msgid "your registration password" msgstr "su contraseña de registro" @@ -8907,484 +8443,697 @@ msgstr "Cuenta aprobada." msgid "Registration revoked for %s" msgstr "Registro revocado para %s" -#: ../../include/account.php:739 ../../include/account.php:741 +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Cuenta verificada. Por favor, inicie sesión." + +#: ../../include/account.php:723 ../../include/account.php:725 msgid "Click here to upgrade." msgstr "Pulse aquí para actualizar" -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Esta acción supera los límites establecidos por su plan de suscripción " - -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Esta acción no está disponible en su plan de suscripción." - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "El canal está bloqueado en este sitio." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Falta la dirección del canal." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "Respuesta incompleta del canal." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "El canal ha sido eliminado y ya no existe." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocolo deshabilitado." - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "El intento de acceder al canal ha fallado." +#: ../../include/account.php:731 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Esta acción supera los límites establecidos por su plan de suscripción " -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "No puede conectarse consigo mismo." +#: ../../include/account.php:736 +msgid "This action is not available under your subscription plan." +msgstr "Esta acción no está disponible en su plan de suscripción." #: ../../include/attach.php:247 ../../include/attach.php:333 msgid "Item was not found." msgstr "Elemento no encontrado." -#: ../../include/attach.php:499 +#: ../../include/attach.php:497 msgid "No source file." msgstr "Ningún fichero de origen" -#: ../../include/attach.php:521 +#: ../../include/attach.php:519 msgid "Cannot locate file to replace" msgstr "No se puede localizar el fichero que va a ser sustituido." -#: ../../include/attach.php:539 +#: ../../include/attach.php:537 msgid "Cannot locate file to revise/update" msgstr "No se puede localizar el fichero para revisar/actualizar" -#: ../../include/attach.php:674 +#: ../../include/attach.php:672 #, php-format msgid "File exceeds size limit of %d" msgstr "El fichero supera el limite de tamaño de %d" -#: ../../include/attach.php:688 +#: ../../include/attach.php:686 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." -#: ../../include/attach.php:846 +#: ../../include/attach.php:842 msgid "File upload failed. Possible system limit or action terminated." msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." -#: ../../include/attach.php:859 +#: ../../include/attach.php:855 msgid "Stored file could not be verified. Upload failed." msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." -#: ../../include/attach.php:915 ../../include/attach.php:931 +#: ../../include/attach.php:909 ../../include/attach.php:925 msgid "Path not available." msgstr "Ruta no disponible." -#: ../../include/attach.php:977 ../../include/attach.php:1129 +#: ../../include/attach.php:971 ../../include/attach.php:1123 msgid "Empty pathname" msgstr "Ruta vacía" -#: ../../include/attach.php:1003 +#: ../../include/attach.php:997 msgid "duplicate filename or path" msgstr "Nombre duplicado de ruta o fichero" -#: ../../include/attach.php:1025 +#: ../../include/attach.php:1019 msgid "Path not found." msgstr "Ruta no encontrada" -#: ../../include/attach.php:1083 +#: ../../include/attach.php:1077 msgid "mkdir failed." msgstr "mkdir ha fallado." -#: ../../include/attach.php:1087 +#: ../../include/attach.php:1081 msgid "database storage failed." msgstr "el almacenamiento en la base de datos ha fallado." -#: ../../include/attach.php:1135 +#: ../../include/attach.php:1129 msgid "Empty path" msgstr "Ruta vacía" -#: ../../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 "Imagen/foto" +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contenido cifrado" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Nombre vacío" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Instalar el elemento %s:" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Nombre demasiado largo" -#: ../../include/bbcode.php:182 -#, php-format +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Ningún identificador de la cuenta" + +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Se requiere un sobrenombre (alias)." + +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Sobrenombre en uso. Por favor, elija otro." + +#: ../../include/channel.php:211 msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio." +"Nickname has unsupported characters or is already being used on this site." +msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio." -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s escribió %2$s siguiente %3$s" +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "No ha sido posible recuperar la identidad creada" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Pulsar para abrir/cerrar" +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Perfil principal" -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "El canal solicitado no está disponible." -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Visitantes diferentes verán este texto de forma distinta" +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Crear un nuevo perfil" -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 escribió:" +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Visible para todos" -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Desconocido)" +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Género:" -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visible para cualquiera en internet." +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Estado:" -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visible sólo para usted." +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Página personal:" -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visible para cualquiera en esta red." +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Ahora en línea" -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visible para cualquiera que esté autenticado." +#: ../../include/channel.php:1147 +msgid "Like this channel" +msgstr "Me gusta este canal" + +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "j F Y" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1179 +msgid "Birthday:" +msgstr "Cumpleaños:" -#: ../../include/items.php:1149 +#: ../../include/channel.php:1192 #, php-format -msgid "Visible to anybody on %s." -msgstr "Visible para cualquiera en %s." +msgid "for %1$d %2$s" +msgstr "por %1$d %2$s" + +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Orientación sexual:" + +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Etiquetas:" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Posición política:" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religión:" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Aficciones o intereses:" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Me gusta:" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "No me gusta:" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Información de contacto y redes sociales:" + +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "Mis otros canales:" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "Preferencias musicales:" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "Libros, literatura:" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "Televisión:" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "Cine, danza, cultura, entretenimiento:" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "Vida sentimental o amorosa:" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "Trabajo:" + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "Estudios:" + +#: ../../include/channel.php:1251 +msgid "Like this thing" +msgstr "Me gusta esto" + +#: ../../include/features.php:48 +msgid "General Features" +msgstr "Funcionalidades básicas" + +#: ../../include/features.php:50 +msgid "Content Expiration" +msgstr "Caducidad del contenido" + +#: ../../include/features.php:50 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" + +#: ../../include/features.php:51 +msgid "Multiple Profiles" +msgstr "Múltiples perfiles" + +#: ../../include/features.php:51 +msgid "Ability to create multiple profiles" +msgstr "Capacidad de crear múltiples perfiles" + +#: ../../include/features.php:52 +msgid "Advanced Profiles" +msgstr "Perfiles avanzados" + +#: ../../include/features.php:52 +msgid "Additional profile sections and selections" +msgstr "Secciones y selecciones de perfil adicionales" + +#: ../../include/features.php:53 +msgid "Profile Import/Export" +msgstr "Importar/Exportar perfil" + +#: ../../include/features.php:53 +msgid "Save and load profile details across sites/channels" +msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" + +#: ../../include/features.php:54 +msgid "Web Pages" +msgstr "Páginas web" + +#: ../../include/features.php:54 +msgid "Provide managed web pages on your channel" +msgstr "Proveer páginas web gestionadas en su canal" + +#: ../../include/features.php:55 +msgid "Hide Rating" +msgstr "Ocultar las valoraciones" + +#: ../../include/features.php:55 +msgid "" +"Hide the rating buttons on your channel and profile pages. Note: People can " +"still rate you somewhere else." +msgstr "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares." + +#: ../../include/features.php:56 +msgid "Private Notes" +msgstr "Notas privadas" + +#: ../../include/features.php:56 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" + +#: ../../include/features.php:57 +msgid "Navigation Channel Select" +msgstr "Navegación por el selector de canales" + +#: ../../include/features.php:57 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" + +#: ../../include/features.php:58 +msgid "Photo Location" +msgstr "Ubicación de las fotos" + +#: ../../include/features.php:58 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." + +#: ../../include/features.php:59 +msgid "Access Controlled Chatrooms" +msgstr "Salas de chat moderadas" + +#: ../../include/features.php:59 +msgid "Provide chatrooms and chat services with access control." +msgstr "Proporcionar salas y servicios de chat moderados." + +#: ../../include/features.php:60 +msgid "Smart Birthdays" +msgstr "Cumpleaños inteligentes" + +#: ../../include/features.php:60 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." + +#: ../../include/features.php:61 +msgid "Expert Mode" +msgstr "Modo de experto" + +#: ../../include/features.php:61 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" + +#: ../../include/features.php:62 +msgid "Premium Channel" +msgstr "Canal premium" + +#: ../../include/features.php:62 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Visible para todas las conexiones." +#: ../../include/features.php:67 +msgid "Post Composition Features" +msgstr "Opciones para la redacción de entradas" -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visible para las conexiones permitidas." +#: ../../include/features.php:70 +msgid "Large Photos" +msgstr "Fotos de gran tamaño" -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visible para conexiones específicas." +#: ../../include/features.php:70 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "El grupo de canales está vacío." +#: ../../include/features.php:71 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Grupo de canales: %s" +#: ../../include/features.php:72 +msgid "Even More Encryption" +msgstr "Más cifrado todavía" -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Conexión no encontrada" +#: ../../include/features.php:72 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "foto del perfil" +#: ../../include/features.php:73 +msgid "Enable Voting Tools" +msgstr "Permitir entradas con votación" -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Contenido incorporado" +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" +msgstr "Proveer una clase de publicación en la que otros puedan votar" -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Incrustación deshabilitada" +#: ../../include/features.php:74 +msgid "Delayed Posting" +msgstr "Publicación aplazada" -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" +#: ../../include/features.php:74 +msgid "Allow posts to be published at a later date" +msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nueva aplicación (app)" +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Sugerencias" +#: ../../include/features.php:75 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Ver más..." +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" +msgstr "Filtrado del contenido" -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." +#: ../../include/features.php:82 +msgid "Search by Date" +msgstr "Buscar por fecha" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Añadir nueva conexión" +#: ../../include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Capacidad de seleccionar entradas por rango de fechas" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Dirección del canal" +#: ../../include/features.php:83 ../../include/group.php:311 +msgid "Privacy Groups" +msgstr "Grupos de canales" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" +msgstr "Activar la gestión y selección de grupos de canales" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notas" +#: ../../include/features.php:84 +msgid "Save search terms for re-use" +msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eliminar término" +#: ../../include/features.php:85 +msgid "Network Personal Tab" +msgstr "Actividad personal" -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Todo" +#: ../../include/features.php:85 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Hemeroteca" +#: ../../include/features.php:86 +msgid "Network New Tab" +msgstr "Contenido nuevo" -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Recargar" +#: ../../include/features.php:86 +msgid "Enable tab to display all new Network activity" +msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Configuración de la cuenta" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Herramienta de afinidad" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Configuración del canal" +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrar el contenido según la profundidad de las relaciones" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Funcionalidades" +#: ../../include/features.php:88 +msgid "Connection Filtering" +msgstr "Filtrado de conexiones" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Complementos" +#: ../../include/features.php:88 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Ajustes de visualización" +#: ../../include/features.php:89 +msgid "Show channel suggestions" +msgstr "Mostrar sugerencias de canales" -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestión de ubicaciones (clones) del canal" +#: ../../include/features.php:94 +msgid "Post/Comment Tools" +msgstr "Gestión de entradas y comentarios" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exportar canal" +#: ../../include/features.php:95 +msgid "Community Tagging" +msgstr "Etiquetas de la comunidad" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Aplicaciones (apps) conectadas" +#: ../../include/features.php:95 +msgid "Ability to tag existing posts" +msgstr "Capacidad de etiquetar entradas existentes" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Configuración del canal premium" +#: ../../include/features.php:96 +msgid "Post Categories" +msgstr "Categorías de entradas" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menú de correo privado" +#: ../../include/features.php:96 +msgid "Add categories to your posts" +msgstr "Añadir categorías a sus publicaciones" -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vista combinada" +#: ../../include/features.php:97 +msgid "Emoji Reactions" +msgstr "Emoticonos \"emoji\"" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversaciones" +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Mensajes recibidos" +#: ../../include/features.php:98 +msgid "Ability to file posts under folders" +msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Enviar mensajes" +#: ../../include/features.php:99 +msgid "Dislike Posts" +msgstr "Desagrado de publicaciones" -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Sin mensajes." +#: ../../include/features.php:99 +msgid "Ability to dislike posts/comments" +msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Eliminar conversación" +#: ../../include/features.php:100 +msgid "Star Posts" +msgstr "Entradas destacadas" -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Gestión de eventos" +#: ../../include/features.php:100 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exportar el calendario" +#: ../../include/features.php:101 +msgid "Tag Cloud" +msgstr "Nube de etiquetas" -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importar un calendario" +#: ../../include/features.php:101 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Proveer nube de etiquetas personal en su página de canal" -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Resumen" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Contenido incorporado" -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Miembros del chat" +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Incrustación deshabilitada" -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Lista de wikis" +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "¿Quién puede ver esto?" -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Páginas del wiki" +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "Selección personalizada" -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Salas de chat preferidas" +#: ../../include/acl_selectors.php:273 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"." -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Salas de chat sugeridas" +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "Mostrar" -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/imagen" +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "No mostrar" -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Hacer clic para ver más" +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Otras redes y servicios de publicación" -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Valoraciones" +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
Estos permisos establecen quién está autorizado para ver el mensaje." -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Valorar este canal" +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Desconectado/a." -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Mostrar las valoraciones" +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Autenticación fallida." -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Foros" +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Cumpleaños" -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Tareas" +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Edad:" -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Documentación" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-DD o MM-DD" -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Información sobre el proyecto o sitio" +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "nunca" -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Para los miembros" +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "hace un instante" -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Para los administradores" +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "hace %1$d %2$s" -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Para los desarrolladores" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "año" +msgstr[1] "años" -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Inscripciones de nuevos miembros pendientes de aprobación" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mes" +msgstr[1] "meses" -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Examinar la cola" +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "semana" +msgstr[1] "semanas" -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Actualizaciones de la base de datos" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "día" +msgstr[1] "días" -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Extensiones" +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "horas" -#: ../../include/activities.php:41 -msgid " and " -msgstr " y " +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minutos" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "el perfil público" +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "segundo" +msgstr[1] "segundos" -#: ../../include/activities.php:58 +#: ../../include/datetime.php:562 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiado %2$s a “%3$s”" +msgid "%1$s's birthday" +msgstr "Cumpleaños de %1$s" -#: ../../include/activities.php:59 +#: ../../include/datetime.php:563 #, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visitar %2$s de %1$s" +msgid "Happy Birthday %1$s" +msgstr "Feliz cumpleaños %1$s" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha actualizado %2$s, cambiando %3$s." +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Ficheros adjuntos:" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Añadir conexiones nuevas a este grupo de canales" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificación de eventos de $Projectname:" +#: ../../include/group.php:289 +msgid "edit" +msgstr "editar" + +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Editar grupo" + +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Añadir un grupo de canales" + +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Sin canales en ningún grupo" #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "¿Borrar este elemento?" #: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "" +msgid "[-] show less" +msgstr "[-] mostrar menos" #: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "" +msgid "[+] expand" +msgstr "[+] expandir" #: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "" +msgid "[-] collapse" +msgstr "[-] contraer" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9614,222 +9363,277 @@ msgctxt "calendar" msgid "All day" msgstr "Todos los días" -#: ../../include/contact_widgets.php:11 +#: ../../include/network.php:657 +msgid "view full size" +msgstr "Ver en el tamaño original" + +#: ../../include/network.php:1885 +msgid "No Subject" +msgstr "Sin asunto" + +#: ../../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 invitación pendiente" -msgstr[1] "%d invitaciones disponibles" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "La imagen excede el límite de %lu bytes del sitio" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Encontrar canales" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "El fichero de imagen está vacío. " -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Introducir nombre o interés" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "La foto no ha podido ser guardada." + +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "una nueva foto" + +#: ../../include/photos.php:299 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha publicado %2$s en %3$s" + +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" + +#: ../../include/zot.php:699 +msgid "Invalid data packet" +msgstr "Paquete de datos no válido" + +#: ../../include/zot.php:715 +msgid "Unable to verify channel signature" +msgstr "No ha sido posible de verificar la firma del canal" + +#: ../../include/zot.php:2363 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "No ha sido posible de verificar la firma del sitio para %s" + +#: ../../include/zot.php:3712 +msgid "invalid target signature" +msgstr "La firma recibida no es válida" + +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nueva página" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Título" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Pueden verse mi actividad y publicaciones normales" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Puede verse mi perfil de canal predeterminado." -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Conectar/Seguir" +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Pueden verse mis conexiones" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Ejemplos: José Fernández, Pesca" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Pueden verse mi repositorio de ficheros y mis fotos" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Perfil aleatorio" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Pueden verse mis páginas web" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Invitar a amigos" +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Me pueden enviar sus entradas y contenidos del canal" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Ejemplo avanzado: nombre=juan y país=españa" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d conexión en común" -msgstr[1] "%d conexiones en común" +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostrar más" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Se me pueden enviar mensajes privados" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opciones del directorio" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Puede marcarse contenido como me gusta/no me gusta" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modo seguro" +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo foros públicos" +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo este sitio web" +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "No se ha especificado ningún destinatario." +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Se puede charlar conmigo (cuando esté disponible)" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[sin asunto]" +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Puede escribirse en mi repositorio de ficheros y fotos" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "No ha sido posible determinar el remitente. " +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Pueden editarse mis páginas web" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "No se han podido verificar las publicaciones guardadas." +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" -#: ../../include/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "¿Quién puede ver esto?" +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Algo avanzado - muy útil en comunidades abiertas" -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Selección personalizada" +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Pueden administrarse mis recursos del canal" -#: ../../include/acl_selectors.php:271 +#: ../../include/permissions.php:46 msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"." +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Mostrar" +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Redes sociales" -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "No mostrar" +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Social - Público en su mayor parte" -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Otras redes y servicios de publicación" +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Social - Restringido" -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
Estos permisos establecen quién está autorizado para ver el mensaje." +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Social - Privado" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Cumpleaños" +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Foro de discusión" -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Edad:" +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Foro - Público en su mayor parte" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-DD o MM-DD" +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Foro - Restringido" -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "nunca" +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Foro - Privado" -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "hace un instante" +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Republicar un \"feed\"" -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "hace %1$d %2$s" +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Feed - Público en su mayor parte" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "año" -msgstr[1] "años" +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Feed - Restringido" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "meses" +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Propósito especial" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Especial - Celebridad / Tribuna improvisada" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "día" -msgstr[1] "días" +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Especial - Repositorio de grupo" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "horas" +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Modo personalizado/experto" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minutos" +#: ../../include/activities.php:41 +msgid " and " +msgstr " y " -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "segundo" -msgstr[1] "segundos" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "el perfil público" -#: ../../include/datetime.php:562 +#: ../../include/activities.php:58 #, php-format -msgid "%1$s's birthday" -msgstr "Cumpleaños de %1$s" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiado %2$s a “%3$s”" -#: ../../include/datetime.php:563 +#: ../../include/activities.php:59 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliz cumpleaños %1$s" - -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Cronología pública" - -#: ../../include/zot.php:697 -msgid "Invalid data packet" -msgstr "Paquete de datos no válido" - -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" -msgstr "No ha sido posible de verificar la firma del canal" +msgid "Visit %1$s's %2$s" +msgstr "Visitar %2$s de %1$s" -#: ../../include/zot.php:2326 +#: ../../include/activities.php:62 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "No ha sido posible de verificar la firma del sitio para %s" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha actualizado %2$s, cambiando %3$s." -#: ../../include/zot.php:3703 -msgid "invalid target signature" -msgstr "La firma recibida no es válida" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Ficheros adjuntos:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificación de eventos de $Projectname:" #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" @@ -9967,66 +9771,62 @@ msgstr "Ajustar el tamaño de la foto del autor de la conversación" msgid "Set size of followup author photos" msgstr "Ajustar el tamaño de foto de los seguidores del autor" -#: ../../boot.php:1163 +#: ../../boot.php:1162 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Buscar %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 "La actualización %s ha fallado. Mire el informe de errores." -#: ../../boot.php:1484 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "Error de actualización en %s" -#: ../../boot.php:1685 +#: ../../boot.php:1684 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla" #: ../../boot.php:1706 -msgid "Login/Email" -msgstr "" - -#: ../../boot.php:1707 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1708 +#: ../../boot.php:1707 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2277 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "cambiar a modo móvil" -#: ../../boot.php:2432 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "El certificado SSL del sitio web no es válido. Por favor, solucione el problema." -#: ../../boot.php:2435 +#: ../../boot.php:2428 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Error SSL del sitio web en %s" -#: ../../boot.php:2478 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." -#: ../../boot.php:2482 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Las tareas de Cron no están funcionando en %s" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index 0a6812ec4..22c81e350 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -4,39 +4,7 @@ if(! function_exists("string_plural_select_es_es")) { function string_plural_select_es_es($n){ return ($n != 1);; }} -App::$rtl = 0; -App::$strings["Social Networking"] = "Redes sociales"; -App::$strings["Social - Mostly Public"] = "Social - Público en su mayor parte"; -App::$strings["Social - Restricted"] = "Social - Restringido"; -App::$strings["Social - Private"] = "Social - Privado"; -App::$strings["Community Forum"] = "Foro de discusión"; -App::$strings["Forum - Mostly Public"] = "Foro - Público en su mayor parte"; -App::$strings["Forum - Restricted"] = "Foro - Restringido"; -App::$strings["Forum - Private"] = "Foro - Privado"; -App::$strings["Feed Republish"] = "Republicar un \"feed\""; -App::$strings["Feed - Mostly Public"] = "Feed - Público en su mayor parte"; -App::$strings["Feed - Restricted"] = "Feed - Restringido"; -App::$strings["Special Purpose"] = "Propósito especial"; -App::$strings["Special - Celebrity/Soapbox"] = "Especial - Celebridad / Tribuna improvisada"; -App::$strings["Special - Group Repository"] = "Especial - Repositorio de grupo"; -App::$strings["Other"] = "Otro"; -App::$strings["Custom/Expert Mode"] = "Modo personalizado/experto"; -App::$strings["Can view my channel stream and posts"] = ""; -App::$strings["Can send me their channel stream and posts"] = "Se me pueden enviar entradas y contenido de un canal"; -App::$strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado."; -App::$strings["Can view my connections"] = "Pueden verse mis conexiones"; -App::$strings["Can view my file storage and photos"] = "Pueden verse mi repositorio de ficheros y mis 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"] = "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'."; -App::$strings["Can send me private mail messages"] = "Se me pueden enviar mensajes privados"; -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"] = "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados"; -App::$strings["Can administer my channel"] = ""; +; App::$strings["parent"] = "padre"; App::$strings["Collection"] = "Colección"; App::$strings["Principal"] = "Principal"; @@ -69,8 +37,63 @@ App::$strings["Remote authentication blocked. You are logged into this site loca App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente."; App::$strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; App::$strings["Some blurb about what to do when you're new here"] = "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí"; +App::$strings["Block Name"] = "Nombre del bloque"; +App::$strings["Blocks"] = "Bloques"; +App::$strings["Block Title"] = "Título del bloque"; +App::$strings["Created"] = "Creado"; +App::$strings["Edited"] = "Editado"; +App::$strings["Share"] = "Compartir"; +App::$strings["View"] = "Ver"; +App::$strings["Channel not found."] = "Canal no encontrado."; +App::$strings["Permissions denied."] = "Permisos denegados."; +App::$strings["l, F j"] = "l j F"; +App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original"; +App::$strings["Edit Event"] = "Editar el evento"; +App::$strings["Create Event"] = "Crear un evento"; +App::$strings["Previous"] = "Anterior"; +App::$strings["Next"] = "Siguiente"; +App::$strings["Export"] = "Exportar"; +App::$strings["Import"] = "Importar"; +App::$strings["Submit"] = "Enviar"; +App::$strings["Today"] = "Hoy"; +App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; +App::$strings["Posts and comments"] = "Publicaciones y comentarios"; +App::$strings["Only posts"] = "Solo publicaciones"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; +App::$strings["Room not found"] = "Sala no encontrada"; +App::$strings["Leave Room"] = "Abandonar la sala"; +App::$strings["Delete Room"] = "Eliminar esta sala"; +App::$strings["I am away right now"] = "Estoy ausente momentáneamente"; +App::$strings["I am online"] = "Estoy conectado/a"; +App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; +App::$strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:"; +App::$strings["Encrypt text"] = "Cifrar texto"; +App::$strings["Insert web link"] = "Insertar enlace web"; +App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; +App::$strings["New Chatroom"] = "Nueva sala de chat"; +App::$strings["Chatroom name"] = "Nombre de la sala de chat"; +App::$strings["Expiration of chats (minutes)"] = "Caducidad de los mensajes en los chats (en minutos)"; +App::$strings["Permissions"] = "Permisos"; +App::$strings["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; +App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; +App::$strings["Create New"] = "Crear"; +App::$strings["Expiration"] = "Caducidad"; +App::$strings["min"] = "min"; App::$strings["Away"] = "Ausente"; App::$strings["Online"] = "Conectado/a"; +App::$strings["Invalid item."] = "Elemento no válido."; +App::$strings["Bookmark added"] = "Marcador añadido"; +App::$strings["My Bookmarks"] = "Mis marcadores"; +App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; +App::$strings["Continue"] = "Continuar"; +App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; +App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; +App::$strings["Restricted or Premium Channel"] = "Canal premium o restringido"; App::$strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; App::$strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; App::$strings["Connection updated."] = "Conexión actualizada."; @@ -135,7 +158,6 @@ App::$strings["Do not import posts with this text"] = "No importar entradas que App::$strings["This information is public!"] = "¡Esta información es pública!"; App::$strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; App::$strings["inherited"] = "heredado"; -App::$strings["Submit"] = "Enviar"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."; App::$strings["Their Settings"] = "Sus ajustes"; App::$strings["My Settings"] = "Mis ajustes"; @@ -144,30 +166,6 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; App::$strings["Last update:"] = "Última actualización:"; App::$strings["Public access denied."] = "Acceso público denegado."; -App::$strings["Item not found."] = "Elemento no encontrado."; -App::$strings["First Name"] = "Nombre"; -App::$strings["Last Name"] = "Apellido"; -App::$strings["Nickname"] = "Sobrenombre o Alias"; -App::$strings["Full Name"] = "Nombre completo"; -App::$strings["Email"] = "Correo electrónico"; -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"] = "Huso horario"; -App::$strings["Homepage URL"] = "Dirección de la página personal"; -App::$strings["Language"] = "Idioma"; -App::$strings["Birth Year"] = "Año de nacimiento"; -App::$strings["Birth Month"] = "Mes de nacimiento"; -App::$strings["Birth Day"] = "Día de nacimiento"; -App::$strings["Birthdate"] = "Fecha de nacimiento"; -App::$strings["Gender"] = "Género"; -App::$strings["Male"] = "Hombre"; -App::$strings["Female"] = "Mujer"; -App::$strings["Channel added."] = "Canal añadido."; App::$strings["%d rating"] = array( 0 => "%d valoración", 1 => "%d valoraciones", @@ -198,74 +196,13 @@ App::$strings["Reverse Alphabetic"] = "Alfabético inverso"; App::$strings["Newest to Oldest"] = "De más nuevo a más antiguo"; App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo"; App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; -App::$strings["Continue"] = "Continuar"; -App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; -App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; -App::$strings["Restricted or Premium Channel"] = "Canal premium o restringido"; -App::$strings["Calendar entries imported."] = "Entradas de calendario importadas."; -App::$strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; -App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; -App::$strings["Unable to generate preview."] = "No se puede crear la vista previa."; -App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; -App::$strings["Event not found."] = "Evento no encontrado."; -App::$strings["event"] = "evento"; -App::$strings["Edit event title"] = "Editar el título del evento"; -App::$strings["Event title"] = "Título del evento"; -App::$strings["Required"] = "Obligatorio"; -App::$strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; -App::$strings["Edit Category"] = "Editar la categoría"; -App::$strings["Category"] = "Categoría"; -App::$strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo"; -App::$strings["Start date and time"] = "Fecha y hora de comienzo"; -App::$strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; -App::$strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación"; -App::$strings["Finish date and time"] = "Fecha y hora de terminación"; -App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de los husos horarios"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; -App::$strings["Edit Description"] = "Editar la descripción"; -App::$strings["Description"] = "Descripción"; -App::$strings["Edit Location"] = "Modificar la dirección"; -App::$strings["Location"] = "Ubicación"; -App::$strings["Share this event"] = "Compartir este evento"; -App::$strings["Preview"] = "Previsualizar"; -App::$strings["Permission settings"] = "Configuración de permisos"; -App::$strings["Advanced Options"] = "Opciones avanzadas"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Editar evento"; -App::$strings["Delete event"] = "Borrar evento"; -App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original"; -App::$strings["calendar"] = "calendario"; -App::$strings["Edit Event"] = "Editar el evento"; -App::$strings["Create Event"] = "Crear un evento"; -App::$strings["Previous"] = "Anterior"; -App::$strings["Next"] = "Siguiente"; -App::$strings["Export"] = "Exportar"; -App::$strings["View"] = "Ver"; -App::$strings["Month"] = ""; -App::$strings["Week"] = ""; -App::$strings["Day"] = ""; -App::$strings["Today"] = "Hoy"; -App::$strings["Event removed"] = "Evento borrado"; -App::$strings["Failed to remove event"] = "Error al eliminar el evento"; -App::$strings["Bookmark added"] = "Marcador añadido"; -App::$strings["My Bookmarks"] = "Mis marcadores"; -App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; +App::$strings["Item not found."] = "Elemento no encontrado."; App::$strings["Item not found"] = "Elemento no encontrado"; -App::$strings["Item is not editable"] = "El elemento no es editable"; -App::$strings["Edit post"] = "Editar la entrada"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Cancel"] = "Cancelar"; -App::$strings["Invalid item."] = "Elemento no válido."; -App::$strings["Channel not found."] = "Canal no encontrado."; -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 carpeta:"; -App::$strings["- select -"] = "- seleccionar -"; -App::$strings["Save"] = "Guardar"; +App::$strings["Title (optional)"] = "Título (opcional)"; +App::$strings["Edit Block"] = "Modificar este bloque"; +App::$strings["No channel."] = "Ningún canal."; +App::$strings["Common connections"] = "Conexiones comunes"; +App::$strings["No connections in common."] = "Ninguna conexión en común."; App::$strings["Blocked"] = "Bloqueadas"; App::$strings["Ignored"] = "Ignoradas"; App::$strings["Hidden"] = "Ocultas"; @@ -317,38 +254,51 @@ App::$strings["select a photo from your photo albums"] = "Seleccione una foto de App::$strings["Crop Image"] = "Recortar imagen"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima."; App::$strings["Done Editing"] = "Edición completada"; -App::$strings["webpage"] = "página web"; -App::$strings["block"] = "bloque"; -App::$strings["layout"] = "plantilla"; -App::$strings["menu"] = "menú"; -App::$strings["%s element installed"] = "%s elemento instalado"; -App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; -App::$strings["Permissions denied."] = "Permisos denegados."; -App::$strings["Import"] = "Importar"; +App::$strings["Item is not editable"] = "El elemento no es editable"; +App::$strings["Edit post"] = "Editar la entrada"; +App::$strings["Calendar entries imported."] = "Entradas de calendario importadas."; +App::$strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; +App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; +App::$strings["Unable to generate preview."] = "No se puede crear la vista previa."; +App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; +App::$strings["Event not found."] = "Evento no encontrado."; +App::$strings["event"] = "evento"; +App::$strings["Edit event title"] = "Editar el título del evento"; +App::$strings["Event title"] = "Título del evento"; +App::$strings["Required"] = "Obligatorio"; +App::$strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; +App::$strings["Edit Category"] = "Editar la categoría"; +App::$strings["Category"] = "Categoría"; +App::$strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo"; +App::$strings["Start date and time"] = "Fecha y hora de comienzo"; +App::$strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; +App::$strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación"; +App::$strings["Finish date and time"] = "Fecha y hora de terminación"; +App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de los husos horarios"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; +App::$strings["Edit Description"] = "Editar la descripción"; +App::$strings["Description"] = "Descripción"; +App::$strings["Edit Location"] = "Modificar la dirección"; +App::$strings["Location"] = "Ubicación"; +App::$strings["Share this event"] = "Compartir este evento"; +App::$strings["Preview"] = "Previsualizar"; +App::$strings["Permission settings"] = "Configuración de permisos"; +App::$strings["Advanced Options"] = "Opciones avanzadas"; +App::$strings["Edit event"] = "Editar evento"; +App::$strings["Delete event"] = "Borrar evento"; +App::$strings["calendar"] = "calendario"; +App::$strings["Event removed"] = "Evento borrado"; +App::$strings["Failed to remove event"] = "Error al eliminar el evento"; +App::$strings["Photos"] = "Fotos"; +App::$strings["Cancel"] = "Cancelar"; App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; -App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; -App::$strings["Room not found"] = "Sala no encontrada"; -App::$strings["Leave Room"] = "Abandonar la sala"; -App::$strings["Delete Room"] = "Eliminar esta sala"; -App::$strings["I am away right now"] = "Estoy ausente momentáneamente"; -App::$strings["I am online"] = "Estoy conectado/a"; -App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; -App::$strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:"; -App::$strings["Encrypt text"] = "Cifrar texto"; -App::$strings["Insert web link"] = "Insertar enlace web"; -App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; -App::$strings["New Chatroom"] = "Nueva sala de chat"; -App::$strings["Chatroom name"] = "Nombre de la sala de chat"; -App::$strings["Expiration of chats (minutes)"] = "Caducidad de los mensajes en los chats (en minutos)"; -App::$strings["Permissions"] = "Permisos"; -App::$strings["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; -App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; -App::$strings["Create New"] = "Crear"; -App::$strings["Expiration"] = "Caducidad"; -App::$strings["min"] = "min"; +App::$strings["Save to Folder:"] = "Guardar en carpeta:"; +App::$strings["- select -"] = "- seleccionar -"; +App::$strings["Save"] = "Guardar"; App::$strings["Invalid message"] = "Mensaje no válido"; App::$strings["no results"] = "sin resultados"; +App::$strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; App::$strings["channel sync processed"] = "se ha realizado la sincronización del canal"; App::$strings["queued"] = "encolado"; App::$strings["posted"] = "enviado"; @@ -360,14 +310,14 @@ App::$strings["recipient not found"] = "destinatario no encontrado"; App::$strings["mail recalled"] = "mensaje de correo revocado"; App::$strings["duplicate mail received"] = "se ha recibido mensaje duplicado"; App::$strings["mail delivered"] = "correo enviado"; -App::$strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; -App::$strings["Options"] = ""; -App::$strings["Redeliver"] = ""; App::$strings["Layout Name"] = "Nombre de la plantilla"; App::$strings["Layout Description (Optional)"] = "Descripción de la plantilla (opcional)"; App::$strings["Edit Layout"] = "Modificar la plantilla"; App::$strings["Page link"] = "Enlace de la página"; App::$strings["Edit Webpage"] = "Editar la página web"; +App::$strings["Channel added."] = "Canal añadido."; +App::$strings["network"] = "red"; +App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "El grupo de canales ha sido creado."; App::$strings["Could not create privacy group."] = "No se puede crear el grupo de canales"; App::$strings["Privacy group not found."] = "Grupo de canales no encontrado."; @@ -381,33 +331,16 @@ App::$strings["Privacy group editor"] = "Editor de grupos de canales"; App::$strings["Members"] = "Miembros"; App::$strings["All Connected Channels"] = "Todos los canales conectados"; App::$strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo."; -App::$strings["App installed."] = "Aplicación instalada."; -App::$strings["Malformed app."] = "Aplicación con errores"; -App::$strings["Embed code"] = "Código incorporado"; -App::$strings["Edit App"] = "Modificar la aplicación"; -App::$strings["Create App"] = "Crear una aplicación"; -App::$strings["Name of app"] = "Nombre de la aplicación"; -App::$strings["Location (URL) of app"] = "Dirección (URL) de la aplicación"; -App::$strings["Photo icon URL"] = "Dirección del icono"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; -App::$strings["Categories (optional, comma separated list)"] = "Categorías (opcional, lista separada por comas)"; -App::$strings["Version ID"] = "Versión"; -App::$strings["Price of app"] = "Precio de la aplicación"; -App::$strings["Location (URL) to purchase app"] = "Dirección (URL) donde adquirir la aplicación"; +App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Servicio de compartición de Firefox: activar el proveedor \$Projectname "; +App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; +App::$strings["Return to your app and insert this Securty Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; +App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; App::$strings["Documentation Search"] = "Búsqueda de Documentación"; App::$strings["Help:"] = "Ayuda:"; App::$strings["Help"] = "Ayuda"; App::$strings["\$Projectname Documentation"] = "Documentación de \$Projectname"; -App::$strings["Item not available."] = "Elemento no disponible"; -App::$strings["Layout updated."] = "Plantilla actualizada."; -App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; -App::$strings["Layout not found."] = "Plantilla no encontrada"; -App::$strings["Module Name:"] = "Nombre del módulo:"; -App::$strings["Layout Help"] = "Ayuda para el diseño de plantillas de página"; -App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Servicio de compartición de Firefox: activar el proveedor \$Projectname "; -App::$strings["network"] = "red"; -App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Permiso denegado"; App::$strings["File not found."] = "Fichero no encontrado."; App::$strings["Edit file permissions"] = "Modificar los permisos del fichero"; @@ -419,100 +352,8 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copiar/pega App::$strings["Share this file"] = "Compartir este fichero"; App::$strings["Show URL to this file"] = "Mostrar la dirección de este fichero"; App::$strings["Notify your contacts about this file"] = "Avisar a sus contactos sobre este fichero"; -App::$strings["Layouts"] = "Plantillas"; -App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; -App::$strings["Layout Description"] = "Descripción de la plantilla"; -App::$strings["Created"] = "Creado"; -App::$strings["Edited"] = "Editado"; -App::$strings["Share"] = "Compartir"; -App::$strings["Download PDL file"] = "Descargar el fichero PDL"; -App::$strings["Like/Dislike"] = "Me gusta/No me gusta"; -App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; -App::$strings["Invalid request."] = "Solicitud incorrecta."; -App::$strings["channel"] = "el canal"; -App::$strings["thing"] = "elemento"; -App::$strings["Channel unavailable."] = "Canal no disponible."; -App::$strings["Previous action reversed."] = "Acción anterior revocada."; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "el mensaje de estado"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s está de acuerdo"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no está de acuerdo"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s se abstiene"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s participa"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no participa"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; -App::$strings["Action completed."] = "Acción completada."; -App::$strings["Thank you."] = "Gracias."; -App::$strings["Profile not found."] = "Perfil no encontrado."; -App::$strings["Profile deleted."] = "Perfil eliminado."; -App::$strings["Profile-"] = "Perfil-"; -App::$strings["New profile created."] = "El nuevo perfil ha sido creado."; -App::$strings["Profile unavailable to clone."] = "Perfil no disponible para clonar."; -App::$strings["Profile unavailable to export."] = "Perfil no disponible para exportar."; -App::$strings["Profile Name is required."] = "Se necesita el nombre del perfil."; -App::$strings["Marital Status"] = "Estado civil"; -App::$strings["Romantic Partner"] = "Pareja sentimental"; -App::$strings["Likes"] = "Me gusta"; -App::$strings["Dislikes"] = "No me gusta"; -App::$strings["Work/Employment"] = "Trabajo:"; -App::$strings["Religion"] = "Religión"; -App::$strings["Political Views"] = "Ideas políticas"; -App::$strings["Sexual Preference"] = "Preferencia sexual"; -App::$strings["Homepage"] = "Página personal"; -App::$strings["Interests"] = "Intereses"; -App::$strings["Address"] = "Dirección"; -App::$strings["Profile updated."] = "Perfil actualizado."; -App::$strings["Hide your connections list from viewers of this profile"] = "Ocultar la lista de conexiones a los visitantes del perfil"; -App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; -App::$strings["View this profile"] = "Ver este perfil"; -App::$strings["Edit visibility"] = "Editar visibilidad"; -App::$strings["Profile Tools"] = "Gestión del perfil"; -App::$strings["Change cover photo"] = "Cambiar la imagen de portada del perfil"; -App::$strings["Change profile photo"] = "Cambiar la foto del perfil"; -App::$strings["Create a new profile using these settings"] = "Crear un nuevo perfil usando estos ajustes"; -App::$strings["Clone this profile"] = "Clonar este perfil"; -App::$strings["Delete this profile"] = "Eliminar este perfil"; -App::$strings["Add profile things"] = "Añadir cosas al perfil"; -App::$strings["Personal"] = "Personales"; -App::$strings["Relation"] = "Relación"; -App::$strings["Miscellaneous"] = "Varios"; -App::$strings["Import profile from file"] = "Importar perfil desde un fichero"; -App::$strings["Export profile to file"] = "Exportar perfil a un fichero"; -App::$strings["Your gender"] = "Género"; -App::$strings["Marital status"] = "Estado civil"; -App::$strings["Sexual preference"] = "Preferencia sexual"; -App::$strings["Profile name"] = "Nombre del perfil"; -App::$strings["This is your default profile."] = "Este es su perfil principal."; -App::$strings["Your full name"] = "Nombre completo"; -App::$strings["Title/Description"] = "Título o descripción"; -App::$strings["Street address"] = "Dirección"; -App::$strings["Locality/City"] = "Ciudad"; -App::$strings["Region/State"] = "Región o Estado"; -App::$strings["Postal/Zip code"] = "Código postal"; -App::$strings["Country"] = "País"; -App::$strings["Who (if applicable)"] = "Quién (si es pertinente)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Por ejemplo: ana123, María González, sara@ejemplo.com"; -App::$strings["Since (date)"] = "Desde (fecha)"; -App::$strings["Tell us about yourself"] = "Háblenos de usted"; -App::$strings["Hometown"] = "Lugar de nacimiento"; -App::$strings["Political views"] = "Ideas políticas"; -App::$strings["Religious views"] = "Creencias religiosas"; -App::$strings["Keywords used in directory listings"] = "Palabras clave utilizadas en los listados de directorios"; -App::$strings["Example: fishing photography software"] = "Por ejemplo: software de fotografía submarina"; -App::$strings["Musical interests"] = "Preferencias musicales"; -App::$strings["Books, literature"] = "Libros, literatura"; -App::$strings["Television"] = "Televisión"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Cine, danza, cultura, entretenimiento"; -App::$strings["Hobbies/Interests"] = "Aficiones o intereses"; -App::$strings["Love/Romance"] = "Vida sentimental o amorosa"; -App::$strings["School/Education"] = "Estudios"; -App::$strings["Contact information and social networks"] = "Información de contacto y redes sociales"; -App::$strings["My other channels"] = "Mis otros canales"; -App::$strings["Profile Image"] = "Imagen del perfil"; -App::$strings["Edit Profiles"] = "Editar perfiles"; +App::$strings["Apps"] = "Aplicaciones (apps)"; +App::$strings["Item not available."] = "Elemento no disponible"; App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; App::$strings["Nothing to import."] = "No hay nada para importar."; App::$strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor"; @@ -533,8 +374,6 @@ App::$strings["For either option, please choose whether to make this hub your ne App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Bienvenido a %s"; App::$strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original."; App::$strings["Empty post discarded."] = "La entrada vacía ha sido desechada."; App::$strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal."; @@ -543,76 +382,60 @@ App::$strings["System error. Post not saved."] = "Error del sistema. La entrada App::$strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f entradas en la página principal."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web."; -App::$strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada."; -App::$strings["Profile Photos"] = "Fotos del perfil"; -App::$strings["Album not found."] = "Álbum no encontrado."; -App::$strings["Delete Album"] = "Borrar á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"] = "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros"; -App::$strings["Delete Photo"] = "Borrar foto"; -App::$strings["No photos selected"] = "No hay fotos seleccionadas"; -App::$strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB de almacenamiento de fotos utilizado."; -App::$strings["Upload Photos"] = "Subir fotos"; -App::$strings["Enter an album name"] = "Introducir un nombre de álbum"; -App::$strings["or select an existing album (doubleclick)"] = "o seleccionar uno existente (doble click)"; -App::$strings["Create a status post for this upload"] = "Crear un mensaje de estado para esta subida"; -App::$strings["Caption (optional):"] = "Título (opcional):"; -App::$strings["Description (optional):"] = "Descripción (opcional):"; -App::$strings["Album name could not be decoded"] = "El nombre del álbum no ha podido ser descifrado"; -App::$strings["Contact Photos"] = "Fotos de contacto"; -App::$strings["Show Newest First"] = "Mostrar lo más reciente primero"; -App::$strings["Show Oldest First"] = "Mostrar lo más antiguo primero"; -App::$strings["View Photo"] = "Ver foto"; -App::$strings["Edit Album"] = "Editar álbum"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; -App::$strings["Photo not available"] = "Foto no disponible"; -App::$strings["Use as profile photo"] = "Usar como foto del perfil"; -App::$strings["Use as cover photo"] = "Usar como imagen de portada del perfil"; -App::$strings["Private Photo"] = "Foto privada"; -App::$strings["View Full Size"] = "Ver tamaño completo"; -App::$strings["Remove"] = "Eliminar"; -App::$strings["Edit photo"] = "Editar foto"; -App::$strings["Rotate CW (right)"] = "Girar CW (a la derecha)"; -App::$strings["Rotate CCW (left)"] = "Girar CCW (a la izquierda)"; -App::$strings["Enter a new album name"] = "Introducir un nuevo nombre de álbum"; -App::$strings["or select an existing one (doubleclick)"] = "o seleccionar uno (doble click) existente"; -App::$strings["Caption"] = "Título"; -App::$strings["Add a Tag"] = "Añadir una etiqueta"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com"; -App::$strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum"; -App::$strings["I like this (toggle)"] = "Me gusta (cambiar)"; -App::$strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; -App::$strings["Please wait"] = "Espere por favor"; -App::$strings["This is you"] = "Este es usted"; -App::$strings["Comment"] = "Comentar"; -App::$strings["__ctx:title__ Likes"] = "Me gusta"; -App::$strings["__ctx:title__ Dislikes"] = "No me gusta"; -App::$strings["__ctx:title__ Agree"] = "De acuerdo"; -App::$strings["__ctx:title__ Disagree"] = "En desacuerdo"; -App::$strings["__ctx:title__ Abstain"] = "Abstención"; -App::$strings["__ctx:title__ Attending"] = "Participaré"; -App::$strings["__ctx:title__ Not attending"] = "No participaré"; -App::$strings["__ctx:title__ Might attend"] = "Quizá participe"; -App::$strings["View all"] = "Ver todo"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Me gusta", - 1 => "Me gusta", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "No me gusta", - 1 => "No me gusta", -); -App::$strings["Photo Tools"] = "Gestión de las fotos"; -App::$strings["In This Photo:"] = "En esta foto:"; -App::$strings["Map"] = "Mapa"; -App::$strings["__ctx:noun__ Likes"] = "Me gusta"; -App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; -App::$strings["Close"] = "Cerrar"; -App::$strings["View Album"] = "Ver álbum"; -App::$strings["Recent Photos"] = "Fotos recientes"; -App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; -App::$strings["Visible to:"] = "Visible para:"; +App::$strings["Layouts"] = "Plantillas"; +App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; +App::$strings["Layout Description"] = "Descripción de la plantilla"; +App::$strings["Download PDL file"] = "Descargar el fichero PDL"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Bienvenido a %s"; +App::$strings["First Name"] = "Nombre"; +App::$strings["Last Name"] = "Apellido"; +App::$strings["Nickname"] = "Sobrenombre o Alias"; +App::$strings["Full Name"] = "Nombre completo"; +App::$strings["Email"] = "Correo electrónico"; +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"] = "Huso horario"; +App::$strings["Homepage URL"] = "Dirección de la página personal"; +App::$strings["Language"] = "Idioma"; +App::$strings["Birth Year"] = "Año de nacimiento"; +App::$strings["Birth Month"] = "Mes de nacimiento"; +App::$strings["Birth Day"] = "Día de nacimiento"; +App::$strings["Birthdate"] = "Fecha de nacimiento"; +App::$strings["Gender"] = "Género"; +App::$strings["Male"] = "Hombre"; +App::$strings["Female"] = "Mujer"; +App::$strings["webpage"] = "página web"; +App::$strings["block"] = "bloque"; +App::$strings["layout"] = "plantilla"; +App::$strings["menu"] = "menú"; +App::$strings["%s element installed"] = "%s elemento instalado"; +App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; +App::$strings["Like/Dislike"] = "Me gusta/No me gusta"; +App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; +App::$strings["Invalid request."] = "Solicitud incorrecta."; +App::$strings["channel"] = "el canal"; +App::$strings["thing"] = "elemento"; +App::$strings["Channel unavailable."] = "Canal no disponible."; +App::$strings["Previous action reversed."] = "Acción anterior revocada."; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "el mensaje de estado"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s está de acuerdo"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no está de acuerdo"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s se abstiene"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s participa"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no participa"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; +App::$strings["Action completed."] = "Acción completada."; +App::$strings["Thank you."] = "Gracias."; App::$strings["Import completed"] = "Importación completada"; App::$strings["Import Items"] = "Importar elementos"; App::$strings["Use this form to import existing posts and content from an export file."] = "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación."; @@ -635,12 +458,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. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio."; App::$strings["or visit"] = "o visitar"; App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; +App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; +App::$strings["Visible to:"] = "Visible para:"; App::$strings["Location not found."] = "Dirección no encontrada."; App::$strings["Location lookup failed."] = "Ha fallado la búsqueda de la dirección."; App::$strings["Please select another location to become primary before removing the primary location."] = "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal."; App::$strings["Syncing locations"] = "Sincronización de ubicaciones"; App::$strings["No locations found."] = "No encontrada ninguna dirección."; App::$strings["Manage Channel Locations"] = "Gestionar las direcciones del canal"; +App::$strings["Address"] = "Dirección"; App::$strings["Primary"] = "Primario"; App::$strings["Drop"] = "Eliminar"; App::$strings["Sync Now"] = "Sincronizar ahora"; @@ -681,30 +507,6 @@ App::$strings["Make Default"] = "Convertir en predeterminado"; App::$strings["%d new messages"] = "%d mensajes nuevos"; App::$strings["%d new introductions"] = "%d nuevas isolicitudes de conexión"; App::$strings["Delegated Channel"] = "Canal delegado"; -App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; -App::$strings["Unable to create menu."] = "No se puede crear el menú."; -App::$strings["Menu Name"] = "Nombre del menú"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido"; -App::$strings["Menu Title"] = "Título del menú"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título"; -App::$strings["Allow Bookmarks"] = "Permitir marcadores"; -App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores"; -App::$strings["Submit and proceed"] = "Enviar y proceder"; -App::$strings["Menus"] = "Menús"; -App::$strings["Bookmarks allowed"] = "Marcadores permitidos"; -App::$strings["Delete this menu"] = "Borrar este menú"; -App::$strings["Edit menu contents"] = "Editar los contenidos del menú"; -App::$strings["Edit this menu"] = "Modificar este menú"; -App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado."; -App::$strings["Menu not found."] = "Menú no encontrado"; -App::$strings["Edit Menu"] = "Modificar el menú"; -App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú"; -App::$strings["Menu name"] = "Nombre del menú"; -App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted"; -App::$strings["Menu title"] = "Título del menú"; -App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; -App::$strings["Allow bookmarks"] = "Permitir marcadores"; -App::$strings["Not found."] = "No encontrado."; App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida."; App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)"; @@ -721,9 +523,37 @@ App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; App::$strings["Email Address"] = "Dirección de correo electrónico"; App::$strings["Reset"] = "Reiniciar"; +App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; +App::$strings["Unable to create menu."] = "No se puede crear el menú."; +App::$strings["Menu Name"] = "Nombre del menú"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido"; +App::$strings["Menu Title"] = "Título del menú"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título"; +App::$strings["Allow Bookmarks"] = "Permitir marcadores"; +App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores"; +App::$strings["Submit and proceed"] = "Enviar y proceder"; +App::$strings["Menus"] = "Menús"; +App::$strings["Bookmarks allowed"] = "Marcadores permitidos"; +App::$strings["Delete this menu"] = "Borrar este menú"; +App::$strings["Edit menu contents"] = "Editar los contenidos del menú"; +App::$strings["Edit this menu"] = "Modificar este menú"; +App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado."; +App::$strings["Menu not found."] = "Menú no encontrado"; +App::$strings["Edit Menu"] = "Modificar el menú"; +App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú"; +App::$strings["Menu name"] = "Nombre del menú"; +App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted"; +App::$strings["Menu title"] = "Título del menú"; +App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; +App::$strings["Allow bookmarks"] = "Permitir marcadores"; +App::$strings["Not found."] = "No encontrado."; App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; App::$strings["Mood"] = "Estado de ánimo"; App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; +App::$strings["Profile Match"] = "Perfil compatible"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; +App::$strings["is interested in:"] = "está interesado en:"; +App::$strings["No matches"] = "No se han encontrado perfiles compatibles"; App::$strings["No such group"] = "No se encuentra el grupo"; App::$strings["No such channel"] = "No se encuentra el canal"; App::$strings["forum"] = "foro"; @@ -733,13 +563,6 @@ App::$strings["Privacy group: "] = "Grupo de canales: "; App::$strings["Invalid connection."] = "Conexión no válida."; App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; App::$strings["System Notifications"] = "Notificaciones del sistema"; -App::$strings["Profile Match"] = "Perfil compatible"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; -App::$strings["is interested in:"] = "está interesado en:"; -App::$strings["No matches"] = "No se han encontrado perfiles compatibles"; -App::$strings["Posts and comments"] = "Publicaciones y comentarios"; -App::$strings["Only posts"] = "Solo publicaciones"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; App::$strings["Unable to create element."] = "Imposible crear el elemento."; App::$strings["Unable to update menu element."] = "No es posible actualizar el elemento del menú."; App::$strings["Unable to add menu element."] = "No es posible añadir el elemento al menú"; @@ -769,6 +592,203 @@ App::$strings["Menu item deleted."] = "Este elemento del menú ha sido borrado"; App::$strings["Menu item could not be deleted."] = "Este elemento del menú no puede ser borrado."; App::$strings["Edit Menu Element"] = "Editar elemento del menú"; App::$strings["Link text"] = "Texto del enlace"; +App::$strings["Name or caption"] = "Nombre o descripción"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; +App::$strings["Choose a short nickname"] = "Elija un alias corto"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; +App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; +App::$strings["Select a channel role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; +App::$strings["Read more about roles"] = "Leer más sobre los roles"; +App::$strings["Create Channel"] = "Crear 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 su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; +App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; +App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; +App::$strings["Discard"] = "Descartar"; +App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; +App::$strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada."; +App::$strings["Profile Photos"] = "Fotos del perfil"; +App::$strings["Album not found."] = "Álbum no encontrado."; +App::$strings["Delete Album"] = "Borrar á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"] = "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros"; +App::$strings["Delete Photo"] = "Borrar foto"; +App::$strings["No photos selected"] = "No hay fotos seleccionadas"; +App::$strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB de almacenamiento de fotos utilizado."; +App::$strings["Upload Photos"] = "Subir fotos"; +App::$strings["Enter an album name"] = "Introducir un nombre de álbum"; +App::$strings["or select an existing album (doubleclick)"] = "o seleccionar uno existente (doble click)"; +App::$strings["Create a status post for this upload"] = "Crear un mensaje de estado para esta subida"; +App::$strings["Caption (optional):"] = "Título (opcional):"; +App::$strings["Description (optional):"] = "Descripción (opcional):"; +App::$strings["Album name could not be decoded"] = "El nombre del álbum no ha podido ser descifrado"; +App::$strings["Contact Photos"] = "Fotos de contacto"; +App::$strings["Show Newest First"] = "Mostrar lo más reciente primero"; +App::$strings["Show Oldest First"] = "Mostrar lo más antiguo primero"; +App::$strings["View Photo"] = "Ver foto"; +App::$strings["Edit Album"] = "Editar álbum"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; +App::$strings["Photo not available"] = "Foto no disponible"; +App::$strings["Use as profile photo"] = "Usar como foto del perfil"; +App::$strings["Use as cover photo"] = "Usar como imagen de portada del perfil"; +App::$strings["Private Photo"] = "Foto privada"; +App::$strings["View Full Size"] = "Ver tamaño completo"; +App::$strings["Remove"] = "Eliminar"; +App::$strings["Edit photo"] = "Editar foto"; +App::$strings["Rotate CW (right)"] = "Girar CW (a la derecha)"; +App::$strings["Rotate CCW (left)"] = "Girar CCW (a la izquierda)"; +App::$strings["Enter a new album name"] = "Introducir un nuevo nombre de álbum"; +App::$strings["or select an existing one (doubleclick)"] = "o seleccionar uno (doble click) existente"; +App::$strings["Caption"] = "Título"; +App::$strings["Add a Tag"] = "Añadir una etiqueta"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com"; +App::$strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum"; +App::$strings["I like this (toggle)"] = "Me gusta (cambiar)"; +App::$strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; +App::$strings["Please wait"] = "Espere por favor"; +App::$strings["This is you"] = "Este es usted"; +App::$strings["Comment"] = "Comentar"; +App::$strings["__ctx:title__ Likes"] = "Me gusta"; +App::$strings["__ctx:title__ Dislikes"] = "No me gusta"; +App::$strings["__ctx:title__ Agree"] = "De acuerdo"; +App::$strings["__ctx:title__ Disagree"] = "En desacuerdo"; +App::$strings["__ctx:title__ Abstain"] = "Abstención"; +App::$strings["__ctx:title__ Attending"] = "Participaré"; +App::$strings["__ctx:title__ Not attending"] = "No participaré"; +App::$strings["__ctx:title__ Might attend"] = "Quizá participe"; +App::$strings["View all"] = "Ver todo"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Me gusta", + 1 => "Me gusta", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "No me gusta", + 1 => "No me gusta", +); +App::$strings["Photo Tools"] = "Gestión de las fotos"; +App::$strings["In This Photo:"] = "En esta foto:"; +App::$strings["Map"] = "Mapa"; +App::$strings["__ctx:noun__ Likes"] = "Me gusta"; +App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; +App::$strings["Close"] = "Cerrar"; +App::$strings["View Album"] = "Ver álbum"; +App::$strings["Recent Photos"] = "Fotos recientes"; +App::$strings["sent you a private message"] = "le ha enviado un mensaje privado"; +App::$strings["added your channel"] = "añadió este canal a sus conexiones"; +App::$strings["g A l F d"] = "g A l d F"; +App::$strings["[today]"] = "[hoy]"; +App::$strings["posted an event"] = "publicó un evento"; +App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; +App::$strings["Post successful."] = "Enviado con éxito."; +App::$strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta."; +App::$strings["Login failed."] = "El acceso ha fallado."; +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."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; +App::$strings["Configuration Editor"] = "Editor de configuración"; +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ón: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; +App::$strings["Layout updated."] = "Plantilla actualizada."; +App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; +App::$strings["Layout not found."] = "Plantilla no encontrada"; +App::$strings["Module Name:"] = "Nombre del módulo:"; +App::$strings["Layout Help"] = "Ayuda para el diseño de plantillas de página"; +App::$strings["Poke"] = "Toques y otras cosas"; +App::$strings["Poke somebody"] = "Dar un toque a alguien"; +App::$strings["Poke/Prod"] = "Toque/Incitación"; +App::$strings["Poke, prod or do other things to somebody"] = "Dar un toque, incitar o hacer otras cosas a alguien"; +App::$strings["Recipient"] = "Destinatario"; +App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; +App::$strings["Make this post private"] = "Convertir en privado este envío"; +App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; +App::$strings["Profile not found."] = "Perfil no encontrado."; +App::$strings["Profile deleted."] = "Perfil eliminado."; +App::$strings["Profile-"] = "Perfil-"; +App::$strings["New profile created."] = "El nuevo perfil ha sido creado."; +App::$strings["Profile unavailable to clone."] = "Perfil no disponible para clonar."; +App::$strings["Profile unavailable to export."] = "Perfil no disponible para exportar."; +App::$strings["Profile Name is required."] = "Se necesita el nombre del perfil."; +App::$strings["Marital Status"] = "Estado civil"; +App::$strings["Romantic Partner"] = "Pareja sentimental"; +App::$strings["Likes"] = "Me gusta"; +App::$strings["Dislikes"] = "No me gusta"; +App::$strings["Work/Employment"] = "Trabajo:"; +App::$strings["Religion"] = "Religión"; +App::$strings["Political Views"] = "Ideas políticas"; +App::$strings["Sexual Preference"] = "Preferencia sexual"; +App::$strings["Homepage"] = "Página personal"; +App::$strings["Interests"] = "Intereses"; +App::$strings["Profile updated."] = "Perfil actualizado."; +App::$strings["Hide your connections list from viewers of this profile"] = "Ocultar la lista de conexiones a los visitantes del perfil"; +App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; +App::$strings["View this profile"] = "Ver este perfil"; +App::$strings["Edit visibility"] = "Editar visibilidad"; +App::$strings["Profile Tools"] = "Gestión del perfil"; +App::$strings["Change cover photo"] = "Cambiar la imagen de portada del perfil"; +App::$strings["Change profile photo"] = "Cambiar la foto del perfil"; +App::$strings["Create a new profile using these settings"] = "Crear un nuevo perfil usando estos ajustes"; +App::$strings["Clone this profile"] = "Clonar este perfil"; +App::$strings["Delete this profile"] = "Eliminar este perfil"; +App::$strings["Add profile things"] = "Añadir cosas al perfil"; +App::$strings["Personal"] = "Personales"; +App::$strings["Relation"] = "Relación"; +App::$strings["Miscellaneous"] = "Varios"; +App::$strings["Import profile from file"] = "Importar perfil desde un fichero"; +App::$strings["Export profile to file"] = "Exportar perfil a un fichero"; +App::$strings["Your gender"] = "Género"; +App::$strings["Marital status"] = "Estado civil"; +App::$strings["Sexual preference"] = "Preferencia sexual"; +App::$strings["Profile name"] = "Nombre del perfil"; +App::$strings["This is your default profile."] = "Este es su perfil principal."; +App::$strings["Your full name"] = "Nombre completo"; +App::$strings["Title/Description"] = "Título o descripción"; +App::$strings["Street address"] = "Dirección"; +App::$strings["Locality/City"] = "Ciudad"; +App::$strings["Region/State"] = "Región o Estado"; +App::$strings["Postal/Zip code"] = "Código postal"; +App::$strings["Country"] = "País"; +App::$strings["Who (if applicable)"] = "Quién (si es pertinente)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Por ejemplo: ana123, María González, sara@ejemplo.com"; +App::$strings["Since (date)"] = "Desde (fecha)"; +App::$strings["Tell us about yourself"] = "Háblenos de usted"; +App::$strings["Hometown"] = "Lugar de nacimiento"; +App::$strings["Political views"] = "Ideas políticas"; +App::$strings["Religious views"] = "Creencias religiosas"; +App::$strings["Keywords used in directory listings"] = "Palabras clave utilizadas en los listados de directorios"; +App::$strings["Example: fishing photography software"] = "Por ejemplo: software de fotografía submarina"; +App::$strings["Musical interests"] = "Preferencias musicales"; +App::$strings["Books, literature"] = "Libros, literatura"; +App::$strings["Television"] = "Televisión"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Cine, danza, cultura, entretenimiento"; +App::$strings["Hobbies/Interests"] = "Aficiones o intereses"; +App::$strings["Love/Romance"] = "Vida sentimental o amorosa"; +App::$strings["School/Education"] = "Estudios"; +App::$strings["Contact information and social networks"] = "Información de contacto y redes sociales"; +App::$strings["My other channels"] = "Mis otros canales"; +App::$strings["Profile Image"] = "Imagen del perfil"; +App::$strings["Edit Profiles"] = "Editar perfiles"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; +App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; +App::$strings["Invalid profile identifier."] = "Identificador del perfil no válido"; +App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; +App::$strings["Profile"] = "Perfil"; +App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadirlo o eliminarlo."; +App::$strings["Visible To"] = "Visible para"; +App::$strings["Public Hubs"] = "Servidores públicos"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Los sitios listados permiten el registro público en la red \$Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales."; +App::$strings["Hub URL"] = "Dirección del hub"; +App::$strings["Access Type"] = "Tipo de acceso"; +App::$strings["Registration Policy"] = "Normas de registro"; +App::$strings["Stats"] = "Estadísticas"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Valoraciones"; +App::$strings["Rate"] = "Valorar"; +App::$strings["Website:"] = "Sitio web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; +App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; +App::$strings["No ratings"] = "Ninguna valoración"; +App::$strings["Rating: "] = "Valoración:"; +App::$strings["Website: "] = "Sitio web:"; +App::$strings["Description: "] = "Descripción:"; App::$strings["Theme settings updated."] = "Ajustes del tema actualizados."; App::$strings["# Accounts"] = "# Cuentas"; App::$strings["# blocked accounts"] = "# cuentas bloqueadas"; @@ -1011,91 +1031,19 @@ App::$strings["(In addition to basic fields)"] = "(Además de los campos básico App::$strings["All available fields"] = "Todos los campos disponibles"; App::$strings["Custom Fields"] = "Campos personalizados"; App::$strings["Create Custom Field"] = "Crear un campo personalizado"; -App::$strings["Name or caption"] = "Nombre o descripción"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; -App::$strings["Choose a short nickname"] = "Elija un alias corto"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; -App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; -App::$strings["Select a channel role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; -App::$strings["Read more about roles"] = "Leer más sobre los roles"; -App::$strings["Create Channel"] = "Crear 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 su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; -App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; -App::$strings["sent you a private message"] = "le ha enviado un mensaje privado"; -App::$strings["added your channel"] = "añadió este canal a sus conexiones"; -App::$strings["g A l F d"] = "g A l d F"; -App::$strings["[today]"] = "[hoy]"; -App::$strings["posted an event"] = "publicó un evento"; -App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; -App::$strings["Discard"] = "Descartar"; -App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; -App::$strings["Poke"] = "Toques y otras cosas"; -App::$strings["Poke somebody"] = "Dar un toque a alguien"; -App::$strings["Poke/Prod"] = "Toque/Incitación"; -App::$strings["Poke, prod or do other things to somebody"] = "Dar un toque, incitar o hacer otras cosas a alguien"; -App::$strings["Recipient"] = "Destinatario"; -App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; -App::$strings["Make this post private"] = "Convertir en privado este envío"; -App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; -App::$strings["Post successful."] = "Enviado con éxito."; -App::$strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta."; -App::$strings["Login failed."] = "El acceso ha fallado."; -App::$strings["Invalid profile identifier."] = "Identificador del perfil no válido"; -App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; -App::$strings["Profile"] = "Perfil"; -App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadirlo o eliminarlo."; -App::$strings["Visible To"] = "Visible para"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; -App::$strings["Configuration Editor"] = "Editor de configuración"; -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ón: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; -App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; -App::$strings["Version %s"] = "Versión %s"; -App::$strings["Installed plugins/addons/apps:"] = "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:"; -App::$strings["No installed plugins/addons/apps"] = "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; -App::$strings["Tag: "] = "Etiqueta:"; -App::$strings["Last background fetch: "] = "Última actualización en segundo plano:"; -App::$strings["Current load average: "] = "Carga media actual:"; -App::$strings["Running at web location"] = "Corriendo en el sitio web"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite"; -App::$strings["\$projectname issues"] = "Problemas en \$projectname"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; -App::$strings["Site Administrators"] = "Administradores del sitio"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita."; -App::$strings["The error message was:"] = "El mensaje de error fue:"; -App::$strings["Authentication failed."] = "Falló la autenticación."; -App::$strings["Remote Authentication"] = "Acceso desde su servidor"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; -App::$strings["Authenticate"] = "Acceder"; -App::$strings["Public Hubs"] = "Servidores públicos"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Los sitios listados permiten el registro público en la red \$Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales."; -App::$strings["Hub URL"] = "Dirección del hub"; -App::$strings["Access Type"] = "Tipo de acceso"; -App::$strings["Registration Policy"] = "Normas de registro"; -App::$strings["Stats"] = "Estadísticas"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Valoraciones"; -App::$strings["Rate"] = "Valorar"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; -App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; -App::$strings["Block Name"] = "Nombre del bloque"; -App::$strings["Blocks"] = "Bloques"; -App::$strings["Block Title"] = "Título del bloque"; -App::$strings["Website:"] = "Sitio web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; -App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; -App::$strings["No ratings"] = "Ninguna valoración"; -App::$strings["Rating: "] = "Valoración:"; -App::$strings["Website: "] = "Sitio web:"; -App::$strings["Description: "] = "Descripción:"; -App::$strings["Apps"] = "Aplicaciones (apps)"; -App::$strings["Title (optional)"] = "Título (opcional)"; -App::$strings["Edit Block"] = "Modificar este bloque"; -App::$strings["No channel."] = "Ningún canal."; -App::$strings["Common connections"] = "Conexiones comunes"; -App::$strings["No connections in common."] = "Ninguna conexión en común."; +App::$strings["App installed."] = "Aplicación instalada."; +App::$strings["Malformed app."] = "Aplicación con errores"; +App::$strings["Embed code"] = "Código incorporado"; +App::$strings["Edit App"] = "Modificar la aplicación"; +App::$strings["Create App"] = "Crear una aplicación"; +App::$strings["Name of app"] = "Nombre de la aplicación"; +App::$strings["Location (URL) of app"] = "Dirección (URL) de la aplicación"; +App::$strings["Photo icon URL"] = "Dirección del icono"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; +App::$strings["Categories (optional, comma separated list)"] = "Categorías (opcional, lista separada por comas)"; +App::$strings["Version ID"] = "Versión"; +App::$strings["Price of app"] = "Precio de la aplicación"; +App::$strings["Location (URL) to purchase app"] = "Dirección (URL) donde adquirir la aplicación"; App::$strings["Select a bookmark folder"] = "Seleccionar una carpeta de marcadores"; App::$strings["Save Bookmark"] = "Guardar marcador"; App::$strings["URL of bookmark"] = "Dirección del marcador"; @@ -1121,7 +1069,7 @@ App::$strings["no"] = "no"; App::$strings["yes"] = "sí"; App::$strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; App::$strings["Register"] = "Registrarse"; -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["Proceed to create your first channel"] = "Crear su primer canal"; App::$strings["Please login."] = "Por favor, inicie sesión."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña."; App::$strings["Remove This Account"] = "Eliminar esta cuenta"; @@ -1138,23 +1086,17 @@ App::$strings["This channel will be completely removed from the network. "] = "E App::$strings["Remove this channel and all its clones from the network"] = "Eliminar este canal y todos sus clones de la red"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red"; App::$strings["Remove Channel"] = "Eliminar el canal"; -App::$strings["Export Channel"] = "Exportar el 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."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; -App::$strings["Export Content"] = "Exportar contenidos"; -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."] = "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar."; -App::$strings["Export your posts from a given year."] = "Exporta sus publicaciones de un año dado."; -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."] = "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita."; +App::$strings["The error message was:"] = "El mensaje de error fue:"; +App::$strings["Authentication failed."] = "Falló la autenticación."; +App::$strings["Remote Authentication"] = "Acceso desde su servidor"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; +App::$strings["Authenticate"] = "Acceder"; App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; App::$strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; App::$strings["Name is required"] = "El nombre es obligatorio"; App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; -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."] = "Correo electrónico no válido."; App::$strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella."; App::$strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo."; @@ -1187,12 +1129,6 @@ App::$strings["Confirm New Password"] = "Confirmar la nueva contraseña"; App::$strings["Leave password fields blank unless changing"] = "Dejar en blanco la contraseña a menos que desee cambiarla."; App::$strings["Email Address:"] = "Dirección de correo electrónico:"; App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; -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 dropbox 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"] = "Funcionalidades"; App::$strings["Connector Settings"] = "Configuración del conector"; App::$strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles"; @@ -1355,6 +1291,7 @@ App::$strings["GD graphics PHP module"] = "módulo PHP GD graphics"; App::$strings["OpenSSL PHP module"] = "módulo PHP OpenSSL"; App::$strings["mysqli or postgres PHP module"] = "módulo PHP mysqli o postgres"; App::$strings["mb_string PHP module"] = "módulo PHP mb_string"; +App::$strings["mcrypt PHP module"] = "módulo PHP mcrypt "; App::$strings["xml PHP module"] = "módulo PHP xml"; App::$strings["Apache mod_rewrite module"] = "módulo Apache mod_rewrite "; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado."; @@ -1365,6 +1302,7 @@ 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ódulo PHP openssl es necesario, pero no está instalado."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado."; App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el módulo PHP mb_string es necesario, pero no está instalado."; +App::$strings["Error: mcrypt PHP module required but not installed."] = "Error: el módulo PHP mcrypt es necesario, pero no está instalado."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el módulo PHP xml es necesario para DAV, pero no está instalado."; 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."] = "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor."; 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."] = "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos."; @@ -1376,7 +1314,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."] = "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)."; 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: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene."; App::$strings["%s is writable"] = "%s tiene permisos de escritura"; -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["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"] = "Hubzilla guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación."; App::$strings["store is writable"] = "\"store\" tiene permisos de escritura"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio."; 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 su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo."; @@ -1384,7 +1322,6 @@ 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 su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos."; -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ón del certificado SSL"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:"; App::$strings["Url rewrite is working"] = "La reescritura de las direcciones funciona correctamente"; @@ -1396,20 +1333,19 @@ App::$strings["Files: shared with me"] = "Ficheros: compartidos conmigo"; App::$strings["NEW"] = "NUEVO"; App::$strings["Remove all files"] = "Eliminar todos los ficheros"; App::$strings["Remove this file"] = "Eliminar este fichero"; -App::$strings["Thing updated"] = "Elemento actualizado."; -App::$strings["Object store: failed"] = "Guardar objeto: ha fallado"; -App::$strings["Thing added"] = "Elemento añadido"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Mostrar elemento"; -App::$strings["item not found."] = "elemento no encontrado."; -App::$strings["Edit Thing"] = "Editar elemento"; -App::$strings["Select a profile"] = "Seleccionar un perfil"; -App::$strings["Post an activity"] = "Publicar una actividad"; -App::$strings["Only sends to viewers of the applicable profile"] = "Sólo enviar a espectadores del perfil pertinente."; -App::$strings["Name of thing e.g. something"] = "Nombre del elemento, p. ej.:. \"algo\""; -App::$strings["URL of thing (optional)"] = "Dirección del elemento (opcional)"; -App::$strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)"; -App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; +App::$strings["Version %s"] = "Versión %s"; +App::$strings["Installed plugins/addons/apps:"] = "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:"; +App::$strings["No installed plugins/addons/apps"] = "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; +App::$strings["Tag: "] = "Etiqueta:"; +App::$strings["Last background fetch: "] = "Última actualización en segundo plano:"; +App::$strings["Current load average: "] = "Carga media actual:"; +App::$strings["Running at web location"] = "Corriendo en el sitio web"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite"; +App::$strings["\$projectname issues"] = "Problemas en \$projectname"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; +App::$strings["Site Administrators"] = "Administradores del sitio"; App::$strings["Failed to create source. No channel selected."] = "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado."; App::$strings["Source created."] = "Fuente creada."; App::$strings["Source updated."] = "Fuente actualizada."; @@ -1437,38 +1373,60 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado %3 App::$strings["Tag removed"] = "Etiqueta eliminada."; App::$strings["Remove Item Tag"] = "Eliminar etiqueta del elemento."; App::$strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:"; -App::$strings["Webpages"] = "Páginas web"; -App::$strings["Actions"] = "Acciones"; -App::$strings["Page Link"] = "Vínculo de la página"; -App::$strings["Page Title"] = "Título de página"; -App::$strings["Not found"] = ""; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Sandbox"] = "Entorno de edición"; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = ""; -App::$strings["Revision Comparison"] = "Comparación de revisiones"; -App::$strings["Revert"] = "Revertir"; -App::$strings["Enter the name of your new wiki:"] = "Nombre de su nuevo wiki:"; -App::$strings["Enter the name of the new page:"] = "Nombre de la nueva página:"; -App::$strings["Enter the new name:"] = "Nuevo nombre:"; -App::$strings["Embed image from photo albums"] = "Incluir una imagen de los álbumes de fotos"; -App::$strings["Embed an image from your albums"] = "Incluir una imagen de sus álbumes"; -App::$strings["OK"] = "OK"; -App::$strings["Choose images to embed"] = "Elegir imágenes para incluir"; -App::$strings["Choose an album"] = "Elegir un álbum"; -App::$strings["Choose a different album..."] = "Elegir un álbum diferente..."; -App::$strings["Error getting album list"] = "Error al obtener la lista de álbumes"; -App::$strings["Error getting photo link"] = "Error al obtener el enlace de la foto"; -App::$strings["Error getting album"] = "Error al obtener el álbum"; +App::$strings["Thing updated"] = "Elemento actualizado."; +App::$strings["Object store: failed"] = "Guardar objeto: ha fallado"; +App::$strings["Thing added"] = "Elemento añadido"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Mostrar elemento"; +App::$strings["item not found."] = "elemento no encontrado."; +App::$strings["Edit Thing"] = "Editar elemento"; +App::$strings["Select a profile"] = "Seleccionar un perfil"; +App::$strings["Post an activity"] = "Publicar una actividad"; +App::$strings["Only sends to viewers of the applicable profile"] = "Sólo enviar a espectadores del perfil pertinente."; +App::$strings["Name of thing e.g. something"] = "Nombre del elemento, p. ej.:. \"algo\""; +App::$strings["URL of thing (optional)"] = "Dirección del elemento (opcional)"; +App::$strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)"; +App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; +App::$strings["Export Channel"] = "Exportar el 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."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; +App::$strings["Export Content"] = "Exportar contenidos"; +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."] = "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar."; +App::$strings["Export your posts from a given year."] = "Exporta sus publicaciones de un año dado."; +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."] = "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; App::$strings["No connections."] = "Sin conexiones."; App::$strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; App::$strings["View Connections"] = "Ver conexiones"; App::$strings["Source of Item"] = "Origen del elemento"; -App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; -App::$strings["Return to your app and insert this Securty Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; -App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; +App::$strings["Webpages"] = "Páginas web"; +App::$strings["Actions"] = "Acciones"; +App::$strings["Page Link"] = "Vínculo de la página"; +App::$strings["Page Title"] = "Título de página"; App::$strings["Xchan Lookup"] = "Búsqueda de canales"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; +App::$strings["Site Admin"] = "Administrador del sitio"; +App::$strings["Bug Report"] = "Informe de errores"; +App::$strings["View Bookmarks"] = "Ver los marcadores"; +App::$strings["My Chatrooms"] = "Mis salas de chat"; +App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; +App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; +App::$strings["Suggest Channels"] = "Sugerir canales"; +App::$strings["Login"] = "Iniciar sesión"; +App::$strings["Grid"] = "Red"; +App::$strings["Channel Home"] = "Mi canal"; +App::$strings["Events"] = "Eventos"; +App::$strings["Directory"] = "Directorio"; +App::$strings["Mail"] = "Correo"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Probar"; +App::$strings["Suggest"] = "Sugerir"; +App::$strings["Random Channel"] = "Canal aleatorio"; +App::$strings["Invite"] = "Invitar"; +App::$strings["Features"] = "Funcionalidades"; +App::$strings["Post"] = "Publicación"; +App::$strings["Purchase"] = "Comprar"; App::$strings["Missing room name"] = "Sala de chat sin nombre"; App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; App::$strings["Invalid room specifier."] = "Especificador de sala no válido."; @@ -1516,27 +1474,6 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Por fav App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Aviso]"; App::$strings["created a new post"] = "ha creado una nueva entrada"; App::$strings["commented on %s's post"] = "ha comentado la entrada de %s"; -App::$strings["Site Admin"] = "Administrador del sitio"; -App::$strings["Bug Report"] = "Informe de errores"; -App::$strings["View Bookmarks"] = "Ver los marcadores"; -App::$strings["My Chatrooms"] = "Mis salas de chat"; -App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; -App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; -App::$strings["Suggest Channels"] = "Sugerir canales"; -App::$strings["Login"] = "Iniciar sesión"; -App::$strings["Grid"] = "Red"; -App::$strings["Channel Home"] = "Mi canal"; -App::$strings["Events"] = "Eventos"; -App::$strings["Directory"] = "Directorio"; -App::$strings["Mail"] = "Correo"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Probar"; -App::$strings["Suggest"] = "Sugerir"; -App::$strings["Random Channel"] = "Canal aleatorio"; -App::$strings["Invite"] = "Invitar"; -App::$strings["Features"] = "Funcionalidades"; -App::$strings["Post"] = "Publicación"; -App::$strings["Purchase"] = "Comprar"; App::$strings["Private Message"] = "Mensaje Privado"; App::$strings["Select"] = "Seleccionar"; App::$strings["Save to Folder"] = "Guardar en carpeta"; @@ -1573,7 +1510,7 @@ App::$strings["Expires: %s"] = "Caduca: %s"; App::$strings["Save Bookmarks"] = "Guardar en Marcadores"; App::$strings["Add to Calendar"] = "Añadir al calendario"; App::$strings["Mark all seen"] = "Marcar todo como visto"; -App::$strings["%s show all"] = ""; +App::$strings["[+] show all"] = "[+] mostrar todo:"; App::$strings["Bold"] = "Negrita"; App::$strings["Italic"] = "Itálico "; App::$strings["Underline"] = "Subrayar"; @@ -1582,93 +1519,9 @@ App::$strings["Code"] = "Código"; App::$strings["Image"] = "Imagen"; App::$strings["Insert Link"] = "Insertar enlace"; App::$strings["Video"] = "Vídeo"; -App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; -App::$strings["Only me"] = "Sólo yo"; -App::$strings["Public"] = "Público"; -App::$strings["Anybody in the \$Projectname network"] = "Cualquiera en la red \$Projectname"; -App::$strings["Any account on %s"] = "Cualquier cuenta en %s"; -App::$strings["Any of my connections"] = "Cualquiera de mis conexiones"; -App::$strings["Only connections I specifically allow"] = "Sólo las conexiones que yo permita de forma explícita"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado"; -App::$strings["This is your default setting for who can view your connections"] = "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos"; -App::$strings["This is your default setting for the audience of your webpages"] = "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web"; App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado."; App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación."; App::$strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio"; -App::$strings["Image file is empty."] = "El fichero de imagen está vacío. "; -App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; -App::$strings["a new photo"] = "una nueva foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s"; -App::$strings["Photo Albums"] = "Álbumes de fotos"; -App::$strings["Upload New Photos"] = "Subir nuevas fotos"; -App::$strings["Logout"] = "Finalizar sesión"; -App::$strings["End this session"] = "Finalizar esta sesión"; -App::$strings["Home"] = "Inicio"; -App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; -App::$strings["Your profile page"] = "Su página del perfil"; -App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; -App::$strings["Edit Profile"] = "Editar el perfil"; -App::$strings["Edit your profile"] = "Editar su perfil"; -App::$strings["Your photos"] = "Sus fotos"; -App::$strings["Your files"] = "Sus ficheros"; -App::$strings["Your chatrooms"] = "Sus salas de chat"; -App::$strings["Bookmarks"] = "Marcadores"; -App::$strings["Your bookmarks"] = "Sus marcadores"; -App::$strings["Your webpages"] = "Sus páginas web"; -App::$strings["Your wiki"] = ""; -App::$strings["Sign in"] = "Acceder"; -App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; -App::$strings["Remote authentication"] = "Acceder desde su servidor"; -App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; -App::$strings["Home Page"] = "Página de inicio"; -App::$strings["Create an account"] = "Crear una cuenta"; -App::$strings["Help and documentation"] = "Ayuda y documentación"; -App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; -App::$strings["Channel Directory"] = "Directorio de canales"; -App::$strings["Your grid"] = "Mi red"; -App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; -App::$strings["Channel home"] = "Mi canal"; -App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; -App::$strings["Notices"] = "Avisos"; -App::$strings["Notifications"] = "Notificaciones"; -App::$strings["See all notifications"] = "Ver todas las notificaciones"; -App::$strings["Private mail"] = "Correo privado"; -App::$strings["See all private messages"] = "Ver todas los mensajes privados"; -App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; -App::$strings["Inbox"] = "Bandeja de entrada"; -App::$strings["Outbox"] = "Bandeja de salida"; -App::$strings["New Message"] = "Nuevo mensaje"; -App::$strings["Event Calendar"] = "Calendario de eventos"; -App::$strings["See all events"] = "Ver todos los eventos"; -App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; -App::$strings["Manage Your Channels"] = "Gestionar sus canales"; -App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; -App::$strings["Admin"] = "Administrador"; -App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; -App::$strings["Loading..."] = "Cargando..."; -App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; -App::$strings["Please wait..."] = "Espere por favor…"; -App::$strings["view full size"] = "Ver en el tamaño original"; -App::$strings["Administrator"] = "Administrador"; -App::$strings["No Subject"] = "Sin asunto"; -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"] = "Nueva página"; -App::$strings["Title"] = "Título"; App::$strings["Categories"] = "Categorías"; App::$strings["Tags"] = "Etiquetas"; App::$strings["Keywords"] = "Palabras clave"; @@ -1678,196 +1531,34 @@ App::$strings["want"] = "quiero"; App::$strings["wants"] = "quiere"; App::$strings["likes"] = "gusta de"; App::$strings["dislikes"] = "no gusta de"; -App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; -App::$strings["Empty name"] = "Nombre vacío"; -App::$strings["Name too long"] = "Nombre demasiado largo"; -App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; -App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; -App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."; -App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; -App::$strings["Default Profile"] = "Perfil principal"; -App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; -App::$strings["Create New Profile"] = "Crear un nuevo perfil"; -App::$strings["Visible to everybody"] = "Visible para todos"; -App::$strings["Gender:"] = "Género:"; -App::$strings["Status:"] = "Estado:"; -App::$strings["Homepage:"] = "Página personal:"; -App::$strings["Online Now"] = "Ahora en línea"; -App::$strings["Like this channel"] = "Me gusta este canal"; -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Cumpleaños:"; -App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Orientación sexual:"; -App::$strings["Tags:"] = "Etiquetas:"; -App::$strings["Political Views:"] = "Posición política:"; -App::$strings["Religion:"] = "Religión:"; -App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:"; -App::$strings["Likes:"] = "Me gusta:"; -App::$strings["Dislikes:"] = "No me gusta:"; -App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; -App::$strings["My other channels:"] = "Mis otros canales:"; -App::$strings["Musical interests:"] = "Preferencias musicales:"; -App::$strings["Books, literature:"] = "Libros, literatura:"; -App::$strings["Television:"] = "Televisión:"; -App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:"; -App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; -App::$strings["Work/employment:"] = "Trabajo:"; -App::$strings["School/education:"] = "Estudios:"; -App::$strings["Like this thing"] = "Me gusta esto"; -App::$strings["New window"] = "Nueva ventana"; -App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; -App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s"; -App::$strings["poked"] = "ha dado un toque a"; -App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; -App::$strings["Categories:"] = "Categorías:"; -App::$strings["Filed under:"] = "Archivado bajo:"; -App::$strings["View in context"] = "Mostrar en su contexto"; -App::$strings["remove"] = "eliminar"; -App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; -App::$strings["View Source"] = "Ver el código fuente de la entrada"; -App::$strings["Follow Thread"] = "Seguir este hilo"; -App::$strings["Unfollow Thread"] = "Dejar de seguir este hilo"; -App::$strings["Activity/Posts"] = "Actividad y publicaciones"; -App::$strings["Edit Connection"] = "Editar conexión"; -App::$strings["Message"] = "Mensaje"; -App::$strings["%s likes this."] = "A %s le gusta esto."; -App::$strings["%s doesn't like this."] = "A %s no le gusta esto."; -App::$strings["%2\$d people like this."] = array( - 0 => "a %2\$d personas le gusta esto.", - 1 => "A %2\$d personas les gusta esto.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "a %2\$d personas no les gusta esto.", - 1 => "A %2\$d personas no les gusta esto.", -); -App::$strings["and"] = "y"; -App::$strings[", and %d other people"] = array( - 0 => ", y %d persona más", - 1 => ", y %d personas más", -); -App::$strings["%s like this."] = "A %s le gusta esto."; -App::$strings["%s don't like this."] = "A %s no le gusta esto."; -App::$strings["Set your location"] = "Establecer su ubicación"; -App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador"; -App::$strings["Tag term:"] = "Término de la etiqueta:"; -App::$strings["Where are you right now?"] = "¿Donde está ahora?"; -App::$strings["Page link name"] = "Nombre del enlace de la página"; -App::$strings["Post as"] = "Publicar como"; -App::$strings["Toggle voting"] = "Cambiar votación"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorías (opcional, lista separada por comas)"; -App::$strings["Set publish date"] = "Establecer la fecha de publicación"; -App::$strings["Discover"] = "Descubrir"; -App::$strings["Imported public streams"] = "Contenidos públicos importados"; -App::$strings["Commented Order"] = "Comentarios recientes"; -App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; -App::$strings["Posted Order"] = "Publicaciones recientes"; -App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; -App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran"; -App::$strings["Activity Stream - by date"] = "Contenido - por fecha"; -App::$strings["Starred"] = "Preferidas"; -App::$strings["Favourite Posts"] = "Publicaciones favoritas"; -App::$strings["Spam"] = "Correo basura"; -App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura"; -App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; -App::$strings["About"] = "Mi perfil"; -App::$strings["Profile Details"] = "Detalles del perfil"; -App::$strings["Files and Storage"] = "Ficheros y repositorio"; -App::$strings["Chatrooms"] = "Salas de chat"; -App::$strings["Saved Bookmarks"] = "Marcadores guardados"; -App::$strings["Manage Webpages"] = "Administrar páginas web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Participaré", - 1 => "Participaré", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "No participaré", - 1 => "No participaré", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indeciso/a", - 1 => "Indecisos/as", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "De acuerdo", - 1 => "De acuerdo", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "En desacuerdo", - 1 => "En desacuerdo", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "se abstiene", - 1 => "Se abstienen", -); +App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; +App::$strings["Starts:"] = "Comienza:"; +App::$strings["Finishes:"] = "Finaliza:"; +App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; +App::$strings["Not specified"] = "Sin especificar"; +App::$strings["Needs Action"] = "Necesita de una intervención"; +App::$strings["Completed"] = "Completado/a"; +App::$strings["In Process"] = "En proceso"; +App::$strings["Cancelled"] = "Cancelado/a"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado."; App::$strings["Channel clone failed. Import failed."] = "La clonación del canal no ha salido bien. La importación ha fallado."; -App::$strings["Frequently"] = "Frecuentemente"; -App::$strings["Hourly"] = "Cada hora"; -App::$strings["Twice daily"] = "Dos veces al día"; -App::$strings["Daily"] = "Diariamente"; -App::$strings["Weekly"] = "Semanalmente"; -App::$strings["Monthly"] = "Mensualmente"; -App::$strings["Currently Male"] = "Actualmente hombre"; -App::$strings["Currently Female"] = "Actualmente mujer"; -App::$strings["Mostly Male"] = "Generalmente hombre"; -App::$strings["Mostly Female"] = "Generalmente mujer"; -App::$strings["Transgender"] = "Transgénero"; -App::$strings["Intersex"] = "Intersexual"; -App::$strings["Transsexual"] = "Transexual"; -App::$strings["Hermaphrodite"] = "Hermafrodita"; -App::$strings["Neuter"] = "Neutral"; -App::$strings["Non-specific"] = "No especificado"; -App::$strings["Undecided"] = "Indeciso/a"; -App::$strings["Males"] = "Hombres"; -App::$strings["Females"] = "Mujeres"; -App::$strings["Gay"] = "Homosexual"; -App::$strings["Lesbian"] = "Lesbiana"; -App::$strings["No Preference"] = "Sin preferencias"; -App::$strings["Bisexual"] = "Bisexual"; -App::$strings["Autosexual"] = "Autosexual"; -App::$strings["Abstinent"] = "Casto/a"; -App::$strings["Virgin"] = "Virgen"; -App::$strings["Deviant"] = "Fuera de lo común"; -App::$strings["Fetish"] = "Fetichista"; -App::$strings["Oodles"] = "Orgías"; -App::$strings["Nonsexual"] = "Asexual"; -App::$strings["Single"] = "Soltero/a"; -App::$strings["Lonely"] = "Solo/a"; -App::$strings["Available"] = "Disponible"; -App::$strings["Unavailable"] = "No disponible"; -App::$strings["Has crush"] = "Enamorado/a"; -App::$strings["Infatuated"] = "Apasionado/a"; -App::$strings["Dating"] = "Saliendo con alguien"; -App::$strings["Unfaithful"] = "Infiel"; -App::$strings["Sex Addict"] = "Con adicción al sexo"; -App::$strings["Friends/Benefits"] = "Amigos con algo extra"; -App::$strings["Casual"] = "Casual"; -App::$strings["Engaged"] = "Prometido/a"; -App::$strings["Married"] = "Casado/a"; -App::$strings["Imaginarily married"] = "Casado/a en sueños"; -App::$strings["Partners"] = "Pareja"; -App::$strings["Cohabiting"] = "Cohabitando"; -App::$strings["Common law"] = "Matrimonio tradicional"; -App::$strings["Happy"] = "Felíz"; -App::$strings["Not looking"] = "No estoy buscando"; -App::$strings["Swinger"] = "Libertino"; -App::$strings["Betrayed"] = "Engañado/a"; -App::$strings["Separated"] = "Separado/a"; -App::$strings["Unstable"] = "Inestable"; -App::$strings["Divorced"] = "Divorciado/a"; -App::$strings["Imaginarily divorced"] = "Divorciado/a en sueños"; -App::$strings["Widowed"] = "Viudo/a"; -App::$strings["Uncertain"] = "Indeterminado"; -App::$strings["It's complicated"] = "Es complicado"; -App::$strings["Don't care"] = "No me importa"; -App::$strings["Ask me"] = "Pregúnteme"; -App::$strings["%1\$s's bookmarks"] = "Marcadores 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."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"; +App::$strings["(Unknown)"] = "(Desconocido)"; +App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; +App::$strings["Visible to you only."] = "Visible sólo para usted."; +App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; +App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que esté autenticado."; +App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; +App::$strings["Visible to all connections."] = "Visible para todas las conexiones."; +App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; +App::$strings["Visible to specific connections."] = "Visible para conexiones específicas."; +App::$strings["Privacy group is empty."] = "El grupo de canales está vacío."; +App::$strings["Privacy group: %s"] = "Grupo de canales: %s"; +App::$strings["Connection not found."] = "Conexión no encontrada"; +App::$strings["profile photo"] = "foto del perfil"; +App::$strings["No recipient provided."] = "No se ha especificado ningún destinatario."; +App::$strings["[no subject]"] = "[sin asunto]"; +App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; +App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; App::$strings["prev"] = "anterior"; App::$strings["first"] = "primera"; App::$strings["last"] = "última"; @@ -1877,6 +1568,7 @@ App::$strings["newer"] = "más recientes"; App::$strings["No connections"] = "Sin conexiones"; App::$strings["View all %s connections"] = "Ver todas las %s conexiones"; App::$strings["poke"] = "un toque"; +App::$strings["poked"] = "ha dado un toque a"; App::$strings["ping"] = "un \"ping\""; App::$strings["pinged"] = "ha enviado un \"ping\" a"; App::$strings["prod"] = "una incitación "; @@ -1939,21 +1631,385 @@ App::$strings["Select an alternate language"] = "Seleccionar un idioma alternati App::$strings["activity"] = "la actividad"; App::$strings["Design Tools"] = "Herramientas de diseño web"; App::$strings["Pages"] = "Páginas"; -App::$strings["Logged out."] = "Desconectado/a."; -App::$strings["Failed authentication"] = "Autenticación fallida."; -App::$strings["Can view my normal stream and posts"] = "Pueden verse mi actividad y publicaciones normales"; -App::$strings["Can view my webpages"] = "Pueden verse mis páginas web"; -App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)"; -App::$strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gusta/no me gusta"; -App::$strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención"; -App::$strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foros de discusión o grupos"; -App::$strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)"; -App::$strings["Can write to my file storage and photos"] = "Puede escribirse en mi repositorio de ficheros y fotos"; -App::$strings["Can edit my webpages"] = "Pueden editarse mis páginas web"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas"; -App::$strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo."; +App::$strings["System"] = "Sistema"; +App::$strings["New App"] = "Nueva aplicación (app)"; +App::$strings["Suggestions"] = "Sugerencias"; +App::$strings["See more..."] = "Ver más..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas."; +App::$strings["Add New Connection"] = "Añadir nueva conexión"; +App::$strings["Enter channel address"] = "Dirección del canal"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"; +App::$strings["Notes"] = "Notas"; +App::$strings["Remove term"] = "Eliminar término"; +App::$strings["Saved Searches"] = "Búsquedas guardadas"; +App::$strings["add"] = "añadir"; +App::$strings["Saved Folders"] = "Carpetas guardadas"; +App::$strings["Everything"] = "Todo"; +App::$strings["Archives"] = "Hemeroteca"; +App::$strings["Refresh"] = "Recargar"; +App::$strings["Account settings"] = "Configuración de la cuenta"; +App::$strings["Channel settings"] = "Configuración del canal"; +App::$strings["Additional features"] = "Funcionalidades"; +App::$strings["Feature/Addon settings"] = "Complementos"; +App::$strings["Display settings"] = "Ajustes de visualización"; +App::$strings["Manage locations"] = "Gestión de ubicaciones (clones) del canal"; +App::$strings["Export channel"] = "Exportar canal"; +App::$strings["Connected apps"] = "Aplicaciones (apps) conectadas"; +App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; +App::$strings["Private Mail Menu"] = "Menú de correo privado"; +App::$strings["Combined View"] = "Vista combinada"; +App::$strings["Inbox"] = "Bandeja de entrada"; +App::$strings["Outbox"] = "Bandeja de salida"; +App::$strings["New Message"] = "Nuevo mensaje"; +App::$strings["Conversations"] = "Conversaciones"; +App::$strings["Received Messages"] = "Mensajes recibidos"; +App::$strings["Sent Messages"] = "Enviar mensajes"; +App::$strings["No messages."] = "Sin mensajes."; +App::$strings["Delete conversation"] = "Eliminar conversación"; +App::$strings["Events Menu"] = "Menú de eventos"; +App::$strings["Day View"] = "Eventos del día"; +App::$strings["Week View"] = "Eventos de la semana"; +App::$strings["Month View"] = "Eventos del mes"; +App::$strings["Events Tools"] = "Gestión de eventos"; +App::$strings["Export Calendar"] = "Exportar el calendario"; +App::$strings["Import Calendar"] = "Importar un calendario"; +App::$strings["Chatrooms"] = "Salas de chat"; +App::$strings["Overview"] = "Resumen"; +App::$strings["Chat Members"] = "Miembros del chat"; +App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; +App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; +App::$strings["photo/image"] = "foto/imagen"; +App::$strings["Click to show more"] = "Hacer clic para ver más"; +App::$strings["Rating Tools"] = "Valoraciones"; +App::$strings["Rate Me"] = "Valorar este canal"; +App::$strings["View Ratings"] = "Mostrar las valoraciones"; +App::$strings["Forums"] = "Foros"; +App::$strings["Tasks"] = "Tareas"; +App::$strings["Documentation"] = "Documentación"; +App::$strings["Project/Site Information"] = "Información sobre el proyecto o sitio"; +App::$strings["For Members"] = "Para los miembros"; +App::$strings["For Administrators"] = "Para los administradores"; +App::$strings["For Developers"] = "Para los desarrolladores"; +App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; +App::$strings["Inspect queue"] = "Examinar la cola"; +App::$strings["DB updates"] = "Actualizaciones de la base de datos"; +App::$strings["Admin"] = "Administrador"; +App::$strings["Plugin Features"] = "Extensiones"; +App::$strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; +App::$strings["Channel location missing."] = "Falta la dirección del canal."; +App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; +App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; +App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; +App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; +App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; +App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; +App::$strings["Public Timeline"] = "Cronología pública"; +App::$strings["Image/photo"] = "Imagen/foto"; +App::$strings["Encrypted content"] = "Contenido cifrado"; +App::$strings["Install %s element: "] = "Instalar el elemento %s:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; +App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; +App::$strings["$1 wrote:"] = "$1 escribió:"; +App::$strings["Directory Options"] = "Opciones del directorio"; +App::$strings["Safe Mode"] = "Modo seguro"; +App::$strings["Public Forums Only"] = "Solo foros públicos"; +App::$strings["This Website Only"] = "Solo este sitio 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 \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"; +App::$strings["Logout"] = "Finalizar sesión"; +App::$strings["End this session"] = "Finalizar esta sesión"; +App::$strings["Home"] = "Inicio"; +App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; +App::$strings["Your profile page"] = "Su página del perfil"; +App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; +App::$strings["Edit Profile"] = "Editar el perfil"; +App::$strings["Edit your profile"] = "Editar su perfil"; +App::$strings["Your photos"] = "Sus fotos"; +App::$strings["Your files"] = "Sus ficheros"; +App::$strings["Your chatrooms"] = "Sus salas de chat"; +App::$strings["Bookmarks"] = "Marcadores"; +App::$strings["Your bookmarks"] = "Sus marcadores"; +App::$strings["Your webpages"] = "Sus páginas web"; +App::$strings["Sign in"] = "Acceder"; +App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; +App::$strings["Remote authentication"] = "Acceder desde su servidor"; +App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; +App::$strings["Home Page"] = "Página de inicio"; +App::$strings["Create an account"] = "Crear una cuenta"; +App::$strings["Help and documentation"] = "Ayuda y documentación"; +App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; +App::$strings["Channel Directory"] = "Directorio de canales"; +App::$strings["Your grid"] = "Mi red"; +App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; +App::$strings["Channel home"] = "Mi canal"; +App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; +App::$strings["Notices"] = "Avisos"; +App::$strings["Notifications"] = "Notificaciones"; +App::$strings["See all notifications"] = "Ver todas las notificaciones"; +App::$strings["Private mail"] = "Correo privado"; +App::$strings["See all private messages"] = "Ver todas los mensajes privados"; +App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; +App::$strings["Event Calendar"] = "Calendario de eventos"; +App::$strings["See all events"] = "Ver todos los eventos"; +App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; +App::$strings["Manage Your Channels"] = "Gestionar sus canales"; +App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; +App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; +App::$strings["Loading..."] = "Cargando..."; +App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; +App::$strings["Please wait..."] = "Espere por favor…"; +App::$strings["New window"] = "Nueva ventana"; +App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; +App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; +App::$strings["%d invitation available"] = array( + 0 => "%d invitación pendiente", + 1 => "%d invitaciones disponibles", +); +App::$strings["Find Channels"] = "Encontrar canales"; +App::$strings["Enter name or interest"] = "Introducir nombre o interés"; +App::$strings["Connect/Follow"] = "Conectar/Seguir"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: José Fernández, Pesca"; +App::$strings["Random Profile"] = "Perfil aleatorio"; +App::$strings["Invite Friends"] = "Invitar a amigos"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Ejemplo avanzado: nombre=juan y país=españa"; +App::$strings["%d connection in common"] = array( + 0 => "%d conexión en común", + 1 => "%d conexiones en común", +); +App::$strings["show more"] = "mostrar más"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s"; +App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; +App::$strings["Categories:"] = "Categorías:"; +App::$strings["Filed under:"] = "Archivado bajo:"; +App::$strings["View in context"] = "Mostrar en su contexto"; +App::$strings["remove"] = "eliminar"; +App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; +App::$strings["View Source"] = "Ver el código fuente de la entrada"; +App::$strings["Follow Thread"] = "Seguir este hilo"; +App::$strings["Unfollow Thread"] = "Dejar de seguir este hilo"; +App::$strings["Activity/Posts"] = "Actividad y publicaciones"; +App::$strings["Edit Connection"] = "Editar conexión"; +App::$strings["Message"] = "Mensaje"; +App::$strings["%s likes this."] = "A %s le gusta esto."; +App::$strings["%s doesn't like this."] = "A %s no le gusta esto."; +App::$strings["%2\$d people like this."] = array( + 0 => "a %2\$d personas le gusta esto.", + 1 => "A %2\$d personas les gusta esto.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "a %2\$d personas no les gusta esto.", + 1 => "A %2\$d personas no les gusta esto.", +); +App::$strings["and"] = "y"; +App::$strings[", and %d other people"] = array( + 0 => ", y %d persona más", + 1 => ", y %d personas más", +); +App::$strings["%s like this."] = "A %s le gusta esto."; +App::$strings["%s don't like this."] = "A %s no le gusta esto."; +App::$strings["Set your location"] = "Establecer su ubicación"; +App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador"; +App::$strings["Tag term:"] = "Término de la etiqueta:"; +App::$strings["Where are you right now?"] = "¿Donde está ahora?"; +App::$strings["Page link name"] = "Nombre del enlace de la página"; +App::$strings["Post as"] = "Publicar como"; +App::$strings["Toggle voting"] = "Cambiar votación"; +App::$strings["Categories (optional, comma-separated list)"] = "Categorías (opcional, lista separada por comas)"; +App::$strings["Set publish date"] = "Establecer la fecha de publicación"; +App::$strings["OK"] = "OK"; +App::$strings["Discover"] = "Descubrir"; +App::$strings["Imported public streams"] = "Contenidos públicos importados"; +App::$strings["Commented Order"] = "Comentarios recientes"; +App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; +App::$strings["Posted Order"] = "Publicaciones recientes"; +App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; +App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran"; +App::$strings["Activity Stream - by date"] = "Contenido - por fecha"; +App::$strings["Starred"] = "Preferidas"; +App::$strings["Favourite Posts"] = "Publicaciones favoritas"; +App::$strings["Spam"] = "Correo basura"; +App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura"; +App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; +App::$strings["About"] = "Mi perfil"; +App::$strings["Profile Details"] = "Detalles del perfil"; +App::$strings["Photo Albums"] = "Álbumes de fotos"; +App::$strings["Files and Storage"] = "Ficheros y repositorio"; +App::$strings["Saved Bookmarks"] = "Marcadores guardados"; +App::$strings["Manage Webpages"] = "Administrar páginas web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Participaré", + 1 => "Participaré", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "No participaré", + 1 => "No participaré", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indeciso/a", + 1 => "Indecisos/as", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "De acuerdo", + 1 => "De acuerdo", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "En desacuerdo", + 1 => "En desacuerdo", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "se abstiene", + 1 => "Se abstienen", +); +App::$strings["Frequently"] = "Frecuentemente"; +App::$strings["Hourly"] = "Cada hora"; +App::$strings["Twice daily"] = "Dos veces al día"; +App::$strings["Daily"] = "Diariamente"; +App::$strings["Weekly"] = "Semanalmente"; +App::$strings["Monthly"] = "Mensualmente"; +App::$strings["Currently Male"] = "Actualmente hombre"; +App::$strings["Currently Female"] = "Actualmente mujer"; +App::$strings["Mostly Male"] = "Generalmente hombre"; +App::$strings["Mostly Female"] = "Generalmente mujer"; +App::$strings["Transgender"] = "Transgénero"; +App::$strings["Intersex"] = "Intersexual"; +App::$strings["Transsexual"] = "Transexual"; +App::$strings["Hermaphrodite"] = "Hermafrodita"; +App::$strings["Neuter"] = "Neutral"; +App::$strings["Non-specific"] = "No especificado"; +App::$strings["Other"] = "Otro"; +App::$strings["Undecided"] = "Indeciso/a"; +App::$strings["Males"] = "Hombres"; +App::$strings["Females"] = "Mujeres"; +App::$strings["Gay"] = "Homosexual"; +App::$strings["Lesbian"] = "Lesbiana"; +App::$strings["No Preference"] = "Sin preferencias"; +App::$strings["Bisexual"] = "Bisexual"; +App::$strings["Autosexual"] = "Autosexual"; +App::$strings["Abstinent"] = "Casto/a"; +App::$strings["Virgin"] = "Virgen"; +App::$strings["Deviant"] = "Fuera de lo común"; +App::$strings["Fetish"] = "Fetichista"; +App::$strings["Oodles"] = "Orgías"; +App::$strings["Nonsexual"] = "Asexual"; +App::$strings["Single"] = "Soltero/a"; +App::$strings["Lonely"] = "Solo/a"; +App::$strings["Available"] = "Disponible"; +App::$strings["Unavailable"] = "No disponible"; +App::$strings["Has crush"] = "Enamorado/a"; +App::$strings["Infatuated"] = "Apasionado/a"; +App::$strings["Dating"] = "Saliendo con alguien"; +App::$strings["Unfaithful"] = "Infiel"; +App::$strings["Sex Addict"] = "Con adicción al sexo"; +App::$strings["Friends/Benefits"] = "Amigos con algo extra"; +App::$strings["Casual"] = "Casual"; +App::$strings["Engaged"] = "Prometido/a"; +App::$strings["Married"] = "Casado/a"; +App::$strings["Imaginarily married"] = "Casado/a en sueños"; +App::$strings["Partners"] = "Pareja"; +App::$strings["Cohabiting"] = "Cohabitando"; +App::$strings["Common law"] = "Matrimonio tradicional"; +App::$strings["Happy"] = "Felíz"; +App::$strings["Not looking"] = "No estoy buscando"; +App::$strings["Swinger"] = "Libertino"; +App::$strings["Betrayed"] = "Engañado/a"; +App::$strings["Separated"] = "Separado/a"; +App::$strings["Unstable"] = "Inestable"; +App::$strings["Divorced"] = "Divorciado/a"; +App::$strings["Imaginarily divorced"] = "Divorciado/a en sueños"; +App::$strings["Widowed"] = "Viudo/a"; +App::$strings["Uncertain"] = "Indeterminado"; +App::$strings["It's complicated"] = "Es complicado"; +App::$strings["Don't care"] = "No me importa"; +App::$strings["Ask me"] = "Pregúnteme"; +App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; +App::$strings["Only me"] = "Sólo yo"; +App::$strings["Public"] = "Público"; +App::$strings["Anybody in the \$Projectname network"] = "Cualquiera en la red \$Projectname"; +App::$strings["Any account on %s"] = "Cualquier cuenta en %s"; +App::$strings["Any of my connections"] = "Cualquiera de mis conexiones"; +App::$strings["Only connections I specifically allow"] = "Sólo las conexiones que yo permita de forma explícita"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado"; +App::$strings["This is your default setting for who can view your connections"] = "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos"; +App::$strings["This is your default setting for the audience of your webpages"] = "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web"; +App::$strings["Not a valid email address"] = "Dirección de correo no válida"; +App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio."; +App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; +App::$strings["An invitation is required."] = "Es obligatorio que le inviten."; +App::$strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; +App::$strings["Please enter the required information."] = "Por favor introduzca la información requerida."; +App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; +App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; +App::$strings["Registration request at %s"] = "Solicitud de registro en %s"; +App::$strings["Administrator"] = "Administrador"; +App::$strings["your registration password"] = "su contraseña de registro"; +App::$strings["Registration details for %s"] = "Detalles del registro de %s"; +App::$strings["Account approved."] = "Cuenta aprobada."; +App::$strings["Registration revoked for %s"] = "Registro revocado para %s"; +App::$strings["Account verified. Please login."] = "Cuenta verificada. Por favor, inicie sesión."; +App::$strings["Click here to upgrade."] = "Pulse aquí para actualizar"; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; +App::$strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; +App::$strings["Item was not found."] = "Elemento no encontrado."; +App::$strings["No source file."] = "Ningún fichero de origen"; +App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; +App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; +App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; +App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; +App::$strings["Path not available."] = "Ruta no disponible."; +App::$strings["Empty pathname"] = "Ruta vacía"; +App::$strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; +App::$strings["Path not found."] = "Ruta no encontrada"; +App::$strings["mkdir failed."] = "mkdir ha fallado."; +App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; +App::$strings["Empty path"] = "Ruta vacía"; +App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; +App::$strings["Empty name"] = "Nombre vacío"; +App::$strings["Name too long"] = "Nombre demasiado largo"; +App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; +App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; +App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."; +App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; +App::$strings["Default Profile"] = "Perfil principal"; +App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; +App::$strings["Create New Profile"] = "Crear un nuevo perfil"; +App::$strings["Visible to everybody"] = "Visible para todos"; +App::$strings["Gender:"] = "Género:"; +App::$strings["Status:"] = "Estado:"; +App::$strings["Homepage:"] = "Página personal:"; +App::$strings["Online Now"] = "Ahora en línea"; +App::$strings["Like this channel"] = "Me gusta este canal"; +App::$strings["j F, Y"] = "j F Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Cumpleaños:"; +App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Orientación sexual:"; +App::$strings["Tags:"] = "Etiquetas:"; +App::$strings["Political Views:"] = "Posición política:"; +App::$strings["Religion:"] = "Religión:"; +App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:"; +App::$strings["Likes:"] = "Me gusta:"; +App::$strings["Dislikes:"] = "No me gusta:"; +App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; +App::$strings["My other channels:"] = "Mis otros canales:"; +App::$strings["Musical interests:"] = "Preferencias musicales:"; +App::$strings["Books, literature:"] = "Libros, literatura:"; +App::$strings["Television:"] = "Televisión:"; +App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:"; +App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; +App::$strings["Work/employment:"] = "Trabajo:"; +App::$strings["School/education:"] = "Estudios:"; +App::$strings["Like this thing"] = "Me gusta esto"; App::$strings["General Features"] = "Funcionalidades básicas"; App::$strings["Content Expiration"] = "Caducidad del contenido"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; @@ -1965,7 +2021,6 @@ App::$strings["Profile Import/Export"] = "Importar/Exportar perfil"; App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; App::$strings["Web Pages"] = "Páginas web"; App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; -App::$strings["Provide a wiki for your channel"] = ""; App::$strings["Hide Rating"] = "Ocultar las valoraciones"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares."; App::$strings["Private Notes"] = "Notas privadas"; @@ -1999,7 +2054,6 @@ App::$strings["Search by Date"] = "Buscar por fecha"; App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; App::$strings["Privacy Groups"] = "Grupos de canales"; App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales"; -App::$strings["Saved Searches"] = "Búsquedas guardadas"; App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; App::$strings["Network Personal Tab"] = "Actividad personal"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; @@ -2007,167 +2061,80 @@ App::$strings["Network New Tab"] = "Contenido nuevo"; App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; App::$strings["Affinity Tool"] = "Herramienta de afinidad"; App::$strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones"; -App::$strings["Connection Filtering"] = "Filtrado de conexiones"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; -App::$strings["Show channel suggestions"] = "Mostrar sugerencias de canales"; -App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; -App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; -App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; -App::$strings["Post Categories"] = "Categorías de entradas"; -App::$strings["Add categories to your posts"] = "Añadir categorías a sus publicaciones"; -App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; -App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"; -App::$strings["Saved Folders"] = "Carpetas guardadas"; -App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; -App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; -App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; -App::$strings["Star Posts"] = "Entradas destacadas"; -App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; -App::$strings["Tag Cloud"] = "Nube de etiquetas"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; -App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; -App::$strings["edit"] = "editar"; -App::$strings["Edit group"] = "Editar grupo"; -App::$strings["Add privacy group"] = "Añadir un grupo de canales"; -App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo"; -App::$strings["add"] = "añadir"; -App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; -App::$strings["Starts:"] = "Comienza:"; -App::$strings["Finishes:"] = "Finaliza:"; -App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; -App::$strings["Not specified"] = "Sin especificar"; -App::$strings["Needs Action"] = "Necesita de una intervención"; -App::$strings["Completed"] = "Completado/a"; -App::$strings["In Process"] = "En proceso"; -App::$strings["Cancelled"] = "Cancelado/a"; -App::$strings["Not a valid email address"] = "Dirección de correo no válida"; -App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio."; -App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; -App::$strings["An invitation is required."] = "Es obligatorio que le inviten."; -App::$strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; -App::$strings["Please enter the required information."] = "Por favor introduzca la información requerida."; -App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; -App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; -App::$strings["Registration request at %s"] = "Solicitud de registro en %s"; -App::$strings["your registration password"] = "su contraseña de registro"; -App::$strings["Registration details for %s"] = "Detalles del registro de %s"; -App::$strings["Account approved."] = "Cuenta aprobada."; -App::$strings["Registration revoked for %s"] = "Registro revocado para %s"; -App::$strings["Click here to upgrade."] = "Pulse aquí para actualizar"; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; -App::$strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; -App::$strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; -App::$strings["Channel location missing."] = "Falta la dirección del canal."; -App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; -App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; -App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; -App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; -App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; -App::$strings["Item was not found."] = "Elemento no encontrado."; -App::$strings["No source file."] = "Ningún fichero de origen"; -App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; -App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; -App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; -App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; -App::$strings["Path not available."] = "Ruta no disponible."; -App::$strings["Empty pathname"] = "Ruta vacía"; -App::$strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; -App::$strings["Path not found."] = "Ruta no encontrada"; -App::$strings["mkdir failed."] = "mkdir ha fallado."; -App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; -App::$strings["Empty path"] = "Ruta vacía"; -App::$strings["Image/photo"] = "Imagen/foto"; -App::$strings["Encrypted content"] = "Contenido cifrado"; -App::$strings["Install %s element: "] = "Instalar el elemento %s:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; -App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; -App::$strings["$1 wrote:"] = "$1 escribió:"; -App::$strings["(Unknown)"] = "(Desconocido)"; -App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; -App::$strings["Visible to you only."] = "Visible sólo para usted."; -App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; -App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que esté autenticado."; -App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; -App::$strings["Visible to all connections."] = "Visible para todas las conexiones."; -App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; -App::$strings["Visible to specific connections."] = "Visible para conexiones específicas."; -App::$strings["Privacy group is empty."] = "El grupo de canales está vacío."; -App::$strings["Privacy group: %s"] = "Grupo de canales: %s"; -App::$strings["Connection not found."] = "Conexión no encontrada"; -App::$strings["profile photo"] = "foto del perfil"; +App::$strings["Connection Filtering"] = "Filtrado de conexiones"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; +App::$strings["Show channel suggestions"] = "Mostrar sugerencias de canales"; +App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; +App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; +App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; +App::$strings["Post Categories"] = "Categorías de entradas"; +App::$strings["Add categories to your posts"] = "Añadir categorías a sus publicaciones"; +App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; +App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"; +App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; +App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; +App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; +App::$strings["Star Posts"] = "Entradas destacadas"; +App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; +App::$strings["Tag Cloud"] = "Nube de etiquetas"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; App::$strings["Embedded content"] = "Contenido incorporado"; App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; -App::$strings["System"] = "Sistema"; -App::$strings["New App"] = "Nueva aplicación (app)"; -App::$strings["Suggestions"] = "Sugerencias"; -App::$strings["See more..."] = "Ver más..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas."; -App::$strings["Add New Connection"] = "Añadir nueva conexión"; -App::$strings["Enter channel address"] = "Dirección del canal"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"; -App::$strings["Notes"] = "Notas"; -App::$strings["Remove term"] = "Eliminar término"; -App::$strings["Everything"] = "Todo"; -App::$strings["Archives"] = "Hemeroteca"; -App::$strings["Refresh"] = "Recargar"; -App::$strings["Account settings"] = "Configuración de la cuenta"; -App::$strings["Channel settings"] = "Configuración del canal"; -App::$strings["Additional features"] = "Funcionalidades"; -App::$strings["Feature/Addon settings"] = "Complementos"; -App::$strings["Display settings"] = "Ajustes de visualización"; -App::$strings["Manage locations"] = "Gestión de ubicaciones (clones) del canal"; -App::$strings["Export channel"] = "Exportar canal"; -App::$strings["Connected apps"] = "Aplicaciones (apps) conectadas"; -App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; -App::$strings["Private Mail Menu"] = "Menú de correo privado"; -App::$strings["Combined View"] = "Vista combinada"; -App::$strings["Conversations"] = "Conversaciones"; -App::$strings["Received Messages"] = "Mensajes recibidos"; -App::$strings["Sent Messages"] = "Enviar mensajes"; -App::$strings["No messages."] = "Sin mensajes."; -App::$strings["Delete conversation"] = "Eliminar conversación"; -App::$strings["Events Tools"] = "Gestión de eventos"; -App::$strings["Export Calendar"] = "Exportar el calendario"; -App::$strings["Import Calendar"] = "Importar un calendario"; -App::$strings["Overview"] = "Resumen"; -App::$strings["Chat Members"] = "Miembros del chat"; -App::$strings["Wiki List"] = "Lista de wikis"; -App::$strings["Wiki Pages"] = "Páginas del wiki"; -App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; -App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; -App::$strings["photo/image"] = "foto/imagen"; -App::$strings["Click to show more"] = "Hacer clic para ver más"; -App::$strings["Rating Tools"] = "Valoraciones"; -App::$strings["Rate Me"] = "Valorar este canal"; -App::$strings["View Ratings"] = "Mostrar las valoraciones"; -App::$strings["Forums"] = "Foros"; -App::$strings["Tasks"] = "Tareas"; -App::$strings["Documentation"] = "Documentación"; -App::$strings["Project/Site Information"] = "Información sobre el proyecto o sitio"; -App::$strings["For Members"] = "Para los miembros"; -App::$strings["For Administrators"] = "Para los administradores"; -App::$strings["For Developers"] = "Para los desarrolladores"; -App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; -App::$strings["Inspect queue"] = "Examinar la cola"; -App::$strings["DB updates"] = "Actualizaciones de la base de datos"; -App::$strings["Plugin Features"] = "Extensiones"; -App::$strings[" and "] = " y "; -App::$strings["public profile"] = "el perfil público"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiado %2\$s a “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s."; -App::$strings["Attachments:"] = "Ficheros adjuntos:"; -App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; +App::$strings["Who can see this?"] = "¿Quién puede ver esto?"; +App::$strings["Custom selection"] = "Selección personalizada"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"."; +App::$strings["Show"] = "Mostrar"; +App::$strings["Don't show"] = "No mostrar"; +App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
Estos permisos establecen quién está autorizado para ver el mensaje."; +App::$strings["Logged out."] = "Desconectado/a."; +App::$strings["Failed authentication"] = "Autenticación fallida."; +App::$strings["Birthday"] = "Cumpleaños"; +App::$strings["Age: "] = "Edad:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; +App::$strings["never"] = "nunca"; +App::$strings["less than a second ago"] = "hace un instante"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "año", + 1 => "años", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "mes", + 1 => "meses", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "semana", + 1 => "semanas", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "día", + 1 => "días", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "hora", + 1 => "horas", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuto", + 1 => "minutos", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "segundo", + 1 => "segundos", +); +App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; +App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; +App::$strings["edit"] = "editar"; +App::$strings["Edit group"] = "Editar grupo"; +App::$strings["Add privacy group"] = "Añadir un grupo de canales"; +App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo"; App::$strings["Delete this item?"] = "¿Borrar este elemento?"; -App::$strings["%s show less"] = ""; -App::$strings["%s expand"] = ""; -App::$strings["%s collapse"] = ""; +App::$strings["[-] show less"] = "[-] mostrar menos"; +App::$strings["[+] expand"] = "[+] expandir"; +App::$strings["[-] collapse"] = "[-] contraer"; App::$strings["Password too short"] = "Contraseña demasiado corta"; App::$strings["Passwords do not match"] = "Las contraseñas no coinciden"; App::$strings["everybody"] = "cualquiera"; @@ -2222,78 +2189,72 @@ App::$strings["__ctx:calendar__ month"] = "mes"; App::$strings["__ctx:calendar__ week"] = "semana"; App::$strings["__ctx:calendar__ day"] = "día"; App::$strings["__ctx:calendar__ All day"] = "Todos los días"; -App::$strings["%d invitation available"] = array( - 0 => "%d invitación pendiente", - 1 => "%d invitaciones disponibles", -); -App::$strings["Find Channels"] = "Encontrar canales"; -App::$strings["Enter name or interest"] = "Introducir nombre o interés"; -App::$strings["Connect/Follow"] = "Conectar/Seguir"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: José Fernández, Pesca"; -App::$strings["Random Profile"] = "Perfil aleatorio"; -App::$strings["Invite Friends"] = "Invitar a amigos"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Ejemplo avanzado: nombre=juan y país=españa"; -App::$strings["%d connection in common"] = array( - 0 => "%d conexión en común", - 1 => "%d conexiones en común", -); -App::$strings["show more"] = "mostrar más"; -App::$strings["Directory Options"] = "Opciones del directorio"; -App::$strings["Safe Mode"] = "Modo seguro"; -App::$strings["Public Forums Only"] = "Solo foros públicos"; -App::$strings["This Website Only"] = "Solo este sitio web"; -App::$strings["No recipient provided."] = "No se ha especificado ningún destinatario."; -App::$strings["[no subject]"] = "[sin asunto]"; -App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; -App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; -App::$strings["Who can see this?"] = "¿Quién puede ver esto?"; -App::$strings["Custom selection"] = "Selección personalizada"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"."; -App::$strings["Show"] = "Mostrar"; -App::$strings["Don't show"] = "No mostrar"; -App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
Estos permisos establecen quién está autorizado para ver el mensaje."; -App::$strings["Birthday"] = "Cumpleaños"; -App::$strings["Age: "] = "Edad:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; -App::$strings["never"] = "nunca"; -App::$strings["less than a second ago"] = "hace un instante"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "año", - 1 => "años", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "mes", - 1 => "meses", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "semana", - 1 => "semanas", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "día", - 1 => "días", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "hora", - 1 => "horas", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuto", - 1 => "minutos", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "segundo", - 1 => "segundos", -); -App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; -App::$strings["Public Timeline"] = "Cronología pública"; +App::$strings["view full size"] = "Ver en el tamaño original"; +App::$strings["No Subject"] = "Sin asunto"; +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 imagen excede el límite de %lu bytes del sitio"; +App::$strings["Image file is empty."] = "El fichero de imagen está vacío. "; +App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; +App::$strings["a new photo"] = "una nueva foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s"; +App::$strings["Upload New Photos"] = "Subir nuevas fotos"; App::$strings["Invalid data packet"] = "Paquete de datos no válido"; App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; App::$strings["invalid target signature"] = "La firma recibida no es válida"; +App::$strings["New Page"] = "Nueva página"; +App::$strings["Title"] = "Título"; +App::$strings["Can view my normal stream and posts"] = "Pueden verse mi actividad y publicaciones normales"; +App::$strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado."; +App::$strings["Can view my connections"] = "Pueden verse mis conexiones"; +App::$strings["Can view my file storage and photos"] = "Pueden verse mi repositorio de ficheros y mis fotos"; +App::$strings["Can view my webpages"] = "Pueden verse mis páginas web"; +App::$strings["Can send me their channel stream and posts"] = "Me pueden enviar sus entradas y contenidos del canal"; +App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)"; +App::$strings["Can comment on or like my posts"] = "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'."; +App::$strings["Can send me private mail messages"] = "Se me pueden enviar mensajes privados"; +App::$strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gusta/no me gusta"; +App::$strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención"; +App::$strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foros de discusión o grupos"; +App::$strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)"; +App::$strings["Can write to my file storage and photos"] = "Puede escribirse en mi repositorio de ficheros y fotos"; +App::$strings["Can edit my webpages"] = "Pueden editarse mis páginas web"; +App::$strings["Can source my public posts in derived channels"] = "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas"; +App::$strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo."; +App::$strings["Social Networking"] = "Redes sociales"; +App::$strings["Social - Mostly Public"] = "Social - Público en su mayor parte"; +App::$strings["Social - Restricted"] = "Social - Restringido"; +App::$strings["Social - Private"] = "Social - Privado"; +App::$strings["Community Forum"] = "Foro de discusión"; +App::$strings["Forum - Mostly Public"] = "Foro - Público en su mayor parte"; +App::$strings["Forum - Restricted"] = "Foro - Restringido"; +App::$strings["Forum - Private"] = "Foro - Privado"; +App::$strings["Feed Republish"] = "Republicar un \"feed\""; +App::$strings["Feed - Mostly Public"] = "Feed - Público en su mayor parte"; +App::$strings["Feed - Restricted"] = "Feed - Restringido"; +App::$strings["Special Purpose"] = "Propósito especial"; +App::$strings["Special - Celebrity/Soapbox"] = "Especial - Celebridad / Tribuna improvisada"; +App::$strings["Special - Group Repository"] = "Especial - Repositorio de grupo"; +App::$strings["Custom/Expert Mode"] = "Modo personalizado/experto"; +App::$strings[" and "] = " y "; +App::$strings["public profile"] = "el perfil público"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiado %2\$s a “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s."; +App::$strings["Attachments:"] = "Ficheros adjuntos:"; +App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; App::$strings["Focus (Hubzilla default)"] = "Focus (predefinido)"; App::$strings["Theme settings"] = "Ajustes del tema"; App::$strings["Select scheme"] = "Elegir un esquema"; @@ -2333,7 +2294,6 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "La actualización %s ha fallado. Mire el informe de errores."; App::$strings["Update Error at %s"] = "Error de actualización en %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla"; -App::$strings["Login/Email"] = ""; App::$strings["Password"] = "Contraseña"; App::$strings["Remember me"] = "Recordarme"; App::$strings["Forgot your password?"] = "¿Olvidó su contraseña?"; diff --git a/view/fr/hmessages.po b/view/fr/hmessages.po index 0fb50f0ca..73d711700 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-07-22 00:02-0700\n" -"PO-Revision-Date: 2016-07-25 08:54+0000\n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" +"PO-Revision-Date: 2016-06-10 09:14+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: French (http://www.transifex.com/Friendica/red-matrix/language/fr/)\n" "MIME-Version: 1.0\n" @@ -19,156 +19,11 @@ 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:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 msgid "Collection" msgstr "Groupe de contacts" @@ -192,17 +47,16 @@ msgstr "Calendrier - Messages entrants" msgid "Schedule Outbox" msgstr "Calendrier - Messages sortants" -#: ../../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 "Inconnu" #: ../../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 "Fichiers" @@ -215,23 +69,22 @@ msgid "Shared" msgstr "Partagé" #: ../../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 "Créer" #: ../../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 "Envoyer" #: ../../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 "Nom" @@ -241,7 +94,7 @@ msgid "Type" msgstr "Type" #: ../../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 "Taille" @@ -250,32 +103,34 @@ msgstr "Taille" msgid "Last Modified" msgstr "Modifié le" -#: ../../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 "Modifier" -#: ../../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 "Supprimer" @@ -301,73 +156,74 @@ msgstr "Nouveau dossier" msgid "Upload file" msgstr "Téléverser un fichier" -#: ../../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 "Accès refusé" -#: ../../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 "Permission refusée." @@ -375,9 +231,9 @@ msgstr "Permission refusée." msgid "Not Found" msgstr "Introuvable" -#: ../../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 "Page introuvable." @@ -393,13 +249,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/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 "Profil demandé non disponible." @@ -407,366 +263,615 @@ 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/Chatsvc.php:117 -msgid "Away" -msgstr "Absent" - -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" -msgstr "En ligne" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nom du Bloc" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Impossible d'accéder aux détails du contact." +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Blocs" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Impossible de localiser le profil sélectionné." +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Titre du bloc" -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "Connection updated." -msgstr "Contact mis à jour." +#: ../../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/Connedit.php:250 -msgid "Failed to update connection record." -msgstr "Impossible de mettre à jour les détails du contact." +#: ../../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/Connedit.php:300 -msgid "is now connected to" -msgstr "est maintenant connecté avec" +#: ../../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/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:1708 -msgid "No" -msgstr "Non" +#: ../../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/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:1708 -msgid "Yes" -msgstr "Oui" +#: ../../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/Connedit.php:435 -msgid "Could not access address book record." -msgstr "Impossible d'accéder aux détails du carnet d'adresses." +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permissions refusées." -#: ../../Zotlabs/Module/Connedit.php:455 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Actualisation impossible - le canal est indisponible." +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l, F j" -#: ../../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/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Lien vers la Source" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Connection has been removed." -msgstr "Le contact a été supprimé." +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Modifier l'événement" -#: ../../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/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Créer un événement" -#: ../../Zotlabs/Module/Connedit.php:552 -#, php-format -msgid "View %s's profile" -msgstr "Voir le profil de %s" +#: ../../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/Connedit.php:556 -msgid "Refresh Permissions" -msgstr "Actualiser les autorisations" +#: ../../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/Connedit.php:559 -msgid "Fetch updated permissions" -msgstr "Récupérer les autorisations les plus récentes" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Export" -#: ../../Zotlabs/Module/Connedit.php:563 -msgid "Recent Activity" -msgstr "Activité récente" +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Import" -#: ../../Zotlabs/Module/Connedit.php:566 -msgid "View recent posts and comments" -msgstr "Voir les publications et commentaires récents" +#: ../../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/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Débloquer" +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Aujourd'hui" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Bloquer" +#: ../../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/Connedit.php:573 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Bloquer ou débloquer toute communication avec ce contact" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "This connection is blocked!" -msgstr "Ce contact est bloqué !" +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Unignore" -msgstr "Ne plus ignorer" +#: ../../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/Connedit.php:578 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Ignorer" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Salon introuvable" -#: ../../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/Chat.php:197 +msgid "Leave Room" +msgstr "Quitter le salon" -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "This connection is ignored!" -msgstr "Ce contact est ignoré !" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Unarchive" -msgstr "Désarchiver" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Je suis absent en ce moment" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Archive" -msgstr "Archiver" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Je suis en ligne" -#: ../../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/Chat.php:202 +msgid "Bookmark this room" +msgstr "Marquer ce salon comme favori" -#: ../../Zotlabs/Module/Connedit.php:590 -msgid "This connection is archived!" -msgstr "Ce contact est archivé !" +#: ../../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 :" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Unhide" -msgstr "Ne plus cacher" +#: ../../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/Connedit.php:594 +#: ../../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" + +#: ../../Zotlabs/Module/Chatsvc.php:122 +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 :" + +#: ../../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 :" + +#: ../../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." + +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Impossible de localiser le profil sélectionné." + +#: ../../Zotlabs/Module/Connedit.php:227 +msgid "Connection updated." +msgstr "Contact mis à jour." + +#: ../../Zotlabs/Module/Connedit.php:229 +msgid "Failed to update connection record." +msgstr "Impossible de mettre à jour les détails du contact." + +#: ../../Zotlabs/Module/Connedit.php:276 +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 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "No" +msgstr "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 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "Yes" +msgstr "Oui" + +#: ../../Zotlabs/Module/Connedit.php:411 +msgid "Could not access address book record." +msgstr "Impossible d'accéder aux détails du carnet d'adresses." + +#: ../../Zotlabs/Module/Connedit.php:425 +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 +msgid "Unable to set address book parameters." +msgstr "Impossible de régler les paramètres du carnet d'adresses." + +#: ../../Zotlabs/Module/Connedit.php:503 +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 +msgid "View Profile" +msgstr "Voir le profil" + +#: ../../Zotlabs/Module/Connedit.php:522 +#, php-format +msgid "View %s's profile" +msgstr "Voir le profil de %s" + +#: ../../Zotlabs/Module/Connedit.php:526 +msgid "Refresh Permissions" +msgstr "Actualiser les autorisations" + +#: ../../Zotlabs/Module/Connedit.php:529 +msgid "Fetch updated permissions" +msgstr "Récupérer les autorisations les plus récentes" + +#: ../../Zotlabs/Module/Connedit.php:533 +msgid "Recent Activity" +msgstr "Activité récente" + +#: ../../Zotlabs/Module/Connedit.php:536 +msgid "View recent posts and comments" +msgstr "Voir les publications et commentaires récents" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +msgid "Unblock" +msgstr "Débloquer" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +msgid "Block" +msgstr "Bloquer" + +#: ../../Zotlabs/Module/Connedit.php:543 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Bloquer ou débloquer toute communication avec ce contact" + +#: ../../Zotlabs/Module/Connedit.php:544 +msgid "This connection is blocked!" +msgstr "Ce contact est bloqué !" + +#: ../../Zotlabs/Module/Connedit.php:548 +msgid "Unignore" +msgstr "Ne plus ignorer" + +#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" +msgstr "Ignorer" + +#: ../../Zotlabs/Module/Connedit.php:551 +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 +msgid "This connection is ignored!" +msgstr "Ce contact est ignoré !" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Unarchive" +msgstr "Désarchiver" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Archive" +msgstr "Archiver" + +#: ../../Zotlabs/Module/Connedit.php:559 +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 +msgid "This connection is archived!" +msgstr "Ce contact est archivé !" + +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Unhide" +msgstr "Ne plus cacher" + +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Hide" msgstr "Cacher" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:567 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:598 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "This connection is hidden!" msgstr "Ce contact est caché !" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Delete this connection" msgstr "Supprimer ce contact" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 msgid "Me" msgstr "Moi" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 msgid "Family" msgstr "Famille" -#: ../../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 "Amis" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Connaissances" -#: ../../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 "Tous" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Approve this connection" msgstr "Autoriser ce contact" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Accept connection to allow communication" msgstr "Accepter le contact pour permettre la communication" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:659 msgid "Set Affinity" msgstr "Définir le degré d'affinité" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:662 msgid "Set Profile" msgstr "Définir le profil" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity & Profile" msgstr "Définir le degré d'affinité et le profil" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:698 msgid "none" msgstr "Aucun" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 msgid "Connection Default Permissions" msgstr "Autorisations par défaut des contacts" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 #, php-format msgid "Connection: %s" msgstr "Contact : %s" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Apply these permissions automatically" msgstr "Appliquer ces permissions automatiquement" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Connection requests will be approved without your interaction" msgstr "Les demandes de contact seront approuvées automatiquement" -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:705 msgid "This connection's primary address is" msgstr "L'adresse principale de ce contact est" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Available locations:" msgstr "Emplacements disponibles :" -#: ../../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 "Les permissions indiquées sur cette page seront appliquées à tous vos nouveaux contacts." -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "Connection Tools" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "Slide to adjust your degree of friendship" msgstr "Faites glisser pour ajuster votre proximité avec le contact" -#: ../../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 "Evaluation" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:715 msgid "Slide to adjust your rating" msgstr "Faîtes glisser pour ajuster votre note" -#: ../../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 "Explication facultative de votre évaluation" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Custom Filter" msgstr "Filtre personnalisé" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Only import posts with this text" msgstr "N'importer que les publications comprenant ce texte" -#: ../../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 "un mot par ligne ou #étiquettes ou /motif/ ou lang=xx, laisser vide pour importer toutes les publications" -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:720 msgid "Do not import posts with this text" msgstr "Ne pas importer les publications comprenant ce texte" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "This information is public!" msgstr "Cette information est publique !" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:727 msgid "Connection Pending Approval" msgstr "Contact en attente d'approbation" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "inherited" msgstr "héritée" -#: ../../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 +#: ../../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 "Merci de choisir le profil que vous souhaitez montrer quand %s visite votre profil de manière authentifiée." -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:734 msgid "Their Settings" msgstr "Leurs paramètres" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:735 msgid "My Settings" msgstr "Mes paramètres" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Individual Permissions" msgstr "Permissions individuelles" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -774,7 +879,7 @@ msgid "" " settings here." msgstr "Certaines permissions peuvent être héritées de vos paramètres de confidentialité 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:786 +#: ../../Zotlabs/Module/Connedit.php:739 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -782,146 +887,42 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Certaines permissions peuvent être héritées de vos paramètres de confidentialité 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:787 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Last update:" msgstr "Dernière mise à jour :" -#: ../../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 "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/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d évaluation" +msgstr[1] "%d évaluations" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Nom de famille" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Sexe/genre :" -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Surnom" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "État :" -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nom complet" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Site web :" -#: ../../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 :" - -#: ../../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" -msgid_plural "%d ratings" -msgstr[0] "%d évaluation" -msgstr[1] "%d évaluations" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Sexe/genre :" - -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "État :" - -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Site web :" - -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 msgid "Age:" msgstr "Age :" -#: ../../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 "Emplacement :" @@ -930,18 +931,18 @@ msgstr "Emplacement :" msgid "Description:" msgstr "Description :" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 msgid "Hometown:" msgstr "Ville natale :" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 msgid "About:" msgstr "À propos :" #: ../../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 "Ajouter/Suivre" @@ -1017,406 +1018,122 @@ 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/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continuer" +#: ../../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:90 -msgid "Premium Channel Setup" -msgstr "Configuration du canal VIP" +#: ../../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 "Élément introuvable" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Activer les restrictions liées au canal VIP" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Titre (facultatif)" -#: ../../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/Editblock.php:133 +msgid "Edit Block" +msgstr "Modifier le bloc" -#: ../../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 :" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Pas de canal." -#: ../../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 :" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Contacts en commun" -#: ../../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/Common.php:48 +msgid "No connections in common." +msgstr "Pas de contacts en commun." -#: ../../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/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Bloqué(e)" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canal VIP ou restreint" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignoré(e)" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Entrées du calendrier importées." +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Caché" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Aucune entrée du calendrier trouvée." +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archivé" -#: ../../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/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1535 +msgid "New" +msgstr "Nouveautés" -#: ../../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/Connections.php:138 +msgid "New Connections" +msgstr "Nouveaux contacts" -#: ../../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/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Voir les (nouveaux) contacts en attente" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Événement introuvable." +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Tous les contacts" -#: ../../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/Connections.php:148 +msgid "Show all connections" +msgstr "Voir tous les contacts" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Modifier le titre de l'événement" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Ne montrer que les contacts bloqués" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Titre de l'événement" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Ne montrer que les contacts ignorés" -#: ../../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/Connections.php:178 +msgid "Only show archived connections" +msgstr "Ne montrer que les contacts archivés" -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Catégories (séparées par des virgules)" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Ne montrer que les contacts cachés" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Modifier la catégorie" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "En attente de validation" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Catégorie" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Modifier la date et l'heure de début" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Modifier le contact" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Date et heure de début" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Supprimer le contact" -#: ../../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/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../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/Editpost.php:35 -msgid "Item is not editable" -msgstr "Elément non modifiable" - -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Modifier la publication" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Photos" - -#: ../../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/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 :" - -#: ../../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 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Bloqué(e)" - -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignoré(e)" - -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Caché" - -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archivé" - -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 -msgid "New" -msgstr "Nouveautés" - -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nouveaux contacts" - -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Voir les (nouveaux) contacts en attente" - -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Tous les contacts" - -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Voir tous les contacts" - -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Ne montrer que les contacts bloqués" - -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Ne montrer que les contacts ignorés" - -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Ne montrer que les contacts archivés" - -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Ne montrer que les contacts cachés" - -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "En attente de validation" - -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Modifier le contact" - -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Supprimer le contact" - -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Adresse du canal" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Adresse du canal" #: ../../Zotlabs/Module/Connections.php:267 msgid "Network" @@ -1447,15 +1164,15 @@ msgstr "Ignorer le contact" msgid "Recent activity" msgstr "Activité récente" -#: ../../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 "Contacts" #: ../../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 "Recherche" @@ -1468,7 +1185,7 @@ msgid "Connections search" msgstr "Chercher des contacts" #: ../../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'image a été téléversée, mais le recadrage a échoué." @@ -1478,66 +1195,66 @@ msgid "Cover Photos" msgstr "Photos de couverture" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 +#: ../../Zotlabs/Module/Profile_photo.php:133 msgid "Image resize failed." msgstr "Le redimensionnement de l'image a échoué." #: ../../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 "Impossible de traiter l'image" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 +#: ../../Zotlabs/Module/Profile_photo.php:217 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:242 +#: ../../Zotlabs/Module/Profile_photo.php:236 msgid "Unable to process image." msgstr "Impossible de traîter l'image." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 msgid "female" msgstr "femme" -#: ../../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 "%1$s a mis à jour son %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 msgid "male" msgstr "homme" -#: ../../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 "%1$s a mis à jour son %2$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 "%1$s a mis a jour sa %2$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 "Photo principale" #: ../../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 "Photo inaccessible." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:365 msgid "Upload File:" msgstr "Téléverser fichier :" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:366 msgid "Select a profile:" msgstr "Choisir un profil :" @@ -1546,256 +1263,315 @@ msgid "Upload Cover Photo" msgstr "Téléverser une photo de couverture" #: ../../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 "ou" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "skip this step" msgstr "passer cette étape" #: ../../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 "choisir une photo dans vos albums" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 +#: ../../Zotlabs/Module/Profile_photo.php:390 msgid "Crop Image" msgstr "Recadrer l'image" #: ../../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 "Merci d'ajuster le cadre pour une visualisation optimale." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:393 msgid "Done Editing" msgstr "J'ai terminé" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "pages web" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Elément non modifiable" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "bloquer" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" +msgstr "Modifier la publication" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "mise en page" +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "Entrées du calendrier importées." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "Aucune entrée du calendrier trouvée." -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "Elément %s installé" +#: ../../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/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "L'installation de l'élément %s a échoué" +#: ../../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/Cal.php:69 -msgid "Permissions denied." -msgstr "Permissions refusées." +#: ../../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/Cal.php:337 -msgid "Import" -msgstr "Import" +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "Événement introuvable." -#: ../../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: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/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:449 +msgid "Edit event title" +msgstr "Modifier le titre de l'événement" -#: ../../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:449 +msgid "Event title" +msgstr "Titre de l'événement" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Salon introuvable" +#: ../../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/Chat.php:197 -msgid "Leave Room" -msgstr "Quitter le salon" +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Catégories (séparées par des virgules)" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Modifier la catégorie" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Je suis absent en ce moment" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Catégorie" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Je suis en ligne" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Modifier la date et l'heure de début" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Marquer ce salon comme favori" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Date et heure de début" -#: ../../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 :" +#: ../../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/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:458 +msgid "Edit finish date and time" +msgstr "Modifier la date et l'heure de fin" -#: ../../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:458 +msgid "Finish date and time" +msgstr "Date et heure de fin" -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "" +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "Ajuster au fuseau horaire du visiteur" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nouveau salon de discussion" +#: ../../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/Chat.php:233 -msgid "Chatroom name" -msgstr "" +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" +msgstr "Modifier la description" -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Expiration des discussions (en minutes)" +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Description" -#: ../../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/Events.php:464 +msgid "Edit Location" +msgstr "Modifier l'emplacement" -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Salons de %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 "Emplacement" -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "" +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Partager cet événement" -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "" +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 +#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 +msgid "Preview" +msgstr "Aperçu" -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "" +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Gérer les autorisations" -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "" +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" +msgstr "Options avancées" + +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "Modifier l'événement" + +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "Supprimer l'événement" + +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "calendrier" + +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" +msgstr "Événement supprimé" + +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" +msgstr "Impossible de supprimer l'événement" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:92 ../../include/conversation.php:1632 +msgid "Photos" +msgstr "Photos" + +#: ../../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/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/Dreport.php:44 +#: ../../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/Filer.php:52 +msgid "Save to Folder:" +msgstr "Classer dans le dossier :" + +#: ../../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:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Enregistrer" + +#: ../../Zotlabs/Module/Dreport.php:27 msgid "Invalid message" msgstr "Message non valide" -#: ../../Zotlabs/Module/Dreport.php:76 +#: ../../Zotlabs/Module/Dreport.php:59 msgid "no results" msgstr "aucun résultat" -#: ../../Zotlabs/Module/Dreport.php:91 +#: ../../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 msgid "channel sync processed" msgstr "Synchro de canal effectuée" -#: ../../Zotlabs/Module/Dreport.php:95 +#: ../../Zotlabs/Module/Dreport.php:82 msgid "queued" msgstr "mis dans la file d'attente" -#: ../../Zotlabs/Module/Dreport.php:99 +#: ../../Zotlabs/Module/Dreport.php:86 msgid "posted" msgstr "publié" -#: ../../Zotlabs/Module/Dreport.php:103 +#: ../../Zotlabs/Module/Dreport.php:90 msgid "accepted for delivery" msgstr "accepté pour la distribution" -#: ../../Zotlabs/Module/Dreport.php:107 +#: ../../Zotlabs/Module/Dreport.php:94 msgid "updated" msgstr "mis à jour" -#: ../../Zotlabs/Module/Dreport.php:110 +#: ../../Zotlabs/Module/Dreport.php:97 msgid "update ignored" msgstr "mise à jour ignorée" -#: ../../Zotlabs/Module/Dreport.php:113 +#: ../../Zotlabs/Module/Dreport.php:100 msgid "permission denied" msgstr "permission refusée" -#: ../../Zotlabs/Module/Dreport.php:117 +#: ../../Zotlabs/Module/Dreport.php:104 msgid "recipient not found" msgstr "destinataire introuvable" -#: ../../Zotlabs/Module/Dreport.php:120 +#: ../../Zotlabs/Module/Dreport.php:107 msgid "mail recalled" msgstr "courriel rappelé" -#: ../../Zotlabs/Module/Dreport.php:123 +#: ../../Zotlabs/Module/Dreport.php:110 msgid "duplicate mail received" msgstr "courriel reçu en double" -#: ../../Zotlabs/Module/Dreport.php:126 +#: ../../Zotlabs/Module/Dreport.php:113 msgid "mail delivered" msgstr "courriel distribué" -#: ../../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 +#: ../../Zotlabs/Module/Editlayout.php:126 +#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 msgid "Layout Name" msgstr "Nom de la mise en page" -#: ../../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 "Description de la mise en page (facultatif)" -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editlayout.php:135 msgid "Edit Layout" msgstr "Modifier la mise en page" -#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:143 msgid "Page link" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 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éé." @@ -1805,7 +1581,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:3902 +#: ../../include/items.php:3893 msgid "Privacy group not found." msgstr "Groupe d'accès introuvable." @@ -1849,61 +1625,35 @@ 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/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "Application installée." - -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Erreur de l'application - Malformée." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Partager du contenu depuis Firefox avec $Projectname" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Imbriquer le code" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activer le connecteur $Projectname pour Firefox" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modifier l'application" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Autoriser l'application à se connecter" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Créer une application" +#: ../../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é :" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nom de l'application" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Merci de vous identifier pour continuer." -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Emplacement (URL) de l'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: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" -msgstr "Chercher dans la documentation" +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Chercher dans la documentation" #: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 #: ../../Zotlabs/Module/Help.php:79 @@ -1911,8 +1661,8 @@ msgid "Help:" msgstr "Aide :" #: ../../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 "Aide" @@ -1920,5487 +1670,5098 @@ msgstr "Aide" msgid "$Projectname Documentation" msgstr "Documentation $Projectname" -#: ../../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 :" - -#: ../../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 +#: ../../Zotlabs/Module/Filestorage.php:88 msgid "Permission Denied." msgstr "Permission refusée." -#: ../../Zotlabs/Module/Filestorage.php:103 +#: ../../Zotlabs/Module/Filestorage.php:104 msgid "File not found." msgstr "Fichier introuvable." -#: ../../Zotlabs/Module/Filestorage.php:146 +#: ../../Zotlabs/Module/Filestorage.php:147 msgid "Edit file permissions" msgstr "Modifier les autorisations d'accès au fichier" -#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:156 msgid "Set/edit permissions" msgstr "Définir/modifier les autorisations" -#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:157 msgid "Include all files and sub folders" msgstr "Inclure tous fichiers et sous-répertoires" -#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:158 msgid "Return to file list" msgstr "Retourner à la liste des fichiers" -#: ../../Zotlabs/Module/Filestorage.php:159 +#: ../../Zotlabs/Module/Filestorage.php:160 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:160 +#: ../../Zotlabs/Module/Filestorage.php:161 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:162 +#: ../../Zotlabs/Module/Filestorage.php:163 msgid "Share this file" msgstr "Partager ce fichier" -#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Module/Filestorage.php:164 msgid "Show URL to this file" msgstr "Montrer l'URL de ce fichier" -#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Filestorage.php:165 msgid "Notify your contacts about this file" msgstr "Notifier vos contacts à propos de ce fichier" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 -msgid "Layouts" -msgstr "Mises-en-page" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Applications" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Aide sur le langage de description de page Comanche" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Élément indisponible." -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Description de la mise en page" +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Votre forfait n'autorise que %d canaux." -#: ../../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/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Rien à importer." -#: ../../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/Import.php:94 ../../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/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/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Le fichier importé est vide." -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Télécharger le fichier PDL" +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Attention : les versions de bases de données diffèrent de %1$d mises à jour." -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Aime/n'aime pas" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." +msgstr "Canal cloné non trouvé. Echec de l'import." -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Cette action est réservée aux membres." +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Pas de canal. Echec de l'import." -#: ../../Zotlabs/Module/Like.php:25 +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "L'import est terminé." + +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." +msgstr "Vous devez vous connecter pour utiliser cette fonctionnalité." + +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Importation de canal" + +#: ../../Zotlabs/Module/Import.php:538 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "S'il vous plait, identifiez vous avec votre identifant de $Projectname ou inscrivez vous comme nouveau membre de $Projectname pour continuer." +"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/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Requête invalide." +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Fichier à envoyer" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "canal" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "Ou fournissez les détails de l'ancien serveur/hub" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "chose" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Votre ancienne identité (zyx@exemple.com)" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Canal indisponible." +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Votre ancienne adresse de courriel" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Action précédente annulée." +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "Votre ancien mot de passe" -#: ../../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/Import.php:544 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "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/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 -msgid "status" -msgstr "état" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Faire de ce hub mon emplacement primaire" -#: ../../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/Import.php:546 +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/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/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 "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/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/Item.php:178 +msgid "Unable to locate original post." +msgstr "Impossible de localiser la publication initiale." -#: ../../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/Item.php:427 +msgid "Empty post discarded." +msgstr "Publication vide annulée." -#: ../../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/Item.php:467 +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/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/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "Publication en doublon supprimée." + +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Erreur système. Publication non sauvegardée." -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Item.php:1241 +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 #, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s ne participe pas à %3$s de %2$s" +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/Like.php:433 +#: ../../Zotlabs/Module/Item.php:1255 #, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s participe peut-être à %3$s de %2$s" +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Vous avez atteint votre limite de %1$.0f pages web." -#: ../../Zotlabs/Module/Like.php:536 -msgid "Action completed." -msgstr "Action terminée." +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +msgid "Layouts" +msgstr "Mises-en-page" -#: ../../Zotlabs/Module/Like.php:537 -msgid "Thank you." -msgstr "Merci." +#: ../../Zotlabs/Module/Layouts.php:183 +msgid "Comanche page description language help" +msgstr "Aide sur le langage de description de page Comanche" -#: ../../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/Layouts.php:187 +msgid "Layout Description" +msgstr "Description de la mise en page" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profil supprimé." +#: ../../Zotlabs/Module/Layouts.php:192 +msgid "Download PDL file" +msgstr "Télécharger le fichier PDL" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profil-" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Nouveau profil créé." +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenue sur %s" -#: ../../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/Id.php:13 +msgid "First Name" +msgstr "Prénom" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Le nom du profil est obligatoire." +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Nom de famille" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Statut marital" +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Surnom" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Partenaire amoureux" +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nom complet" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Aime" +#: ../../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/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "N'aime pas" +#: ../../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/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Travail/Occupation" +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Photo de profil 16px" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religion/Croyance" +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Photo de profil 32px" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Opinions politiques" +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Photo de profil 48px" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Préférences sexuelle" +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Photo de profil 64px" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Site Internet" +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Photo de profil 80px" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Centres d'intérêt" +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Photo de profil 128px" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Fuseau horaire" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profil mis à jour." +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "URL de mon site Internet :" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "" +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" +msgstr "Langue" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Modifier les détails du profil" +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Année de naissance" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Voir ce profil" +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Mois de naissance" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 -msgid "Edit visibility" -msgstr "Changer la visibilité" +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Jour de naissance" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "" +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Date de naissance" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "" +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Sexe" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 -msgid "Change profile photo" -msgstr "Changer la photo du profil" +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Homme" -#: ../../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/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Femme" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Cloner ce profil" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pages web" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Supprimer ce profil" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloquer" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Ajouter des éléments de profil" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "mise en page" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Me concernant" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "" +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "Elément %s installé" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Divers" +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "L'installation de l'élément %s a échoué" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importer le profil à partir d'un fichier" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Aime/n'aime pas" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Exporter le profil vers un fichier." +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Cette action est réservée aux membres." -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "S'il vous plait, identifiez vous avec votre identifant de $Projectname ou inscrivez vous comme nouveau membre de $Projectname pour continuer." -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Requête invalide." -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "canal" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "chose" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Ceci est votre profil par défaut." +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Canal indisponible." -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Action précédente annulée." -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Titre/description" +#: ../../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/Profiles.php:717 -msgid "Street address" -msgstr "" +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 +msgid "status" +msgstr "état" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Ville" +#: ../../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/Profiles.php:719 -msgid "Region/State" -msgstr "Région" +#: ../../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/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "" +#: ../../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/Profiles.php:721 -msgid "Country" -msgstr "Pays" +#: ../../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/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 : marie123, Marie Deschamps, marie@exemple.com" +#: ../../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/Profiles.php:727 -msgid "Since (date)" -msgstr "" +#: ../../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/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "" +#: ../../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/Profiles.php:732 -msgid "Hometown" -msgstr "Ville de naissance" +#: ../../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/Profiles.php:733 -msgid "Political views" -msgstr "" +#: ../../Zotlabs/Module/Like.php:537 +msgid "Action completed." +msgstr "Action terminée." -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Thank you." +msgstr "Merci." -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "" +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "L'import est terminé." -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Exemple : escrime photographie modélisme" +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importer" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Goûts musicaux" +#: ../../Zotlabs/Module/Import_items.php:118 +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." -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Livres, littérature" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Limite du nombre total d'invitation dépassée." -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Télévision" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : adresse courriel invalide." -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Rejoignez-nous sur $Projectname" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Loisirs/Centres d'intêret" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite d'invitations dépassée. Merci de contacter l'administration de votre site." -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Échec de distribution du message." -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d message envoyé." +msgstr[1] "%d messages envoyés." -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Vous ne disposez plus d'aucune invitation" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Mes autres canaux" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Envoyer des invitations" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 -msgid "Profile Image" -msgstr "Image du profil" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Entrez les adresses de courriel, une par ligne :" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 -msgid "Edit Profiles" -msgstr "Modifier les profils" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Votre message :" -#: ../../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/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Rejoignez ma communauté sur $Projectname." -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Rien à importer." +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Vous devrez fournir le code suivant :" -#: ../../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/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Enregistrez-vous sur n'importe quel serveur $Projectname (ils sont tous inter-connectés)" -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Le fichier importé est vide." +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Saisissez l'adresse de mon canal $Projectname dans la barre de recherche du site." -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Attention : les versions de bases de données diffèrent de %1$d mises à jour." +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "ou rendez-vous sur" -#: ../../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/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Cliquez sur [Ajouter]" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Pas de canal. Echec de l'import." +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Les informations distantes de confidentialité ne sont pas disponibles." -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "L'import est terminé." +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Visible par :" -#: ../../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/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Emplacement introuvable." -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importation de canal" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Echec de la recherche de l'emplacement." -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Locs.php:66 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." +"Please select another location to become primary before removing the primary" +" location." +msgstr "Merci de sélectionner un autre emplacement comme nouvel emplacement primaire avant de supprimer l'emplacement primaire actuel." -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Fichier à envoyer" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Synchronisation des emplacements" -#: ../../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/Locs.php:105 +msgid "No locations found." +msgstr "Emplacement(s) introuvable." -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Votre ancienne identité (zyx@exemple.com)" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gérer les emplacements des canaux" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Votre ancienne adresse de courriel" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adresse" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Votre ancien mot de passe" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "" -#: ../../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" -" able to post from either location, but only one can be marked as the " -"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/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Supprimer" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Faire de ce hub mon emplacement primaire" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "" -#: ../../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/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Merci d'attendre plusieurs minutes entre opérations successives." -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Module/Locs.php:124 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." +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal." -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif." -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenue sur %s" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub introuvable." -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Impossible de localiser la publication initiale." +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Impossible de localiser le destinataire." -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Publication vide annulée." +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Impossible de communiquer avec le canal demandé." -#: ../../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:856 -msgid "Duplicate post suppressed." -msgstr "Publication en doublon supprimée." +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Impossible de vérifier le canal demandé." -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Erreur système. Publication non sauvegardée." +#: ../../Zotlabs/Module/Mail.php:78 +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/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/Mail.php:143 +msgid "Messages" +msgstr "Messages" -#: ../../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/Mail.php:178 +msgid "Message recalled." +msgstr "Message rappelé." -#: ../../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/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversation supprimée." -#: ../../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/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Expire le YYYY-MM-DD à HH:MM" -#: ../../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/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "Le canal demandé n'est pas sur ce réseau" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album introuvable." +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Envoyer un message privé" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Supprimer l'album" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "À :" -#: ../../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/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Objet :" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Supprimer la photo" +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Joindre un fichier" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Aucune photo selectionnée" +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Envoyer" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "L'accès à l'élément est restreint." +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Définir la date d'expiration" -#: ../../Zotlabs/Module/Photos.php:619 -#, 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/Mail.php:340 +msgid "Delete message" +msgstr "Supprimer le message" -#: ../../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/Mail.php:341 +msgid "Delivery report" +msgstr "Rapport de distribution" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Téléverser des photos" +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Rappeler le message" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Entrer un nom d'album" +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "Le message a été rappelé." -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "ou sélectionner un album existant (double-clic)" +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Supprimer la conversation" -#: ../../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/Mail.php:363 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Aucune communication sécurisée n'est possible. Vous pourrez peut-être répondre depuis la page de profil de l'émetteur." -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Légende (facultative)" +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Send Reply" +msgstr "Envoyer la réponse" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Description (facultative)" +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Votre message pour %s (%s) :" -#: ../../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/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Vous avez créé %1$.0f des %2$.0f canaux autorisés." -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Photos de contact" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Créer un nouveau canal" -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Les plus récent(e)s en premier" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Gérer les canaux" -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Les moins récent(e)s en premier" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canal actif" -#: ../../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/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Pour changer de canal, sélectionnez-en un" -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Modifier l'album" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canal par défaut" -#: ../../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/Manage.php:169 +msgid "Make Default" +msgstr "Définir comme défaut" -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" -msgstr "Photo non disponible" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nouveaux messages" -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Utiliser comme photo du profil" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nouvelles présentations" -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" msgstr "" -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Photo privée" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Aucun compte valide trouvé." -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Voir en taille réelle" +#: ../../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/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Retirer" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Membre du site (%s)" -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Modifier la photo" +#: ../../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/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Rotation horaire (droite)" +#: ../../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/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Rotation anti-horaire (gauche)" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Réinitialiser le mot de passe" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Entrer un nouveau nom d'album" +#: ../../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/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "ou en sélectionner un existant (double-clic)" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Votre nouveau mot de passe est" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Titre/légende" +#: ../../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/Photos.php:1042 -msgid "Add a Tag" -msgstr "Ajouter une étiquette" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "cliquez ici pour vous connecter" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exemple : @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Votre mot de passe peut être changé depuis la page des Paramètres une fois connecté." -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Marquer comme \"adulte\" dans l'affichage de l'album" +#: ../../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/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "J'aime (oui/non)" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Mot de passe oublié ?" -#: ../../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/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/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Merci de patienter" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Adresse de courriel" -#: ../../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/Lostpass.php:130 +msgid "Reset" +msgstr "Réinitialiser" -#: ../../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/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossible de mettre le menu à jour." -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Aime" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "N'aime pas" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "D'accord" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossible de créer le menu." -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Pas d'accord" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nom du menu" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Abstention" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nom unique (non visible sur la page web) - requis" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Participations" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titre du menu" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Non-participations" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Participation possible" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Autoriser l'usage de favoris" -#: ../../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/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Le menu pourra être utilisé pour stocker des favoris" -#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Valider et continuer" -#: ../../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/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menus" -#: ../../Zotlabs/Module/Photos.php:1233 -msgid "Photo Tools" -msgstr "" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Favoris autorisés" -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "Dans cette photo :" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Supprimer ce menu" -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Carte" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifier le contenu du menu" -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Aime" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifier ce menu" -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "N'aime pas" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Impossible de supprimer le menu." -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Fermer" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menu introuvable." -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Voir l'album" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modifier le menu" -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Photos récentes" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Ajouter/supprimer des entrées à ce menu" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Les informations distantes de confidentialité ne sont pas disponibles." +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nom du menu" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visible par :" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Doit être unique, ne sera vu que par vous" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "L'import est terminé." +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titre du menu" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importer" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titre du menu tel que vu par les visiteurs" -#: ../../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." +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Autoriser l'usage de favoris" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Limite du nombre total d'invitation dépassée." +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Introuvable." -#: ../../Zotlabs/Module/Invite.php:53 +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : adresse courriel invalide." +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s est %2$s" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Rejoignez-nous sur $Projectname" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Humeur" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite d'invitations dépassée. Merci de contacter l'administration de votre site." +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Indiquez votre humeur du moment à vos amis" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Échec de distribution du message." +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profils similaires" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d message envoyé." -msgstr[1] "%d messages envoyés." +#: ../../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/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Vous ne disposez plus d'aucune invitation" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "s'intéresse à :" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Envoyer des invitations" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Pas de correspondance" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Entrez les adresses de courriel, une par ligne :" +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Groupe introuvable" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Votre message :" +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Canal introuvable" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Rejoignez ma communauté sur $Projectname." +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "forum" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Vous devrez fournir le code suivant :" +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Résultats de recherche pour :" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Enregistrez-vous sur n'importe quel serveur $Projectname (ils sont tous inter-connectés)" +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Groupe d'accès vide" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Saisissez l'adresse de mon canal $Projectname dans la barre de recherche du site." +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Groupe d'accès :" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "ou rendez-vous sur" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Contact non valide." -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Cliquez sur [Ajouter]" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Pas d'autre notification du système." -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Emplacement introuvable." +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notifications du système" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Echec de la recherche de l'emplacement." +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Impossible de créer l'entrée." -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Merci de sélectionner un autre emplacement comme nouvel emplacement primaire avant de supprimer l'emplacement primaire actuel." +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Impossible de mettre à jour l'entrée de menu." -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Synchronisation des emplacements" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Impossible d'ajouter l'entrée de menu." -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Emplacement(s) introuvable." +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permissions de l'entrée de menu" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Gérer les emplacements des canaux" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(cliquer pour ouvrir/fermer)" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "" +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nom du lien" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Supprimer" +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Lien ou sous-menu cible" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "" +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Merci d'attendre plusieurs minutes entre opérations successives." +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Utiliser l'authentification distante, quand disponible" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal." +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Ouvrir le lien dans une nouvelle fenêtre" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Ordre dans la liste" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub introuvable." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Les nombres les plus élevés seront au bas de la liste" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Impossible de localiser le destinataire." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Vadiler et terminer" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Impossible de communiquer avec le canal demandé." +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Valider et continuer" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Impossible de vérifier le canal demandé." +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menu :" -#: ../../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/Mitem.php:173 +msgid "Link Target" +msgstr "Cible du lien" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Messages" +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Modifier le menu" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Message rappelé." +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Modifier l'entrée" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversation supprimée." +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Supprimer l'entrée" -#: ../../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/Mitem.php:181 +msgid "New element" +msgstr "Nouvelle entrée" -#: ../../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/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Éditer ce bloc de menu" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Envoyer un message privé" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Ajouter une entrée au menu" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "À :" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Supprimer cette entrée du menu" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Objet :" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Modifier cette entrée du menu" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Joindre un fichier" +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Entrée de menu introuvable." -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Envoyer" +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Entrée de menu supprimée." -#: ../../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/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Impossible de supprimer l'entrée de menu." -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Supprimer le message" +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Modifier l'entrée de menu" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Rapport de distribution" +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Texte du lien" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Rappeler le message" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nom ou libellé" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Le message a été rappelé." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Exemples : \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\"" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Supprimer la conversation" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Choisissez un alias" -#: ../../Zotlabs/Module/Mail.php:355 +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Aucune communication sécurisée n'est possible. Vous pourrez peut-être répondre depuis la page de profil de l'émetteur." +"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/Mail.php:359 -msgid "Send Reply" -msgstr "Envoyer la réponse" +#: ../../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/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Votre message pour %s (%s) :" +#: ../../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/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Vous avez créé %1$.0f des %2$.0f canaux autorisés." +#: ../../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/Manage.php:143 -msgid "Create a new channel" -msgstr "Créer un nouveau canal" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Créer le canal" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Gérer les canaux" +#: ../../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/Manage.php:165 -msgid "Current Channel" -msgstr "Canal actif" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "ou importer un canal existant d'un autre serveur." -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Pour changer de canal, sélectionnez-en un" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Identifiant de requête invalide." -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canal par défaut" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Annuler" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Définir comme défaut" +#: ../../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/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nouveaux messages" +#: ../../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/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nouvelles présentations" +#: ../../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/Manage.php:175 -msgid "Delegated Channel" -msgstr "" +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Album introuvable." -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Impossible de mettre le menu à jour." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Impossible de créer le menu." +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Supprimer l'album" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nom du menu" +#: ../../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/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nom unique (non visible sur la page web) - requis" +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Supprimer la photo" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titre du menu" +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Aucune photo selectionnée" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre" +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "L'accès à l'élément est restreint." -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Autoriser l'usage de favoris" +#: ../../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/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Le menu pourra être utilisé pour stocker des favoris" +#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Valider et continuer" +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Téléverser des photos" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menus" +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Entrer un nom d'album" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Favoris autorisés" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "ou sélectionner un album existant (double-clic)" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Supprimer ce menu" +#: ../../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/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifier le contenu du menu" +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Légende (facultative)" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifier ce menu" +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Description (facultative)" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Impossible de supprimer le menu." +#: ../../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/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menu introuvable." +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Photos de contact" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifier le menu" +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Les plus récent(e)s en premier" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Ajouter/supprimer des entrées à ce menu" +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Les moins récent(e)s en premier" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nom du menu" +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Voir la photo" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Doit être unique, ne sera vu que par vous" +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Modifier l'album" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titre du menu" +#: ../../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/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titre du menu tel que vu par les visiteurs" +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Photo non disponible" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Autoriser l'usage de favoris" +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Utiliser comme photo du profil" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Introuvable." +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Aucun compte valide trouvé." +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Photo privée" -#: ../../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/Photos.php:953 +msgid "View Full Size" +msgstr "Voir en taille réelle" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Membre du site (%s)" +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Retirer" -#: ../../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/Photos.php:1032 +msgid "Edit photo" +msgstr "Modifier la photo" -#: ../../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/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Rotation horaire (droite)" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Réinitialiser le mot de passe" +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Rotation anti-horaire (gauche)" -#: ../../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/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Entrer un nouveau nom d'album" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Votre nouveau mot de passe est" +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "ou en sélectionner un existant (double-clic)" -#: ../../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/Photos.php:1042 +msgid "Caption" +msgstr "Titre/légende" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "cliquez ici pour vous connecter" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Ajouter une étiquette" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Votre mot de passe peut être changé depuis la page des Paramètres une fois connecté." +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Exemple : @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon" -#: ../../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/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Marquer comme \"adulte\" dans l'affichage de l'album" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Mot de passe oublié ?" +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "J'aime (oui/non)" -#: ../../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/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Je n'aime pas (oui/non)" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Adresse de courriel" +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Merci de patienter" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Réinitialiser" +#: ../../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/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/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commenter" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Humeur" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Aime" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Indiquez votre humeur du moment à vos amis" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "N'aime pas" -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Groupe introuvable" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "D'accord" -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Canal introuvable" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Pas d'accord" -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Abstention" -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Résultats de recherche pour :" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Participations" -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "Groupe d'accès vide" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Non-participations" -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Groupe d'accès :" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Participation possible" -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Contact non valide." +#: ../../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/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Pas d'autre notification du système." +#: ../../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/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notifications du système" +#: ../../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/Match.php:26 -msgid "Profile Match" -msgstr "Profils similaires" +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "" -#: ../../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/Photos.php:1244 +msgid "In This Photo:" +msgstr "Dans cette photo :" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "s'intéresse à :" +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Carte" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Pas de correspondance" +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Aime" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "" +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "N'aime pas" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Fermer" -#: ../../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/Photos.php:1337 +msgid "View Album" +msgstr "Voir l'album" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Impossible de créer l'entrée." +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Photos récentes" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Impossible de mettre à jour l'entrée de menu." +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "vous a envoyé un message privé" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Impossible d'ajouter l'entrée de menu." +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "a ajouté votre canal" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permissions de l'entrée de menu" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l F d" -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(cliquer pour ouvrir/fermer)" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[aujourd'hui]" -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nom du lien" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "a publié un événement" -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Lien ou sous-menu cible" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Impossible de trouver votre hub." -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Publication réussie." -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Utiliser l'authentification distante, quand disponible" +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Erreur du protocole OpenID. Pas d'ID retourné." -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Ouvrir le lien dans une nouvelle fenêtre" +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Échec de la connexion." -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Ordre dans la liste" +#: ../../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/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Les nombres les plus élevés seront au bas de la liste" +#: ../../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/Mitem.php:161 -msgid "Submit and finish" -msgstr "Vadiler et terminer" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editeur de configuration" -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Valider et continuer" +#: ../../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 :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/Mitem.php:170 -msgid "Menu:" -msgstr "Menu :" +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Mise en page mise à jour." -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Cible du lien" +#: ../../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/Mitem.php:176 -msgid "Edit menu" -msgstr "Modifier le menu" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Mise en page introuvable." -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Modifier l'entrée" +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nom du module :" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Supprimer l'entrée" +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Aide à la mise en page" -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nouvelle entrée" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Tapoter" -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Éditer ce bloc de menu" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Taquiner quelqu'un" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Ajouter une entrée au menu" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Tapoter/Encourager" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Supprimer cette entrée du menu" +#: ../../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/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Modifier cette entrée du menu" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinataire" -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Entrée de menu introuvable." +#: ../../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/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Entrée de menu supprimée." +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Rendre cette publication privée" -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Impossible de supprimer l'entrée de menu." +#: ../../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 : %1$s" -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Modifier l'entrée de menu" +#: ../../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/Mitem.php:230 -msgid "Link text" -msgstr "Texte du lien" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profil supprimé." -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Paramètres du thème mis à jour." - -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# Comptes" - -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# comptes bloqués" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profil-" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# comptes expirés" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Nouveau profil créé." -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# comptes expirant" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Profil impossible à cloner." -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# Canaux" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Impossible d'exporter le profil." -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# primaire" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Le nom du profil est obligatoire." -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# clones" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Statut marital" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "File des messages" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Partenaire amoureux" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Aime" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" -msgstr "Administration" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "N'aime pas" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Résumé" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Travail/Occupation" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Comptes enregistrés" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religion/Croyance" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "Inscriptions en attente" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Opinions politiques" -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Canaux enregistrés" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Préférences sexuelle" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" -msgstr "Greffons actifs" +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Site Internet" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Version" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Centres d'intérêt" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profil mis à jour." -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" msgstr "" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Paramètres du site sauvegardés." +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Modifier les détails du profil" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 -msgid "Default" -msgstr "Défaut" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Voir ce profil" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 -msgid "mobile" -msgstr "mobile" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:959 +msgid "Edit visibility" +msgstr "Changer la visibilité" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "expérimental" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "non maintenu" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Oui - avec approbation" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +msgid "Change profile photo" +msgstr "Changer la photo du profil" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "Mon site n'est pas un serveur public" +#: ../../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/Admin.php:467 -msgid "My site has paid access only" -msgstr "Mon site est à accès payant uniquement" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Cloner ce profil" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "Mon site est gratuit uniquement" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Supprimer ce profil" -#: ../../Zotlabs/Module/Admin.php:469 -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/Profiles.php:696 +msgid "Add profile things" +msgstr "Ajouter des éléments de profil" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 -msgid "Site" -msgstr "Site" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 +msgid "Personal" +msgstr "Me concernant" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Inscription" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" -msgstr "Envoi de fichier" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Divers" -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" -msgstr "Stratégies" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importer le profil à partir d'un fichier" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avancé" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Exporter le profil vers un fichier." -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" -msgstr "Nom du site" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" -msgstr "Bannière/logo" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" -msgstr "Informations de l'administrateur" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Coordonnées de l'administrateur du site. Affichées sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "Langue du système" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Ceci est votre profil par défaut." -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "Thème du système" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Thème par défaut - il peut être changé pour chaque profil utilisateur - modifier le thème" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Titre/description" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" -msgstr "Thème par défaut pour les mobiles" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" -msgstr "Thème pour les mobiles" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Ville" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" -msgstr "Autoriser les Flux (RSS) comme contacts" - -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" -msgstr "(Impact important sur les ressources)" - -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" -msgstr "Taille maximale des images" - -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite." - -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" -msgstr "Est-ce que l'enregistrement de nouveaux membres est autorisé sur ce site ?" - -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" -msgstr "Sur invitation seulement" - -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "N'autoriser que les nouvelles inscriptions avec code d'invitation. La stratégie d'inscription ci-dessus doit être mise sur \"Oui\"." - -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Quelle est la meilleure description des types de comptes proposés sur ce hub ?" - -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" -msgstr "Texte d'inscription" - -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." -msgstr "Sera affiché de manière bien visible sur le formulaire d'inscription." - -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Page d'accueil du site à montrer aux visiteurs (par défaut :boîte de dialogue de connexion)" - -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "exemple :'public' pour montrer le flux public, 'page/sys/home' pour montrer une page système appelée 'home' ou 'include:home.html' pour inclure un fichier." +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Région" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" -msgstr "Préserver l'adresse d'accueil du site" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Présenter la page d'accueil du site dans un cadre à l'adresse d'origine, plutôt que de rediriger" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "Pays" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" -msgstr "Les comptes sont abandonnés après x jours" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Qui (si applicable)" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Eviter de gaspiller les ressources du système en interrogeant des hubs distants pour des canaux abandonnés. Mettez 0 pour ne pas avoir de limite de temps." +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exemples : marie123, Marie Deschamps, marie@exemple.com" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" -msgstr "Domaines amicaux autorisés" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Liste de noms de domaines séparés par des virgules pour lesquels ce site acceptera les demandes d'amitié. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines." +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" -msgstr "Domaines de courriels autorisés" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Ville de naissance" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Liste de noms de domaines séparés par des virgules dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines." +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" -msgstr "Domaines de courriel non autorisés" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel ne seront pas autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines, sauf si des domaines autorisés ont été définis." +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" -msgstr "Demander vérification des adresses de courriel" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Exemple : escrime photographie modélisme" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Cocher pour que les adresses utilisées à l'inscription soient vérifiées (recommandé)." +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Goûts musicaux" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" -msgstr "Publicité forcée" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Livres, littérature" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Cocher pour forcer la publication de tous les profils du site dans l'annuaire." +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Télévision" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" -msgstr "Flux publics importés" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Importer du contenu public à partir d'autres sites et autoriser l'accès à ce contenu. Attention : ce contenu n'est pas modéré." +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Loisirs/Centres d'intêret" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" msgstr "" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Présenter une boîte de dialogue de connexion aux visiteurs sur la page d'accueil si aucun autre contenu n'a été configuré." - -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" msgstr "" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" msgstr "" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" -msgstr "URL du serveur d'annuaire" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Mes autres canaux" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" -msgstr "Serveur d'annuaire par défaut" +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +msgid "Profile Image" +msgstr "Image du profil" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" -msgstr "Utilisateur du proxy" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 +#: ../../include/channel.php:937 +msgid "Edit Profiles" +msgstr "Modifier les profils" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" -msgstr "URL du proxy" +#: ../../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/Admin.php:529 -msgid "Network timeout" -msgstr "Délai maximal du réseau" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Téléverser une photo de profil" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (non recommandé)." +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identifiant de profil invalide." -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" -msgstr "Intervalle de distribution" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Éditeur de visibilité de profil" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés." +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profil" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" -msgstr "Distributions par processus" +#: ../../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/Admin.php:531 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Nombre de distributions à tenter au sein d'un seul processus système. Ajuster si nécessaire pour affiner la performance du système. Recommandé :1-5." +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible par" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" -msgstr "Intervalle de scrutation" +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Instances publiques" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution." - -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" -msgstr "Charge maximale moyenne" - -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Charge système maximale au-delà de laquelle distribution et scrutation sont reportées - par défaut 50." - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Délai d'expiration pour le contenu importé (réseau)" - -#: ../../Zotlabs/Module/Admin.php:534 -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:823 -msgid "Off" -msgstr "Inactif" - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "On" -msgstr "Actif" - -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" -msgstr "Verrouiller fonctionnalité %s" - -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" -msgstr "Gérer les fonctionnalités additionnelles" - -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" -msgstr "Serveur introuvable" - -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" -msgstr "Identifiant" - -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" -msgstr "pour le canal" - -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" -msgstr "sur le serveur" - -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" -msgstr "Serveur" - -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 -msgid "Security" -msgstr "Sécurité" - -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" -msgstr "Bloquer \"public\"" - -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Sélectionner pour ne permettre l'accès aux pages personnelles \"publiques\" du site qu'aux personnes authentifiées, pas aux personnes anonymes du web." - -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" -msgstr "N'autorisez que les communications venant de ces sites" - -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un site par ligne. Laisser vide pour autoriser les communications de tous les sites, par défaut." - -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" -msgstr "Bloquer les communications de ces sites" - -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" -msgstr "N'autoriser que les communications de ces canaux" - -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canal (adresse) par ligne. Laisser vide pour autoriser les communications de tous les canaux, par défaut" - -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" -msgstr "Bloquer les communications de ces canaux" - -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" -msgstr "Bloquer le HTML embarqué à partir de ces domaines" - -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" -msgstr "La mise à jour a été marquée comme réussie" - -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "L'éxecution de %s a échoué. Merci de vérifier les journaux du système." - -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." -msgstr "La mise à jour %s a été appliquée avec succès." - -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non." - -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." -msgstr "La fonction de mise à jour %s est introuvable." - -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." -msgstr "Aucune mise à jour défaillante." - -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" -msgstr "Mises à jour défaillantes" - -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" -msgstr "Marquer comme réussie (si la mise à jour a été réalisée manuellement)" - -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" -msgstr "Tenter de réaliser cette étape de mise à jour automatiquement" - -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" -msgstr "Statistiques de file d'attente" - -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" -msgstr "Nombre d'entrées total" - -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" -msgstr "Priorité" - -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" -msgstr "URL de destination" - -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" -msgstr "Marquer le hub comme étant hors ligne de manière permanente" - -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" -msgstr "Vider la file d'attente pour ce hub" - -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" -msgstr "Dernier contact connu" - -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s compte bloqué/débloqué" -msgstr[1] "%s comptes bloqués/débloqués" - -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s compte supprimé" -msgstr[1] "%s comptes supprimés" - -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "Compte introuvable" - -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "Compte '%s' supprimé" - -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "Compte '%s' bloqué" - -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Compte '%s' débloqué" - -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 -msgid "Accounts" -msgstr "Comptes" - -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "tout sélectionner" - -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "Date de la demande" - -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "Pas d'inscriptions." - -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "Refuser" - -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" -msgstr "Tous les canaux" - -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" -msgstr "Date d'inscription" - -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" -msgstr "Dernière connexion" - -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" -msgstr "Expire le" - -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" -msgstr "Classe de service" - -#: ../../Zotlabs/Module/Admin.php:1054 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Les comptes sélectionnés seront supprimés !\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?" - -#: ../../Zotlabs/Module/Admin.php:1055 +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Le compte {0} sera supprimé !\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?" - -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s canal censuré/dé-censuré" -msgstr[1] "%s canaux censurés/dé-censurés" - -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "code autorisé/interdit pour %s canal" -msgstr[1] "code autorisé/interdit pour %s canaux" - -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canal supprimé" -msgstr[1] "%s canaux supprimés" - -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "Canal introuvable" - -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Canal '%s' supprimé" - -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' censored" -msgstr "Canal '%s' censuré" - -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Canal '%s' non censuré" - -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Code autorisé pour le canal '%s'" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "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 peut fournir des détails supplémentaires." -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Code interdit pour le canal '%s'" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "URL du site" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 -msgid "Channels" -msgstr "Canaux" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Type d'accès" -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" -msgstr "Censurer" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Politique d'inscription" -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" -msgstr "Ne plus censurer" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" -msgstr "Autoriser le code" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" -msgstr "Interdire le code" +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Evaluations" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 -msgid "Channel" -msgstr "Canal" +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Evaluer" -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Site web :" -#: ../../Zotlabs/Module/Admin.php:1226 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Les canaux sélectionnés seront supprimés !\\n\\nTout ce qui a été publié dans ces canaux sur ce site sera définitivement supprimé !\\n\\nÊtes-vous sûr ?" +#: ../../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/Admin.php:1227 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Le canal {0} sera supprimé !\\n\\nTout ce qui a été publié sur ce canal sera définitivement supprimé !\\n\\nÊtes-vous sûr(e) ?" +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Evaluation (cette information est publique)" -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." -msgstr "Greffon %s désactivé." +#: ../../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/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." -msgstr "Greffon %s activé." +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Pas de note" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" -msgstr "Désactiver" +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Evaluation :" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" -msgstr "Activer" +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Site web :" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 -msgid "Plugins" -msgstr "Greffons" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Description :" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" -msgstr "(Dés)activer" +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." +msgstr "Paramètres du thème mis à jour." -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 -msgid "Settings" -msgstr "Paramètres" +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" +msgstr "# Comptes" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " -msgstr "Auteur :" +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" +msgstr "# comptes bloqués" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " -msgstr "Maintenu par :" +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" +msgstr "# comptes expirés" -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " -msgstr "Version minimum du projet :" +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" +msgstr "# comptes expirant" -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " -msgstr "Version maximum du projet :" +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" +msgstr "# Canaux" -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " -msgstr "Version minimum de PHP :" +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" +msgstr "# primaire" -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " -msgstr "Requiert :" +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" +msgstr "# clones" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" -msgstr "Désactivé - version incompatible" +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" +msgstr "File des messages" -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 +#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 +#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 +#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 +#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 +#: ../../Zotlabs/Module/Admin.php:1731 +msgid "Administration" +msgstr "Administration" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" +msgstr "Résumé" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" +msgstr "Comptes enregistrés" -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +msgid "Pending registrations" +msgstr "Inscriptions en attente" -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" +msgstr "Canaux enregistrés" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Installer" +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +msgid "Active plugins" +msgstr "Greffons actifs" -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" +msgstr "Version" -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" msgstr "" -#: ../../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" +#: ../../Zotlabs/Module/Admin.php:373 +msgid "Site settings updated." +msgstr "Paramètres du site sauvegardés." -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" -msgstr "" +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +msgid "Default" +msgstr "Défaut" -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." -msgstr "Aucun thème trouvé." +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +msgid "mobile" +msgstr "mobile" -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" -msgstr "Capture d'écran" +#: ../../Zotlabs/Module/Admin.php:412 +msgid "experimental" +msgstr "expérimental" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 -msgid "Themes" -msgstr "Thèmes" +#: ../../Zotlabs/Module/Admin.php:414 +msgid "unsupported" +msgstr "non maintenu" -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" -msgstr "[Expérimental]" +#: ../../Zotlabs/Module/Admin.php:460 +msgid "Yes - with approval" +msgstr "Oui - avec approbation" + +#: ../../Zotlabs/Module/Admin.php:466 +msgid "My site is not a public server" +msgstr "Mon site n'est pas un serveur public" + +#: ../../Zotlabs/Module/Admin.php:467 +msgid "My site has paid access only" +msgstr "Mon site est à accès payant uniquement" + +#: ../../Zotlabs/Module/Admin.php:468 +msgid "My site has free access only" +msgstr "Mon site est gratuit uniquement" -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" -msgstr "[Non maintenu]" +#: ../../Zotlabs/Module/Admin.php:469 +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:1677 -msgid "Log settings updated." -msgstr "Paramètres du journal mis à jour." +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +msgid "Site" +msgstr "Site" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 -msgid "Logs" -msgstr "Journaux" +#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 +msgid "Registration" +msgstr "Inscription" -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" -msgstr "Vider" +#: ../../Zotlabs/Module/Admin.php:494 +msgid "File upload" +msgstr "Envoi de fichier" -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" -msgstr "Débogage" +#: ../../Zotlabs/Module/Admin.php:495 +msgid "Policies" +msgstr "Stratégies" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" -msgstr "Fichier du journal" +#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avancé" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "" +#: ../../Zotlabs/Module/Admin.php:500 +msgid "Site name" +msgstr "Nom du site" -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "Niveau de journalisation" +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Banner/Logo" +msgstr "Bannière/logo" -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "Nouveau champ de profil" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "Administrator Information" +msgstr "Informations de l'administrateur" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "Nom court du champ" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Coordonnées de l'administrateur du site. Affichées sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "Nom système du champ" +#: ../../Zotlabs/Module/Admin.php:503 +msgid "System language" +msgstr "Langue du système" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "Type de champ" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "System theme" +msgstr "Thème du système" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "Nom du champ" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Thème par défaut - il peut être changé pour chaque profil utilisateur - modifier le thème" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" -msgstr "Étiquette sur les pages de profil" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Mobile system theme" +msgstr "Thème par défaut pour les mobiles" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" -msgstr "Aide à la saisie" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Theme for mobile devices" +msgstr "Thème pour les mobiles" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" -msgstr "Informations additionnelles (facultatif)" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "Allow Feeds as Connections" +msgstr "Autoriser les Flux (RSS) comme contacts" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" -msgstr "Définition du champ introuvable" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "(Heavy system resource usage)" +msgstr "(Impact important sur les ressources)" -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" -msgstr "Modifier le champ de profil" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "Maximum image size" +msgstr "Taille maximale des images" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 -msgid "Profile Fields" -msgstr "Champs de profil" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite." -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" -msgstr "Champs de profil de base" +#: ../../Zotlabs/Module/Admin.php:509 +msgid "Does this site allow new member registration?" +msgstr "Est-ce que l'enregistrement de nouveaux membres est autorisé sur ce site ?" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" -msgstr "Champs de profil avancés" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Invitation only" +msgstr "Sur invitation seulement" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" -msgstr "(en plus des champs de base)" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "N'autoriser que les nouvelles inscriptions avec code d'invitation. La stratégie d'inscription ci-dessus doit être mise sur \"Oui\"." -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" -msgstr "Tous les champs disponibles" +#: ../../Zotlabs/Module/Admin.php:511 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Quelle est la meilleure description des types de comptes proposés sur ce hub ?" -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" -msgstr "Champs personnalisés" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Register text" +msgstr "Texte d'inscription" -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" -msgstr "Créer un champ personnalisé" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Will be displayed prominently on the registration page." +msgstr "Sera affiché de manière bien visible sur le formulaire d'inscription." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nom ou libellé" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Page d'accueil du site à montrer aux visiteurs (par défaut :boîte de dialogue de connexion)" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Exemples : \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\"" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "exemple :'public' pour montrer le flux public, 'page/sys/home' pour montrer une page système appelée 'home' ou 'include:home.html' pour inclure un fichier." -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Choisissez un alias" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Preserve site homepage URL" +msgstr "Préserver l'adresse d'accueil du site" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format +#: ../../Zotlabs/Module/Admin.php:514 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" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Présenter la page d'accueil du site dans un cadre à l'adresse d'origine, plutôt que de rediriger" -#: ../../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/Admin.php:515 +msgid "Accounts abandoned after x days" +msgstr "Les comptes sont abandonnés après x jours" -#: ../../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/Admin.php:515 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Eviter de gaspiller les ressources du système en interrogeant des hubs distants pour des canaux abandonnés. Mettez 0 pour ne pas avoir de limite de temps." -#: ../../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/Admin.php:516 +msgid "Allowed friend domains" +msgstr "Domaines amicaux autorisés" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Créer le canal" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Liste de noms de domaines séparés par des virgules pour lesquels ce site acceptera les demandes d'amitié. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines." -#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Admin.php:517 +msgid "Allowed email domains" +msgstr "Domaines de courriels autorisés" + +#: ../../Zotlabs/Module/Admin.php:517 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." +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Liste de noms de domaines séparés par des virgules dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines." -#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Not allowed email domains" +msgstr "Domaines de courriel non autorisés" + +#: ../../Zotlabs/Module/Admin.php:518 msgid "" -"or import an existing channel from another location." -msgstr "ou importer un canal existant d'un autre serveur." +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel ne seront pas autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines, sauf si des domaines autorisés ont été définis." -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "vous a envoyé un message privé" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "Verify Email Addresses" +msgstr "Demander vérification des adresses de courriel" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "a ajouté votre canal" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Cocher pour que les adresses utilisées à l'inscription soient vérifiées (recommandé)." -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l F d" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Force publish" +msgstr "Publicité forcée" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[aujourd'hui]" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Cocher pour forcer la publication de tous les profils du site dans l'annuaire." -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "a publié un événement" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Import Public Streams" +msgstr "Flux publics importés" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Identifiant de requête invalide." +#: ../../Zotlabs/Module/Admin.php:521 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Importer du contenu public à partir d'autres sites et autoriser l'accès à ce contenu. Attention : ce contenu n'est pas modéré." -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Annuler" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Login on Homepage" +msgstr "" -#: ../../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/Admin.php:522 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Présenter une boîte de dialogue de connexion aux visiteurs sur la page d'accueil si aucun autre contenu n'a été configuré." -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Tapoter" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Enable context help" +msgstr "" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Taquiner quelqu'un" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Tapoter/Encourager" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Directory Server URL" +msgstr "URL du serveur d'annuaire" -#: ../../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/Admin.php:525 +msgid "Default directory server" +msgstr "Serveur d'annuaire par défaut" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinataire" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Proxy user" +msgstr "Utilisateur du proxy" -#: ../../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/Admin.php:528 +msgid "Proxy URL" +msgstr "URL du proxy" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Rendre cette publication privée" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Network timeout" +msgstr "Délai maximal du réseau" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Impossible de trouver votre hub." +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (non recommandé)." -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Publication réussie." +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Delivery interval" +msgstr "Intervalle de distribution" -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Erreur du protocole OpenID. Pas d'ID retourné." +#: ../../Zotlabs/Module/Admin.php:530 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés." -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Échec de la connexion." +#: ../../Zotlabs/Module/Admin.php:531 +msgid "Deliveries per process" +msgstr "Distributions par processus" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identifiant de profil invalide." +#: ../../Zotlabs/Module/Admin.php:531 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Nombre de distributions à tenter au sein d'un seul processus système. Ajuster si nécessaire pour affiner la performance du système. Recommandé :1-5." -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Éditeur de visibilité de profil" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Poll interval" +msgstr "Intervalle de scrutation" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profil" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution." -#: ../../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/Admin.php:533 +msgid "Maximum Load Average" +msgstr "Charge maximale moyenne" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible par" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Charge système maximale au-delà de laquelle distribution et scrutation sont reportées - par défaut 50." -#: ../../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/Admin.php:534 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Délai d'expiration pour le contenu importé (réseau)" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editeur de configuration" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "0 for no expiration of imported content" +msgstr "0 pour ne pas expirer le contenu importé" -#: ../../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 :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/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "Off" +msgstr "Inactif" -#: ../../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 : %1$s" +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "On" +msgstr "Actif" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Admin.php:678 #, php-format -msgid "Version %s" -msgstr "Version %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Greffons/extensions/applications installés :" +msgid "Lock feature %s" +msgstr "Verrouiller fonctionnalité %s" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Aucun greffon/extension/application installé" +#: ../../Zotlabs/Module/Admin.php:686 +msgid "Manage Additional Features" +msgstr "Gérer les fonctionnalités additionnelles" -#: ../../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/Admin.php:703 +msgid "No server found" +msgstr "Serveur introuvable" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Étiquette :" +#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +msgid "ID" +msgstr "Identifiant" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Dernière récupération en tâche de fond :" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "for channel" +msgstr "pour le canal" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Charge moyenne actuelle :" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "on server" +msgstr "sur le serveur" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Tourne à l'adresse internet" +#: ../../Zotlabs/Module/Admin.php:712 +msgid "Server" +msgstr "Serveur" -#: ../../Zotlabs/Module/Siteinfo.php:59 +#: ../../Zotlabs/Module/Admin.php:746 msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Merci de visiter hubzilla.org pour en apprendre davantage sur $Projectname." +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Pour remonter bogues et problèmes, merci de visiter" +#: ../../Zotlabs/Module/Admin.php:749 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problèmes $projectname" +#: ../../Zotlabs/Module/Admin.php:750 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" +msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:63 +#: ../../Zotlabs/Module/Admin.php:751 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Administrateurs du site" +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +msgid "Security" +msgstr "Sécurité" -#: ../../Zotlabs/Module/Rmagic.php:44 +#: ../../Zotlabs/Module/Admin.php:758 +msgid "Block public" +msgstr "Bloquer \"public\"" + +#: ../../Zotlabs/Module/Admin.php:758 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." +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Sélectionner pour ne permettre l'accès aux pages personnelles \"publiques\" du site qu'aux personnes authentifiées, pas aux personnes anonymes du web." -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Le message d'erreur était :" +#: ../../Zotlabs/Module/Admin.php:759 +msgid "Set \"Transport Security\" HTTP header" +msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Échec de l'authentification." +#: ../../Zotlabs/Module/Admin.php:760 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Authentification distante" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "Allow communications only from these sites" +msgstr "N'autorisez que les communications venant de ces sites" -#: ../../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/Admin.php:761 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un site par ligne. Laisser vide pour autoriser les communications de tous les sites, par défaut." -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authentifier" +#: ../../Zotlabs/Module/Admin.php:762 +msgid "Block communications from these sites" +msgstr "Bloquer les communications de ces sites" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Instances publiques" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "Allow communications only from these channels" +msgstr "N'autoriser que les communications de ces canaux" -#: ../../Zotlabs/Module/Pubsites.php:25 +#: ../../Zotlabs/Module/Admin.php:763 msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "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 peut fournir des détails supplémentaires." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "URL du site" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canal (adresse) par ligne. Laisser vide pour autoriser les communications de tous les canaux, par défaut" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Type d'accès" +#: ../../Zotlabs/Module/Admin.php:764 +msgid "Block communications from these channels" +msgstr "Bloquer les communications de ces canaux" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Politique d'inscription" +#: ../../Zotlabs/Module/Admin.php:765 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "One site per line. By default embedded content is filtered." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Evaluations" +#: ../../Zotlabs/Module/Admin.php:767 +msgid "Block embedded HTML from these domains" +msgstr "Bloquer le HTML embarqué à partir de ces domaines" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Evaluer" +#: ../../Zotlabs/Module/Admin.php:785 +msgid "Update has been marked successful" +msgstr "La mise à jour a été marquée comme réussie" -#: ../../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/Admin.php:795 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "L'éxecution de %s a échoué. Merci de vérifier les journaux du système." -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Téléverser une photo de profil" +#: ../../Zotlabs/Module/Admin.php:798 +#, php-format +msgid "Update %s was successfully applied." +msgstr "La mise à jour %s a été appliquée avec succès." -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nom du Bloc" +#: ../../Zotlabs/Module/Admin.php:802 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non." -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Blocs" +#: ../../Zotlabs/Module/Admin.php:805 +#, php-format +msgid "Update function %s could not be found." +msgstr "La fonction de mise à jour %s est introuvable." -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titre du bloc" +#: ../../Zotlabs/Module/Admin.php:821 +msgid "No failed updates." +msgstr "Aucune mise à jour défaillante." -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Site web :" +#: ../../Zotlabs/Module/Admin.php:825 +msgid "Failed Updates" +msgstr "Mises à jour défaillantes" -#: ../../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/Admin.php:827 +msgid "Mark success (if update was manually applied)" +msgstr "Marquer comme réussie (si la mise à jour a été réalisée manuellement)" -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Evaluation (cette information est publique)" +#: ../../Zotlabs/Module/Admin.php:828 +msgid "Attempt to execute this update step automatically" +msgstr "Tenter de réaliser cette étape de mise à jour automatiquement" -#: ../../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/Admin.php:859 +msgid "Queue Statistics" +msgstr "Statistiques de file d'attente" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Pas de note" +#: ../../Zotlabs/Module/Admin.php:860 +msgid "Total Entries" +msgstr "Nombre d'entrées total" -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Evaluation :" +#: ../../Zotlabs/Module/Admin.php:861 +msgid "Priority" +msgstr "Priorité" -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Site web :" +#: ../../Zotlabs/Module/Admin.php:862 +msgid "Destination URL" +msgstr "URL de destination" -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Description :" +#: ../../Zotlabs/Module/Admin.php:863 +msgid "Mark hub permanently offline" +msgstr "Marquer le hub comme étant hors ligne de manière permanente" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Applications" +#: ../../Zotlabs/Module/Admin.php:864 +msgid "Empty queue for this hub" +msgstr "Vider la file d'attente pour ce hub" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Titre (facultatif)" +#: ../../Zotlabs/Module/Admin.php:865 +msgid "Last known contact" +msgstr "Dernier contact connu" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modifier le bloc" +#: ../../Zotlabs/Module/Admin.php:901 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s compte bloqué/débloqué" +msgstr[1] "%s comptes bloqués/débloqués" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Pas de canal." +#: ../../Zotlabs/Module/Admin.php:908 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s compte supprimé" +msgstr[1] "%s comptes supprimés" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Contacts en commun" +#: ../../Zotlabs/Module/Admin.php:944 +msgid "Account not found" +msgstr "Compte introuvable" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Pas de contacts en commun." +#: ../../Zotlabs/Module/Admin.php:955 +#, php-format +msgid "Account '%s' deleted" +msgstr "Compte '%s' supprimé" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Choisir un dossier de favoris" +#: ../../Zotlabs/Module/Admin.php:963 +#, php-format +msgid "Account '%s' blocked" +msgstr "Compte '%s' bloqué" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Enregistrer le favori" +#: ../../Zotlabs/Module/Admin.php:971 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Compte '%s' débloqué" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL du favori" +#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 +#: ../../include/widgets.php:1383 +msgid "Accounts" +msgstr "Comptes" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "Ou entrez un nouveau nom de dossier de favoris" +#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +msgid "select all" +msgstr "tout sélectionner" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Nombre d'inscriptions quotidiennes dépassé. Merci d'essayer à nouveau demain." +#: ../../Zotlabs/Module/Admin.php:1034 +msgid "Registrations waiting for confirm" +msgstr "" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Merci d'indiquer votre adhésion aux conditions de service. L'inscription a échoué." +#: ../../Zotlabs/Module/Admin.php:1035 +msgid "Request date" +msgstr "Date de la demande" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Les mots de passe ne concordent pas." +#: ../../Zotlabs/Module/Admin.php:1036 +msgid "No registrations." +msgstr "Pas d'inscriptions." -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte." +#: ../../Zotlabs/Module/Admin.php:1038 +msgid "Deny" +msgstr "Refuser" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "Votre inscription est en attente d'approbation par l'administrateur." +#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +msgid "All Channels" +msgstr "Tous les canaux" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "Votre inscription ne peut être traîtée." +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "Register date" +msgstr "Date d'inscription" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "La création de nouveaux comptes est désactivée pour ce site." +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Last login" +msgstr "Dernière connexion" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "La création de compte sur ce site est soumise à approbation." +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Expires" +msgstr "Expire le" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "S'enregistrer sur un autre site du réseau." +#: ../../Zotlabs/Module/Admin.php:1052 +msgid "Service Class" +msgstr "Classe de service" -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Admin.php:1054 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Ce site a dépassé le nombre de création de comptes autorisé chaque jour. Merci d'essayer à nouveau demain." +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Les comptes sélectionnés seront supprimés !\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?" -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Conditions de service" +#: ../../Zotlabs/Module/Admin.php:1055 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Le compte {0} sera supprimé !\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?" -#: ../../Zotlabs/Module/Register.php:221 +#: ../../Zotlabs/Module/Admin.php:1091 #, php-format -msgid "I accept the %s for this website" -msgstr "J'accepte les %s de ce site" +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s canal censuré/dé-censuré" +msgstr[1] "%s canaux censurés/dé-censurés" -#: ../../Zotlabs/Module/Register.php:223 +#: ../../Zotlabs/Module/Admin.php:1100 #, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "J'ai plus de 13 ans et j'accepte les %s de ce site" - -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Votre adresse de courriel" - -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Choisissez un mot de passe" +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "code autorisé/interdit pour %s canal" +msgstr[1] "code autorisé/interdit pour %s canaux" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Merci de saisir à nouveau votre mot de passe" +#: ../../Zotlabs/Module/Admin.php:1106 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canal supprimé" +msgstr[1] "%s canaux supprimés" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Merci de saisir votre code d'invitation" +#: ../../Zotlabs/Module/Admin.php:1126 +msgid "Channel not found" +msgstr "Canal introuvable" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "non" +#: ../../Zotlabs/Module/Admin.php:1136 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Canal '%s' supprimé" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "oui" +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' censored" +msgstr "Canal '%s' censuré" -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." -msgstr "L'inscription à ce site se fait uniquement sur invitation." +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Canal '%s' non censuré" -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 -msgid "Register" -msgstr "S'inscrire" +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Code autorisé pour le canal '%s'" -#: ../../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/Admin.php:1159 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Code interdit pour le canal '%s'" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Merci de vous connecter." +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +msgid "Channels" +msgstr "Canaux" -#: ../../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/Admin.php:1214 +msgid "Censor" +msgstr "Censurer" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Supprimer ce compte" +#: ../../Zotlabs/Module/Admin.php:1215 +msgid "Uncensor" +msgstr "Ne plus censurer" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "AVERTISSEMENT :" +#: ../../Zotlabs/Module/Admin.php:1216 +msgid "Allow Code" +msgstr "Autoriser le code" -#: ../../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/Admin.php:1217 +msgid "Disallow Code" +msgstr "Interdire le code" -#: ../../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 !" +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +msgid "Channel" +msgstr "Canal" -#: ../../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 :" +#: ../../Zotlabs/Module/Admin.php:1222 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Admin.php:1226 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." +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Les canaux sélectionnés seront supprimés !\\n\\nTout ce qui a été publié dans ces canaux sur ce site sera définitivement supprimé !\\n\\nÊtes-vous sûr ?" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Admin.php:1227 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" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Le canal {0} sera supprimé !\\n\\nTout ce qui a été publié sur ce canal sera définitivement supprimé !\\n\\nÊtes-vous sûr(e) ?" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 -msgid "Remove Account" -msgstr "Supprimer le compte" +#: ../../Zotlabs/Module/Admin.php:1284 +#, php-format +msgid "Plugin %s disabled." +msgstr "Greffon %s désactivé." -#: ../../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/Admin.php:1288 +#, php-format +msgid "Plugin %s enabled." +msgstr "Greffon %s activé." -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Supprimer ce canal" +#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +msgid "Disable" +msgstr "Désactiver" -#: ../../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/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +msgid "Enable" +msgstr "Activer" -#: ../../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/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 +#: ../../include/widgets.php:1387 +msgid "Plugins" +msgstr "Greffons" -#: ../../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/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +msgid "Toggle" +msgstr "(Dés)activer" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 -msgid "Remove Channel" -msgstr "Supprimer le canal" +#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 +msgid "Settings" +msgstr "Paramètres" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exporter le canal" +#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +msgid "Author: " +msgstr "Auteur :" -#: ../../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/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +msgid "Maintainer: " +msgstr "Maintenu par :" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Exporter le contenu" +#: ../../Zotlabs/Module/Admin.php:1341 +msgid "Minimum project version: " +msgstr "Version minimum du projet :" + +#: ../../Zotlabs/Module/Admin.php:1342 +msgid "Maximum project version: " +msgstr "Version maximum du projet :" -#: ../../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/Admin.php:1343 +msgid "Minimum PHP version: " +msgstr "Version minimum de PHP :" -#: ../../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/Admin.php:1344 +msgid "Requires: " +msgstr "Requiert :" -#: ../../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/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +msgid "Disabled - version incompatibility" +msgstr "Désactivé - version incompatible" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez %2$s" +#: ../../Zotlabs/Module/Admin.php:1394 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez %2$s" +#: ../../Zotlabs/Module/Admin.php:1395 +msgid "Plugin repo git URL" +msgstr "" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Ces fichiers de contenu peuvent être importés ou restaurés en visitant %2$s 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/Admin.php:1396 +msgid "Custom repo name" +msgstr "" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" -msgstr "Eléments étiquetés avec : %s" +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "(optional)" +msgstr "" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Résultats de recherche pour : %s" +#: ../../Zotlabs/Module/Admin.php:1397 +msgid "Download Plugin Repo" +msgstr "" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Aucune restriction de classe de service trouvée." +#: ../../Zotlabs/Module/Admin.php:1404 +msgid "Install new repo" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "Le nom est requis" +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +msgid "Install" +msgstr "Installer" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "Clef et secret sont requis" +#: ../../Zotlabs/Module/Admin.php:1427 +msgid "Manage Repos" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" +#: ../../Zotlabs/Module/Admin.php:1428 +msgid "Installed Plugin Repositories" msgstr "" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." +#: ../../Zotlabs/Module/Admin.php:1429 +msgid "Install a New Plugin Repository" msgstr "" -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +msgid "Update" +msgstr "Mise à jour" + +#: ../../Zotlabs/Module/Admin.php:1436 +msgid "Switch branch" msgstr "" -#: ../../Zotlabs/Module/Settings.php:274 -msgid "Not valid email." -msgstr "Adresse de courriel non valide." +#: ../../Zotlabs/Module/Admin.php:1550 +msgid "No themes found." +msgstr "Aucun thème trouvé." -#: ../../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/Admin.php:1606 +msgid "Screenshot" +msgstr "Capture d'écran" -#: ../../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/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 +#: ../../include/widgets.php:1388 +msgid "Themes" +msgstr "Thèmes" -#: ../../Zotlabs/Module/Settings.php:303 -msgid "Password verification failed." -msgstr "La vérification du mot de passe a échoué." +#: ../../Zotlabs/Module/Admin.php:1652 +msgid "[Experimental]" +msgstr "[Expérimental]" -#: ../../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/Admin.php:1653 +msgid "[Unsupported]" +msgstr "[Non maintenu]" -#: ../../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/Admin.php:1677 +msgid "Log settings updated." +msgstr "Paramètres du journal mis à jour." -#: ../../Zotlabs/Module/Settings.php:328 -msgid "Password changed." -msgstr "Le mot de passe a été changé." +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 +msgid "Logs" +msgstr "Journaux" -#: ../../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/Admin.php:1734 +msgid "Clear" +msgstr "Vider" -#: ../../Zotlabs/Module/Settings.php:579 -msgid "Settings updated." -msgstr "Paramètres mis à jour." +#: ../../Zotlabs/Module/Admin.php:1740 +msgid "Debugging" +msgstr "Débogage" -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 -msgid "Add application" -msgstr "Ajouter une application" +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "Log file" +msgstr "Fichier du journal" -#: ../../Zotlabs/Module/Settings.php:646 -msgid "Name of application" -msgstr "Nom de l'application" +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 -msgid "Consumer Key" -msgstr "Clef client" +#: ../../Zotlabs/Module/Admin.php:1742 +msgid "Log level" +msgstr "Niveau de journalisation" -#: ../../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/Admin.php:2028 +msgid "New Profile Field" +msgstr "Nouveau champ de profil" -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 -msgid "Consumer Secret" -msgstr "Secret client" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "Field nickname" +msgstr "Nom court du champ" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 -msgid "Redirect" -msgstr "Redirection" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "System name of field" +msgstr "Nom système du champ" -#: ../../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/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +msgid "Input type" +msgstr "Type de champ" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 -msgid "Icon url" -msgstr "URL de l'icône" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Field Name" +msgstr "Nom du champ" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Facultatif" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Label on profile pages" +msgstr "Étiquette sur les pages de profil" -#: ../../Zotlabs/Module/Settings.php:661 -msgid "Application not found." -msgstr "Application introuvable." +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Help text" +msgstr "Aide à la saisie" -#: ../../Zotlabs/Module/Settings.php:704 -msgid "Connected Apps" -msgstr "Applications connectées" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Additional info (optional)" +msgstr "Informations additionnelles (facultatif)" -#: ../../Zotlabs/Module/Settings.php:708 -msgid "Client key starts with" -msgstr "La clef partagée commence par" +#: ../../Zotlabs/Module/Admin.php:2042 +msgid "Field definition not found" +msgstr "Définition du champ introuvable" -#: ../../Zotlabs/Module/Settings.php:709 -msgid "No name" -msgstr "Sans nom" +#: ../../Zotlabs/Module/Admin.php:2048 +msgid "Edit Profile Field" +msgstr "Modifier le champ de profil" -#: ../../Zotlabs/Module/Settings.php:710 -msgid "Remove authorization" -msgstr "Révoquer l'autorisation" +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +msgid "Profile Fields" +msgstr "Champs de profil" -#: ../../Zotlabs/Module/Settings.php:723 -msgid "No feature settings configured" -msgstr "Aucun paramètre de fonctionnalité configuré" +#: ../../Zotlabs/Module/Admin.php:2107 +msgid "Basic Profile Fields" +msgstr "Champs de profil de base" -#: ../../Zotlabs/Module/Settings.php:730 -msgid "Feature/Addon Settings" -msgstr "Paramètres des extensions/greffons" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "Advanced Profile Fields" +msgstr "Champs de profil avancés" -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Account Settings" -msgstr "Paramètres du compte" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "(In addition to basic fields)" +msgstr "(en plus des champs de base)" -#: ../../Zotlabs/Module/Settings.php:754 -msgid "Current Password" -msgstr "Mot de passe actuel" +#: ../../Zotlabs/Module/Admin.php:2110 +msgid "All available fields" +msgstr "Tous les champs disponibles" + +#: ../../Zotlabs/Module/Admin.php:2111 +msgid "Custom Fields" +msgstr "Champs personnalisés" + +#: ../../Zotlabs/Module/Admin.php:2115 +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/Appman.php:46 +msgid "Malformed app." +msgstr "Erreur de l'application - Malformée." + +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Imbriquer le code" -#: ../../Zotlabs/Module/Settings.php:755 -msgid "Enter New Password" -msgstr "Entrez votre nouveau mot de passe" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modifier l'application" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Confirm New Password" -msgstr "Confirmez le nouveau mot de passe" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Créer une application" -#: ../../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/Appman.php:115 +msgid "Name of app" +msgstr "Nom de l'application" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 -msgid "Email Address:" -msgstr "Adresse de courriel :" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Emplacement (URL) de l'application" -#: ../../Zotlabs/Module/Settings.php:760 -msgid "Remove this account including all its channels" -msgstr "Supprimer ce compte et tous ses canaux" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL de l'icône à utiliser pour cette photo" -#: ../../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/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - facultatif" -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" msgstr "" -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Identifiant de version" -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prix de l'application" -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Emplacement (URL) pour l'achat de l'application" -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Choisir un dossier de favoris" -#: ../../Zotlabs/Module/Settings.php:830 -msgid "Additional Features" -msgstr "Fonctionnalités additionnelles" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Enregistrer le favori" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "Connector Settings" -msgstr "Paramètres du connecteur" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL du favori" -#: ../../Zotlabs/Module/Settings.php:893 -msgid "No special theme for mobile devices" -msgstr "Pas de thème spécifique aux mobiles" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "Ou entrez un nouveau nom de dossier de favoris" -#: ../../Zotlabs/Module/Settings.php:896 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Expérimental)" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Nombre d'inscriptions quotidiennes dépassé. Merci d'essayer à nouveau demain." -#: ../../Zotlabs/Module/Settings.php:938 -msgid "Display Settings" -msgstr "Afficher les paramètres" +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Merci d'indiquer votre adhésion aux conditions de service. L'inscription a échoué." -#: ../../Zotlabs/Module/Settings.php:939 -msgid "Theme Settings" -msgstr "Paramètres du thème" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Les mots de passe ne concordent pas." -#: ../../Zotlabs/Module/Settings.php:940 -msgid "Custom Theme Settings" -msgstr "Paramètres personnels du thème" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte." -#: ../../Zotlabs/Module/Settings.php:941 -msgid "Content Settings" -msgstr "Paramètres liés au contenu" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "Votre inscription est en attente d'approbation par l'administrateur." -#: ../../Zotlabs/Module/Settings.php:947 -msgid "Display Theme:" -msgstr "Afficher le thème :" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "Votre inscription ne peut être traîtée." -#: ../../Zotlabs/Module/Settings.php:948 -msgid "Mobile Theme:" -msgstr "Thème mobile :" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "La création de nouveaux comptes est désactivée pour ce site." -#: ../../Zotlabs/Module/Settings.php:949 -msgid "Preload images before rendering the page" -msgstr "Pré-charger les images avant d'afficher la page" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "La création de compte sur ce site est soumise à approbation." -#: ../../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/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "S'enregistrer sur un autre site du réseau." -#: ../../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/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Ce site a dépassé le nombre de création de comptes autorisé chaque jour. Merci d'essayer à nouveau demain." -#: ../../Zotlabs/Module/Settings.php:951 -msgid "Update browser every xx seconds" -msgstr "Mettre à jour le navigateur toutes les xx secondes" +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" +msgstr "Conditions de service" -#: ../../Zotlabs/Module/Settings.php:951 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 secondes, pas de maximum" +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "J'accepte les %s de ce site" -#: ../../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 :" +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "J'ai plus de 13 ans et j'accepte les %s de ce site" -#: ../../Zotlabs/Module/Settings.php:952 -msgid "Maximum of 100 items" -msgstr "100 éléments au maximum" +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "Votre adresse de courriel" -#: ../../Zotlabs/Module/Settings.php:953 -msgid "Show emoticons (smilies) as images" -msgstr "Remplacer les émoticônes (smileys) par des images" +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" +msgstr "Choisissez un mot de passe" -#: ../../Zotlabs/Module/Settings.php:954 -msgid "Link post titles to source" -msgstr "Lier les titres des publications à leur source" +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" +msgstr "Merci de saisir à nouveau votre mot de passe" -#: ../../Zotlabs/Module/Settings.php:955 -msgid "System Page Layout Editor - (advanced)" -msgstr "Editeur de mise en page des pages systèmes - (avancé)" +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" +msgstr "Merci de saisir votre code d'invitation" -#: ../../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/Register.php:236 +msgid "no" +msgstr "non" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 -msgid "(comments displayed separately)" -msgstr "(commentaires affichés séparément)" +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "oui" -#: ../../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/Register.php:250 +msgid "Membership on this site is by invitation only." +msgstr "L'inscription à ce site se fait uniquement sur invitation." -#: ../../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/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 +msgid "Register" +msgstr "S'inscrire" -#: ../../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/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Continuer pour créer votre premier canal" -#: ../../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/Regmod.php:15 +msgid "Please login." +msgstr "Merci de vous connecter." -#: ../../Zotlabs/Module/Settings.php:990 -msgid "Nobody except yourself" -msgstr "Personne sauf vous" +#: ../../Zotlabs/Module/Removeaccount.php:34 +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/Settings.php:991 -msgid "Only those you specifically allow" -msgstr "Seulement ceux que vous autorisez spécifiquement" +#: ../../Zotlabs/Module/Removeaccount.php:56 +msgid "Remove This Account" +msgstr "Supprimer ce compte" -#: ../../Zotlabs/Module/Settings.php:992 -msgid "Approved connections" -msgstr "Contacts approuvés" +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "WARNING: " +msgstr "AVERTISSEMENT :" -#: ../../Zotlabs/Module/Settings.php:993 -msgid "Any connections" -msgstr "Tous les contacts" +#: ../../Zotlabs/Module/Removeaccount.php:57 +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/Settings.php:994 -msgid "Anybody on this website" -msgstr "Tous les utilisateurs du hub" +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "This action is permanent and can not be undone!" +msgstr "Cette action est permanente et irréversible !" -#: ../../Zotlabs/Module/Settings.php:995 -msgid "Anybody in this network" -msgstr "Tous les utilisateurs sur ce réseau" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Please enter your password for verification:" +msgstr "Merci de saisir votre mot de passe pour vérification :" -#: ../../Zotlabs/Module/Settings.php:996 -msgid "Anybody authenticated" -msgstr "Tous les utilisateurs authentifiés" +#: ../../Zotlabs/Module/Removeaccount.php:59 +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/Settings.php:997 -msgid "Anybody on the internet" -msgstr "Tous les utilisateurs d'Internet" +#: ../../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 "Par défaut, seules les instances des canaux situés sur ce hub seront supprimées du réseau" -#: ../../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/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 +msgid "Remove Account" +msgstr "Supprimer le compte" -#: ../../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/Removeme.php:33 +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/Settings.php:1085 -msgid "Your channel address is" -msgstr "L'adresse de votre canal est" +#: ../../Zotlabs/Module/Removeme.php:58 +msgid "Remove This Channel" +msgstr "Supprimer ce canal" -#: ../../Zotlabs/Module/Settings.php:1127 -msgid "Channel Settings" -msgstr "Paramètres du canal" +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "This channel will be completely removed from the network. " +msgstr "Ce canal sera complètement supprimé du réseau." -#: ../../Zotlabs/Module/Settings.php:1134 -msgid "Basic Settings" -msgstr "Paramètres standard" +#: ../../Zotlabs/Module/Removeme.php:61 +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/Settings.php:1135 ../../include/channel.php:1180 -msgid "Full Name:" -msgstr "Nom complet :" +#: ../../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 "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau" -#: ../../Zotlabs/Module/Settings.php:1137 -msgid "Your Timezone:" -msgstr "Votre fureau horaire :" +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 +msgid "Remove Channel" +msgstr "Supprimer le canal" -#: ../../Zotlabs/Module/Settings.php:1138 -msgid "Default Post Location:" -msgstr "Emplacement de publication par défaut :" +#: ../../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/Settings.php:1138 -msgid "Geographical location to display on your posts" -msgstr "Emplacement géographique à afficher sur vos publications" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Le message d'erreur était :" -#: ../../Zotlabs/Module/Settings.php:1139 -msgid "Use Browser Location:" -msgstr "Utiliser la géolocalisation du navigateur :" +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Échec de l'authentification." -#: ../../Zotlabs/Module/Settings.php:1141 -msgid "Adult Content" -msgstr "Contenu \"adulte\"" +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Authentification distante" -#: ../../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 #NSFW - Not Safe For Work)" +#: ../../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/Settings.php:1143 -msgid "Security and Privacy Settings" -msgstr "Paramètres de sécurité et de confidentialité" +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Authentifier" -#: ../../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/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "Eléments étiquetés avec : %s" -#: ../../Zotlabs/Module/Settings.php:1148 -msgid "Hide my online presence" -msgstr "Cacher ma présence en ligne" +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Résultats de recherche pour : %s" -#: ../../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/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Aucune restriction de classe de service trouvée." -#: ../../Zotlabs/Module/Settings.php:1150 -msgid "Simple Privacy Settings:" -msgstr "Paramètres de confidentialité simplifiés :" +#: ../../Zotlabs/Module/Settings.php:69 +msgid "Name is required" +msgstr "Le nom est requis" -#: ../../Zotlabs/Module/Settings.php:1151 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Très public - extrèmement permissif (à n'utiliser qu'en connaissance de cause)" +#: ../../Zotlabs/Module/Settings.php:73 +msgid "Key and Secret are required" +msgstr "Clef et secret sont requis" -#: ../../Zotlabs/Module/Settings.php:1152 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Classique - public par défaut, privé en cas de besoin (comparable aux permissions type réseau social, avec une confidentialité améliorée)" +#: ../../Zotlabs/Module/Settings.php:225 +msgid "Not valid email." +msgstr "Adresse de courriel non valide." -#: ../../Zotlabs/Module/Settings.php:1153 -msgid "Private - default private, never open or public" -msgstr "Privé - privé par défaut, jamais ouvert ni public" +#: ../../Zotlabs/Module/Settings.php:228 +msgid "Protected email address. Cannot change to that email." +msgstr "Adresse de courriel protégée. Impossible de l'utiliser." -#: ../../Zotlabs/Module/Settings.php:1154 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloqué - par défaut, bloqué de/vers tout le monde" +#: ../../Zotlabs/Module/Settings.php:237 +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:1156 -msgid "Allow others to tag your posts" -msgstr "Autoriser les autres à \"étiqueter\" vos publications" +#: ../../Zotlabs/Module/Settings.php:254 +msgid "Password verification failed." +msgstr "La vérification du mot de passe a échoué." -#: ../../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:261 +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:1158 -msgid "Advanced Privacy Settings" -msgstr "Paramètres de confidentialité avancés" +#: ../../Zotlabs/Module/Settings.php:265 +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: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:279 +msgid "Password changed." +msgstr "Le mot de passe a été changé." -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "0 or blank to use the website limit." -msgstr "" +#: ../../Zotlabs/Module/Settings.php:281 +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:1160 -#, php-format -msgid "This website expires after %d days." -msgstr "" +#: ../../Zotlabs/Module/Settings.php:525 +msgid "Settings updated." +msgstr "Paramètres mis à jour." -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "This website does not expire imported content." -msgstr "" +#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 +#: ../../Zotlabs/Module/Settings.php:651 +msgid "Add application" +msgstr "Ajouter une application" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "The website limit takes precedence if lower than your limit." -msgstr "" +#: ../../Zotlabs/Module/Settings.php:592 +msgid "Name of application" +msgstr "Nom de l'application" -#: ../../Zotlabs/Module/Settings.php:1161 -msgid "Maximum Friend Requests/Day:" -msgstr "Nombre maximum de demandes de contact par jour :" +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +msgid "Consumer Key" +msgstr "Clef client" -#: ../../Zotlabs/Module/Settings.php:1161 -msgid "May reduce spam activity" -msgstr "Contribue à réduire l'impact des indésirables" +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 +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:1162 -msgid "Default Post and Publish Permissions" -msgstr "" +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +msgid "Consumer Secret" +msgstr "Secret client" -#: ../../Zotlabs/Module/Settings.php:1164 -msgid "Use my default audience setting for the type of object published" -msgstr "" +#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 +msgid "Redirect" +msgstr "Redirection" -#: ../../Zotlabs/Module/Settings.php:1167 -msgid "Channel permissions category:" -msgstr "Catégorie de permissions du canal :" +#: ../../Zotlabs/Module/Settings.php:595 +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:1173 -msgid "Maximum private messages per day from unknown people:" -msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour :" +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 +msgid "Icon url" +msgstr "URL de l'icône" -#: ../../Zotlabs/Module/Settings.php:1173 -msgid "Useful to reduce spamming" -msgstr "Utile pour réduire les indésirables" +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Facultatif" -#: ../../Zotlabs/Module/Settings.php:1176 -msgid "Notification Settings" -msgstr "Paramètres de notification" +#: ../../Zotlabs/Module/Settings.php:607 +msgid "Application not found." +msgstr "Application introuvable." -#: ../../Zotlabs/Module/Settings.php:1177 -msgid "By default post a status message when:" -msgstr "Par défaut, publier un statut quand :" +#: ../../Zotlabs/Module/Settings.php:650 +msgid "Connected Apps" +msgstr "Applications connectées" -#: ../../Zotlabs/Module/Settings.php:1178 -msgid "accepting a friend request" -msgstr "vous acceptez une demande de contact" +#: ../../Zotlabs/Module/Settings.php:654 +msgid "Client key starts with" +msgstr "La clef partagée commence par" -#: ../../Zotlabs/Module/Settings.php:1179 -msgid "joining a forum/community" -msgstr "vous rejoignez un forum ou une communauté" +#: ../../Zotlabs/Module/Settings.php:655 +msgid "No name" +msgstr "Sans nom" -#: ../../Zotlabs/Module/Settings.php:1180 -msgid "making an interesting profile change" -msgstr "vous faîtes une modification intéressante de votre profil" +#: ../../Zotlabs/Module/Settings.php:656 +msgid "Remove authorization" +msgstr "Révoquer l'autorisation" -#: ../../Zotlabs/Module/Settings.php:1181 -msgid "Send a notification email when:" -msgstr "Envoyer un courriel de notification quand :" +#: ../../Zotlabs/Module/Settings.php:669 +msgid "No feature settings configured" +msgstr "Aucun paramètre de fonctionnalité configuré" -#: ../../Zotlabs/Module/Settings.php:1182 -msgid "You receive a connection request" -msgstr "Vous recevez une demande de contact" +#: ../../Zotlabs/Module/Settings.php:676 +msgid "Feature/Addon Settings" +msgstr "Paramètres des extensions/greffons" -#: ../../Zotlabs/Module/Settings.php:1183 -msgid "Your connections are confirmed" -msgstr "Vos contacts sont confirmés" +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Account Settings" +msgstr "Paramètres du compte" -#: ../../Zotlabs/Module/Settings.php:1184 -msgid "Someone writes on your profile wall" -msgstr "Quelqu'un a écrit sur votre mur" +#: ../../Zotlabs/Module/Settings.php:700 +msgid "Current Password" +msgstr "Mot de passe actuel" -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Someone writes a followup comment" -msgstr "Quelqu'un a commenté vos publications" +#: ../../Zotlabs/Module/Settings.php:701 +msgid "Enter New Password" +msgstr "Entrez votre nouveau mot de passe" -#: ../../Zotlabs/Module/Settings.php:1186 -msgid "You receive a private message" -msgstr "Vous recevez un message privé" +#: ../../Zotlabs/Module/Settings.php:702 +msgid "Confirm New Password" +msgstr "Confirmez le nouveau mot de passe" -#: ../../Zotlabs/Module/Settings.php:1187 -msgid "You receive a friend suggestion" -msgstr "Vous recevez une suggestion d'amitié/contact" +#: ../../Zotlabs/Module/Settings.php:702 +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:1188 -msgid "You are tagged in a post" -msgstr "Vous êtes étiqueté dans une publication" +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 +msgid "Email Address:" +msgstr "Adresse de courriel :" -#: ../../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:706 +msgid "Remove this account including all its channels" +msgstr "Supprimer ce compte et tous ses canaux" -#: ../../Zotlabs/Module/Settings.php:1192 -msgid "Show visual notifications including:" -msgstr "Afficher des notifications visuelles y compris :" +#: ../../Zotlabs/Module/Settings.php:729 +msgid "Additional Features" +msgstr "Fonctionnalités additionnelles" -#: ../../Zotlabs/Module/Settings.php:1194 -msgid "Unseen grid activity" -msgstr "Activité du réseau pas encore consultée" +#: ../../Zotlabs/Module/Settings.php:753 +msgid "Connector Settings" +msgstr "Paramètres du connecteur" -#: ../../Zotlabs/Module/Settings.php:1195 -msgid "Unseen channel activity" -msgstr "Activité non vue sur le canal" +#: ../../Zotlabs/Module/Settings.php:792 +msgid "No special theme for mobile devices" +msgstr "Pas de thème spécifique aux mobiles" -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Unseen private messages" -msgstr "Messages privés non lus" +#: ../../Zotlabs/Module/Settings.php:795 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Expérimental)" -#: ../../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:837 +msgid "Display Settings" +msgstr "Afficher les paramètres" -#: ../../Zotlabs/Module/Settings.php:1197 -msgid "Upcoming events" -msgstr "Événements à venir" +#: ../../Zotlabs/Module/Settings.php:838 +msgid "Theme Settings" +msgstr "Paramètres du thème" -#: ../../Zotlabs/Module/Settings.php:1198 -msgid "Events today" -msgstr "Événements aujourd'hui" +#: ../../Zotlabs/Module/Settings.php:839 +msgid "Custom Theme Settings" +msgstr "Paramètres personnels du thème" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Upcoming birthdays" -msgstr "Anniversaires à venir" +#: ../../Zotlabs/Module/Settings.php:840 +msgid "Content Settings" +msgstr "Paramètres liés au contenu" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Not available in all themes" -msgstr "Pas disponible dans tous les thèmes" +#: ../../Zotlabs/Module/Settings.php:846 +msgid "Display Theme:" +msgstr "Afficher le thème :" -#: ../../Zotlabs/Module/Settings.php:1200 -msgid "System (personal) notifications" -msgstr "Notifications système (personnelles)" +#: ../../Zotlabs/Module/Settings.php:847 +msgid "Mobile Theme:" +msgstr "Thème mobile :" -#: ../../Zotlabs/Module/Settings.php:1201 -msgid "System info messages" -msgstr "Messages d'info système" +#: ../../Zotlabs/Module/Settings.php:848 +msgid "Preload images before rendering the page" +msgstr "Pré-charger les images avant d'afficher la page" -#: ../../Zotlabs/Module/Settings.php:1202 -msgid "System critical alerts" -msgstr "Alertes critiques système" +#: ../../Zotlabs/Module/Settings.php:848 +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:1203 -msgid "New connections" -msgstr "Nouveaux contacts" +#: ../../Zotlabs/Module/Settings.php:849 +msgid "Enable user zoom on mobile devices" +msgstr "Permettre à l'utilisateur d'un mobile d'agrandir le contenu" -#: ../../Zotlabs/Module/Settings.php:1204 -msgid "System Registrations" -msgstr "Inscriptions système" +#: ../../Zotlabs/Module/Settings.php:850 +msgid "Update browser every xx seconds" +msgstr "Mettre à jour le navigateur toutes les xx secondes" -#: ../../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:850 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 secondes, pas de maximum" -#: ../../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:851 +msgid "Maximum number of conversations to load at any time:" +msgstr "Nombre maximal de conversations pouvant être chargées en même temps :" -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Must be greater than 0" -msgstr "Doit être supérieur à 0" +#: ../../Zotlabs/Module/Settings.php:851 +msgid "Maximum of 100 items" +msgstr "100 éléments au maximum" -#: ../../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:852 +msgid "Show emoticons (smilies) as images" +msgstr "Remplacer les émoticônes (smileys) par des images" -#: ../../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:853 +msgid "Link post titles to source" +msgstr "Lier les titres des publications à leur source" -#: ../../Zotlabs/Module/Settings.php:1213 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Mode expert requis (Paramètres > Fonctions supplémentaires) pour ajuster !" +#: ../../Zotlabs/Module/Settings.php:854 +msgid "System Page Layout Editor - (advanced)" +msgstr "Editeur de mise en page des pages systèmes - (avancé)" -#: ../../Zotlabs/Module/Settings.php:1214 -msgid "Miscellaneous Settings" -msgstr "Paramètres divers" +#: ../../Zotlabs/Module/Settings.php:857 +msgid "Use blog/list mode on channel page" +msgstr "Utiliser le mode blog/liste sur la page du canal" -#: ../../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:857 ../../Zotlabs/Module/Settings.php:858 +msgid "(comments displayed separately)" +msgstr "(commentaires affichés séparément)" -#: ../../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:858 +msgid "Use blog/list mode on grid page" +msgstr "Utiliser le mode blog/liste sur la page du réseau" -#: ../../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:859 +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:1218 -msgid "Personal menu to display in your channel pages" -msgstr "Menu personnel à afficher sur les pages de votre canal" +#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 +msgid "click to expand content exceeding this height" +msgstr "cliquer pour dérouler le contenu dépassant cette limite" -#: ../../Zotlabs/Module/Settings.php:1220 -msgid "Remove this channel." -msgstr "Supprimer ce canal" +#: ../../Zotlabs/Module/Settings.php:860 +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:1221 -msgid "Firefox Share $Projectname provider" -msgstr "Connecteur $Projectname pour Firefox Share" +#: ../../Zotlabs/Module/Settings.php:894 +msgid "Nobody except yourself" +msgstr "Personne sauf vous" -#: ../../Zotlabs/Module/Settings.php:1222 -msgid "Start calendar week on monday" -msgstr "Commencer la semaine du calendrier le lundi" +#: ../../Zotlabs/Module/Settings.php:895 +msgid "Only those you specifically allow" +msgstr "Seulement ceux que vous autorisez spécifiquement" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "Serveur $Projectname - configuration" +#: ../../Zotlabs/Module/Settings.php:896 +msgid "Approved connections" +msgstr "Contacts approuvés" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr "Impossible de se connecter à la base de données." +#: ../../Zotlabs/Module/Settings.php:897 +msgid "Any connections" +msgstr "Tous les contacts" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Impossible de se connecter à l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS." +#: ../../Zotlabs/Module/Settings.php:898 +msgid "Anybody on this website" +msgstr "Tous les utilisateurs du hub" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "Impossible de créer la table." +#: ../../Zotlabs/Module/Settings.php:899 +msgid "Anybody in this network" +msgstr "Tous les utilisateurs sur ce réseau" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "La base de données de votre site a été installée." +#: ../../Zotlabs/Module/Settings.php:900 +msgid "Anybody authenticated" +msgstr "Tous les utilisateurs authentifiés" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -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/Settings.php:901 +msgid "Anybody on the internet" +msgstr "Tous les utilisateurs d'Internet" -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Merci de consulter le fichier \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Settings.php:976 +msgid "Publish your default profile in the network directory" +msgstr "Publier votre profil par défaut dans l'annuaire du réseau" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "Vérification du système" +#: ../../Zotlabs/Module/Settings.php:981 +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/Setup.php:268 -msgid "Check again" -msgstr "Re-vérifier" +#: ../../Zotlabs/Module/Settings.php:990 +msgid "Your channel address is" +msgstr "L'adresse de votre canal est" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Connexion à la base de données" +#: ../../Zotlabs/Module/Settings.php:1032 +msgid "Channel Settings" +msgstr "Paramètres du canal" -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Pour installer $Projectname, nous avons besoin de savoir comment se connecter à votre base de données." +#: ../../Zotlabs/Module/Settings.php:1039 +msgid "Basic Settings" +msgstr "Paramètres standard" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Merci de contacter votre prestataire d'hébergement ou votre administrateur de site si vous avez des questions à propos de ces paramètres." +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 +msgid "Full Name:" +msgstr "Nom complet :" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de données que vous allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer." +#: ../../Zotlabs/Module/Settings.php:1042 +msgid "Your Timezone:" +msgstr "Votre fureau horaire :" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "Nom du serveur de base de données" +#: ../../Zotlabs/Module/Settings.php:1043 +msgid "Default Post Location:" +msgstr "Emplacement de publication par défaut :" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "Par défaut 127.0.0.1" +#: ../../Zotlabs/Module/Settings.php:1043 +msgid "Geographical location to display on your posts" +msgstr "Emplacement géographique à afficher sur vos publications" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Port de la base de données" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Use Browser Location:" +msgstr "Utiliser la géolocalisation du navigateur :" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Numéro TCP du port - utilisez 0 pour la valeur par défaut" +#: ../../Zotlabs/Module/Settings.php:1046 +msgid "Adult Content" +msgstr "Contenu \"adulte\"" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Identifiant de connexion à la Base de Données" +#: ../../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 "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 #NSFW - Not Safe For Work)" -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Mot de passe de connexion à la Base de Données" +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Security and Privacy Settings" +msgstr "Paramètres de sécurité et de confidentialité" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Nom de la Base de Données" +#: ../../Zotlabs/Module/Settings.php:1051 +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/Setup.php:302 -msgid "Database Type" -msgstr "Type de base de données" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Hide my online presence" +msgstr "Cacher ma présence en ligne" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "Adresse de courriel de l'administrateur du site" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Prevents displaying in your profile that you are online" +msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web." +#: ../../Zotlabs/Module/Settings.php:1055 +msgid "Simple Privacy Settings:" +msgstr "Paramètres de confidentialité simplifiés :" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "URL du site web" +#: ../../Zotlabs/Module/Settings.php:1056 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Très public - extrèmement permissif (à n'utiliser qu'en connaissance de cause)" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Veuillez utiliser SSL/TLS (https) si disponible." +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Classique - public par défaut, privé en cas de besoin (comparable aux permissions type réseau social, avec une confidentialité améliorée)" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Veuillez choisir un fuseau horaire par défaut pour votre site" +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Private - default private, never open or public" +msgstr "Privé - privé par défaut, jamais ouvert ni public" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Paramètres du site" +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloqué - par défaut, bloqué de/vers tout le monde" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "Activer les fonctionnalités avancées de $Projectname ?" +#: ../../Zotlabs/Module/Settings.php:1061 +msgid "Allow others to tag your posts" +msgstr "Autoriser les autres à \"étiqueter\" vos publications" -#: ../../Zotlabs/Module/Setup.php:347 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Certaines fonctionnalités avancées, bien qu'utiles, sont plus adaptées aux utilisateurs chevronnés." - -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." -msgstr "" +"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/Setup.php:389 -msgid "PHP version" -msgstr "" +#: ../../Zotlabs/Module/Settings.php:1063 +msgid "Advanced Privacy Settings" +msgstr "Paramètres de confidentialité avancés" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Impossible de trouver une version CLI de PHP dans le PATH du serveur web." +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "Expire other channel content after this many days" +msgstr "Faire expirer le contenu des autres canaux après n jours" -#: ../../Zotlabs/Module/Setup.php:405 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la synchronisation en arrière-plan via cron." +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "0 or blank to use the website limit." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" -msgstr "Chemin vers l'éxecutable PHP" +#: ../../Zotlabs/Module/Settings.php:1065 +#, php-format +msgid "This website expires after %d days." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans." +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "This website does not expire imported content." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" -msgstr "PHP en ligne de commande (CLI)" +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "The website limit takes precedence if lower than your limit." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée." +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "Maximum Friend Requests/Day:" +msgstr "Nombre maximum de demandes de contact par jour :" -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." -msgstr "Elle est nécessaire pour la distribution des messages." +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "May reduce spam activity" +msgstr "Contribue à réduire l'impact des indésirables" -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Settings.php:1067 +msgid "Default Post and Publish Permissions" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:445 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "Votre taille de téléversement maximale totale autorisée est fixée à %s. La taille maximale d'un seul fichier à téléverser est fixée à %s. Vous pouvez téléverser jusqu'à %d fichier(s) à la fois." +#: ../../Zotlabs/Module/Settings.php:1069 +msgid "Use my default audience setting for the type of object published" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Vous pouvez ajuster ces paramètres dans le php.ini du serveur." +#: ../../Zotlabs/Module/Settings.php:1072 +msgid "Channel permissions category:" +msgstr "Catégorie de permissions du canal :" -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" -msgstr "Limites de téléversement de PHP" +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "Maximum private messages per day from unknown people:" +msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour :" -#: ../../Zotlabs/Module/Setup.php:475 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Erreur : la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement" +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "Useful to reduce spamming" +msgstr "Utile pour réduire les indésirables" -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\"." +#: ../../Zotlabs/Module/Settings.php:1081 +msgid "Notification Settings" +msgstr "Paramètres de notification" -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" -msgstr "Générer les clefs de chiffrement" +#: ../../Zotlabs/Module/Settings.php:1082 +msgid "By default post a status message when:" +msgstr "Par défaut, publier un statut quand :" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" -msgstr "module PHP libCurl" +#: ../../Zotlabs/Module/Settings.php:1083 +msgid "accepting a friend request" +msgstr "vous acceptez une demande de contact" -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" -msgstr "module PHP GD graphics" +#: ../../Zotlabs/Module/Settings.php:1084 +msgid "joining a forum/community" +msgstr "vous rejoignez un forum ou une communauté" -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" -msgstr "module PHP OpenSSL" +#: ../../Zotlabs/Module/Settings.php:1085 +msgid "making an interesting profile change" +msgstr "vous faîtes une modification intéressante de votre profil" -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" -msgstr "module PHP postgres ou mysqli" +#: ../../Zotlabs/Module/Settings.php:1086 +msgid "Send a notification email when:" +msgstr "Envoyer un courriel de notification quand :" -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" -msgstr "module PHP mb_string" +#: ../../Zotlabs/Module/Settings.php:1087 +msgid "You receive a connection request" +msgstr "Vous recevez une demande de contact" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "xml PHP module" -msgstr "module PHP xml" +#: ../../Zotlabs/Module/Settings.php:1088 +msgid "Your connections are confirmed" +msgstr "Vos contacts sont confirmés" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 -msgid "Apache mod_rewrite module" -msgstr "module Apache mod_rewrite" +#: ../../Zotlabs/Module/Settings.php:1089 +msgid "Someone writes on your profile wall" +msgstr "Quelqu'un a écrit sur votre mur" -#: ../../Zotlabs/Module/Setup.php:500 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Erreur : le module mod-rewrite du serveur web Apache est requis, mais pas installé." +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "Someone writes a followup comment" +msgstr "Quelqu'un a commenté vos publications" -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "You receive a private message" +msgstr "Vous recevez un message privé" -#: ../../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 : proc_open est requis, mais soit n'est pas installé, soit est désactivé dans le php.ini" +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "You receive a friend suggestion" +msgstr "Vous recevez une suggestion d'amitié/contact" -#: ../../Zotlabs/Module/Setup.php:514 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Erreur : le module libCURL de PHP est requis, mais pas installé." +#: ../../Zotlabs/Module/Settings.php:1093 +msgid "You are tagged in a post" +msgstr "Vous êtes étiqueté dans une publication" -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Erreur : le module GD de PHP avec support JPEG est requis, mais pas installé." +#: ../../Zotlabs/Module/Settings.php:1094 +msgid "You are poked/prodded/etc. in a post" +msgstr "Vous êtes tapoté/encouragé/etc. dans une publication" -#: ../../Zotlabs/Module/Setup.php:522 -msgid "Error: openssl PHP module required but not installed." -msgstr "Erreur : le module openssl de PHP est requis, mais pas installé." +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Show visual notifications including:" +msgstr "Afficher des notifications visuelles y compris :" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Erreur : un module PHP mysqli ou postgres est requis, mais aucun des deux n'est installé." +#: ../../Zotlabs/Module/Settings.php:1099 +msgid "Unseen grid activity" +msgstr "Activité du réseau pas encore consultée" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Erreur : le module mb_string de PHP est requis, mais pas installé." +#: ../../Zotlabs/Module/Settings.php:1100 +msgid "Unseen channel activity" +msgstr "Activité non vue sur le canal" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Erreur : le module xml de PHP est requis pour le DAV, mais pas installé." +#: ../../Zotlabs/Module/Settings.php:1101 +msgid "Unseen private messages" +msgstr "Messages privés non lus" -#: ../../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/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "Recommended" +msgstr "Recommandé" -#: ../../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/Settings.php:1102 +msgid "Upcoming events" +msgstr "Événements à venir" -#: ../../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/Settings.php:1103 +msgid "Events today" +msgstr "Événements aujourd'hui" -#: ../../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/Settings.php:1104 +msgid "Upcoming birthdays" +msgstr "Anniversaires à venir" -#: ../../Zotlabs/Module/Setup.php:558 -msgid ".htconfig.php is writable" -msgstr "Le fichier .htconfig.php est accessible en écriture" +#: ../../Zotlabs/Module/Settings.php:1104 +msgid "Not available in all themes" +msgstr "Pas disponible dans tous les thèmes" -#: ../../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/Settings.php:1105 +msgid "System (personal) notifications" +msgstr "Notifications système (personnelles)" -#: ../../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/Settings.php:1106 +msgid "System info messages" +msgstr "Messages d'info système" -#: ../../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/Settings.php:1107 +msgid "System critical alerts" +msgstr "Alertes critiques système" -#: ../../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/Settings.php:1108 +msgid "New connections" +msgstr "Nouveaux contacts" -#: ../../Zotlabs/Module/Setup.php:578 -#, php-format -msgid "%s is writable" -msgstr "Permission d'écriture sur %s activée" +#: ../../Zotlabs/Module/Settings.php:1109 +msgid "System Registrations" +msgstr "Inscriptions système" -#: ../../Zotlabs/Module/Setup.php:594 +#: ../../Zotlabs/Module/Settings.php:1110 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 "" +"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/Setup.php:598 -msgid "store is writable" -msgstr "'store' est accessible en écriture" +#: ../../Zotlabs/Module/Settings.php:1112 +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/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/Settings.php:1112 +msgid "Must be greater than 0" +msgstr "Doit être supérieur à 0" -#: ../../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é !" +#: ../../Zotlabs/Module/Settings.php:1114 +msgid "Advanced Account/Page Type Settings" +msgstr "Paramètres avancés de compte/type de page" -#: ../../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/Settings.php:1115 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifie le comportement de ce compte pour des situations particulières" -#: ../../Zotlabs/Module/Setup.php:634 +#: ../../Zotlabs/Module/Settings.php:1118 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é." +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Mode expert requis (Paramètres > Fonctions supplémentaires) pour ajuster !" -#: ../../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/Settings.php:1119 +msgid "Miscellaneous Settings" +msgstr "Paramètres divers" -#: ../../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/Settings.php:1120 +msgid "Default photo upload folder" +msgstr "Répertoire par défaut pour les photos téléversées" -#: ../../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/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1121 +msgid "%Y - current year, %m - current month" +msgstr "%Y - année en cours, %m - mois en cours" -#: ../../Zotlabs/Module/Setup.php:641 -msgid "SSL certificate validation" -msgstr "Validation du certificat SSL/TLS" +#: ../../Zotlabs/Module/Settings.php:1121 +msgid "Default file upload folder" +msgstr "Répertoire par défaut pour les fichiers téléversés" -#: ../../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 :" +#: ../../Zotlabs/Module/Settings.php:1123 +msgid "Personal menu to display in your channel pages" +msgstr "Menu personnel à afficher sur les pages de votre canal" -#: ../../Zotlabs/Module/Setup.php:650 -msgid "Url rewrite is working" -msgstr "La réécriture d'URL fonctionne" +#: ../../Zotlabs/Module/Settings.php:1125 +msgid "Remove this channel." +msgstr "Supprimer ce canal" -#: ../../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/Settings.php:1126 +msgid "Firefox Share $Projectname provider" +msgstr "Connecteur $Projectname pour Firefox Share" -#: ../../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/Settings.php:1127 +msgid "Start calendar week on monday" +msgstr "Commencer la semaine du calendrier le lundi" -#: ../../Zotlabs/Module/Setup.php:720 -msgid "

What next

" -msgstr "

Et maintenant

" +#: ../../Zotlabs/Module/Setup.php:179 +msgid "$Projectname Server - Setup" +msgstr "Serveur $Projectname - configuration" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:183 +msgid "Could not connect to database." +msgstr "Impossible de se connecter à la base de données." + +#: ../../Zotlabs/Module/Setup.php:187 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT : Vous devez créer [manuellement] une tâche planifiée pour les mises à jour du réseau." +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Impossible de se connecter à l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS." -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Fichiers : partagés avec moi" +#: ../../Zotlabs/Module/Setup.php:194 +msgid "Could not create table." +msgstr "Impossible de créer la table." -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NOUVEAU" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Your site database has been installed." +msgstr "La base de données de votre site a été installée." -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Supprimer tous les fichiers" +#: ../../Zotlabs/Module/Setup.php:203 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +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/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Supprimer ce fichier" +#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 +#: ../../Zotlabs/Module/Setup.php:721 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Merci de consulter le fichier \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Elément mis à jour" +#: ../../Zotlabs/Module/Setup.php:263 +msgid "System check" +msgstr "Vérification du système" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Stockage de l'objet : échec" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "Check again" +msgstr "Re-vérifier" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Elément ajouté" +#: ../../Zotlabs/Module/Setup.php:290 +msgid "Database connection" +msgstr "Connexion à la base de données" -#: ../../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/Setup.php:291 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Pour installer $Projectname, nous avons besoin de savoir comment se connecter à votre base de données." -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Montrer élément" +#: ../../Zotlabs/Module/Setup.php:292 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Merci de contacter votre prestataire d'hébergement ou votre administrateur de site si vous avez des questions à propos de ces paramètres." -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "élément introuvable." +#: ../../Zotlabs/Module/Setup.php:293 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de données que vous allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer." -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Modifier élément" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Server Name" +msgstr "Nom du serveur de base de données" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Choisissez un profil" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Default is 127.0.0.1" +msgstr "Par défaut 127.0.0.1" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Publier une activité" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Port" +msgstr "Port de la base de données" -#: ../../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/Setup.php:298 +msgid "Communication port number - use 0 for default" +msgstr "Numéro TCP du port - utilisez 0 pour la valeur par défaut" -#: ../../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/Setup.php:299 +msgid "Database Login Name" +msgstr "Identifiant de connexion à la Base de Données" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL de l'élément (facultatif)" +#: ../../Zotlabs/Module/Setup.php:300 +msgid "Database Login Password" +msgstr "Mot de passe de connexion à la Base de Données" -#: ../../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/Setup.php:301 +msgid "Database Name" +msgstr "Nom de la Base de Données" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Ajouter l'élément à votre profil" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Type" +msgstr "Type de base de données" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Impossible de créer la source. Aucun canal selectionné." +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "Site administrator email address" +msgstr "Adresse de courriel de l'administrateur du site" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Source créée." +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web." -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Source mise à jour." +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Website URL" +msgstr "URL du site web" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Please use SSL (https) URL if available." +msgstr "Veuillez utiliser SSL/TLS (https) si disponible." -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 -msgid "Channel Sources" -msgstr "Sources du canal" +#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 +msgid "Please select a default timezone for your website" +msgstr "Veuillez choisir un fuseau horaire par défaut pour votre site" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Gérer les sources distantes de contenu pour votre canal." +#: ../../Zotlabs/Module/Setup.php:333 +msgid "Site settings" +msgstr "Paramètres du site" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nouvelle source" +#: ../../Zotlabs/Module/Setup.php:347 +msgid "Enable $Projectname advanced features?" +msgstr "Activer les fonctionnalités avancées de $Projectname ?" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Module/Setup.php:347 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importer le contenu sélectionné ou tout le contenu du canal suivant vers ce canal et le distribuer selon vos paramètres de canal." +"Some advanced features, while useful - may be best suited for technically " +"proficient audiences" +msgstr "Certaines fonctionnalités avancées, bien qu'utiles, sont plus adaptées aux utilisateurs chevronnés." -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "N'importer le contenu que s'il contient ces mots (un par ligne)" +#: ../../Zotlabs/Module/Setup.php:388 +msgid "PHP version 5.5 or greater is required." +msgstr "" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Laissez vide pour importer tout le contenu public" +#: ../../Zotlabs/Module/Setup.php:389 +msgid "PHP version" +msgstr "" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Nom du canal" +#: ../../Zotlabs/Module/Setup.php:404 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Impossible de trouver une version CLI de PHP dans le PATH du serveur web." -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Setup.php:405 msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la synchronisation en arrière-plan via cron." + +#: ../../Zotlabs/Module/Setup.php:409 +msgid "PHP executable path" +msgstr "Chemin vers l'éxecutable PHP" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Source introuvable." +#: ../../Zotlabs/Module/Setup.php:409 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans." -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Modifier la source" +#: ../../Zotlabs/Module/Setup.php:414 +msgid "Command line PHP" +msgstr "PHP en ligne de commande (CLI)" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Supprimer la source" +#: ../../Zotlabs/Module/Setup.php:423 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée." -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Source supprimée" +#: ../../Zotlabs/Module/Setup.php:424 +msgid "This is required for message delivery to work." +msgstr "Elle est nécessaire pour la distribution des messages." -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Impossible de supprimer la source." +#: ../../Zotlabs/Module/Setup.php:427 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Subthread.php:118 +#: ../../Zotlabs/Module/Setup.php:445 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s suit %3$s de %2$s" +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "Votre taille de téléversement maximale totale autorisée est fixée à %s. La taille maximale d'un seul fichier à téléverser est fixée à %s. Vous pouvez téléverser jusqu'à %d fichier(s) à la fois." -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s ne suit plus %3$s de %2$s" +#: ../../Zotlabs/Module/Setup.php:450 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Vous pouvez ajuster ces paramètres dans le php.ini du serveur." -#: ../../Zotlabs/Module/Suggest.php:39 +#: ../../Zotlabs/Module/Setup.php:452 +msgid "PHP upload limits" +msgstr "Limites de téléversement de PHP" + +#: ../../Zotlabs/Module/Setup.php:475 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Aucune suggestion disponible. Si le site est récent, merci de re-tenter dans 24 heures." +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Erreur : la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignorer/Cacher" +#: ../../Zotlabs/Module/Setup.php:476 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\"." -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "publication" +#: ../../Zotlabs/Module/Setup.php:479 +msgid "Generate encryption keys" +msgstr "Générer les clefs de chiffrement" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 -msgid "comment" -msgstr "commentaire" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "libCurl PHP module" +msgstr "module PHP libCurl" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s a étiqueté le %3$s de %2$s avec %4$s" +#: ../../Zotlabs/Module/Setup.php:492 +msgid "GD graphics PHP module" +msgstr "module PHP GD graphics" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Étiquette retirée" +#: ../../Zotlabs/Module/Setup.php:493 +msgid "OpenSSL PHP module" +msgstr "module PHP OpenSSL" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Retirer une étiquette à l'élément" +#: ../../Zotlabs/Module/Setup.php:494 +msgid "mysqli or postgres PHP module" +msgstr "module PHP postgres ou mysqli" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Étiquette à retirer :" +#: ../../Zotlabs/Module/Setup.php:495 +msgid "mb_string PHP module" +msgstr "module PHP mb_string" -#: ../../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/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "module PHP mcrypt" -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Actions" +#: ../../Zotlabs/Module/Setup.php:497 +msgid "xml PHP module" +msgstr "module PHP xml" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Lien vers la page" +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 +msgid "Apache mod_rewrite module" +msgstr "module Apache mod_rewrite" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Titre de la page" +#: ../../Zotlabs/Module/Setup.php:501 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Erreur : le module mod-rewrite du serveur web Apache est requis, mais pas installé." -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "" +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 +msgid "proc_open" +msgstr "proc_open" -#: ../../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/Setup.php:507 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Erreur : proc_open est requis, mais soit n'est pas installé, soit est désactivé dans le php.ini" -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "" +#: ../../Zotlabs/Module/Setup.php:515 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Erreur : le module libCURL de PHP est requis, mais pas installé." -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Setup.php:519 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Erreur : le module GD de PHP avec support JPEG est requis, mais pas installé." -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "" +#: ../../Zotlabs/Module/Setup.php:523 +msgid "Error: openssl PHP module required but not installed." +msgstr "Erreur : le module openssl de PHP est requis, mais pas installé." -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "" +#: ../../Zotlabs/Module/Setup.php:527 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Erreur : un module PHP mysqli ou postgres est requis, mais aucun des deux n'est installé." -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "" +#: ../../Zotlabs/Module/Setup.php:531 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Erreur : le module mb_string de PHP est requis, mais pas installé." -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "" +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Erreur : le module mcrypt de PHP est requis, mais pas installé." -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "" +#: ../../Zotlabs/Module/Setup.php:539 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Erreur : le module xml de PHP est requis pour le DAV, mais pas installé." -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "" +#: ../../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'installeur web a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable." -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "OK" +#: ../../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 "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/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "" +#: ../../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 "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/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "" +#: ../../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 "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/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "" +#: ../../Zotlabs/Module/Setup.php:563 +msgid ".htconfig.php is writable" +msgstr "Le fichier .htconfig.php est accessible en écriture" -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "" +#: ../../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 "$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/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" +#: ../../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 "" -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "" +#: ../../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 "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/Viewconnections.php:65 -msgid "No connections." -msgstr "Aucun contact." +#: ../../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 "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/Viewconnections.php:78 +#: ../../Zotlabs/Module/Setup.php:583 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visiter le profil de %s [%s]" +msgid "%s is writable" +msgstr "Permission d'écriture sur %s activée" -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" -msgstr "Voir les contacts" +#: ../../Zotlabs/Module/Setup.php:599 +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." -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Source de l'élément" +#: ../../Zotlabs/Module/Setup.php:603 +msgid "store is writable" +msgstr "'store' est accessible en écriture" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autoriser l'application à se connecter" +#: ../../Zotlabs/Module/Setup.php:636 +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/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é :" +#: ../../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 "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é !" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Merci de vous identifier pour continuer." +#: ../../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 "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/Api.php:87 +#: ../../Zotlabs/Module/Setup.php:639 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?" +"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/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Recherche xchan" +#: ../../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 "Ceci peut causer des problèmes d'ergonomie ailleurs (pas seulement sur votre site), nous devons donc insister sur ce prérequis." -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Recherche xchan commençant par (ou adresse \"webbie\") :" +#: ../../Zotlabs/Module/Setup.php:641 +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/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "Il manque le nom du salon" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "SSL certificate validation" +msgstr "Validation du certificat SSL/TLS" -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "Un salon avec ce nom existe déjà" +#: ../../Zotlabs/Module/Setup.php:649 +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 :" -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "Identifiant de salon invalide." +#: ../../Zotlabs/Module/Setup.php:652 +msgid "Url rewrite is working" +msgstr "La réécriture d'URL fonctionne" -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "Salon introuvable." +#: ../../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 "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/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "Le salon est plein" +#: ../../Zotlabs/Module/Setup.php:685 +msgid "Errors encountered creating database tables." +msgstr "Erreurs rencontrées pendant la création de tables de BDD." -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 -msgid "$Projectname Notification" -msgstr "Notification $Projectname" +#: ../../Zotlabs/Module/Setup.php:719 +msgid "

What next

" +msgstr "

Et maintenant

" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 -msgid "$projectname" -msgstr "$projectname" +#: ../../Zotlabs/Module/Setup.php:720 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT : Vous devez créer [manuellement] une tâche planifiée pour les mises à jour du réseau." -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 -msgid "Thank You," -msgstr "Merci," +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Fichiers : partagés avec moi" -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 -#, php-format -msgid "%s Administrator" -msgstr "l'administrateur de %s" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NOUVEAU" -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Supprimer tous les fichiers" -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:Notify] Nouveau courriel reçu à %s" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Supprimer ce fichier" -#: ../../Zotlabs/Lib/Enotify.php:106 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, vous avez reçu un message privé sur %3$s, de la part de %2$s." +msgid "Version %s" +msgstr "Version %s" -#: ../../Zotlabs/Lib/Enotify.php:107 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s vous a envoyé %2$s." +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Greffons/extensions/applications installés :" -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" -msgstr "un message privé" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Aucun greffon/extension/application installé" -#: ../../Zotlabs/Lib/Enotify.php:108 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Merci de visiter %s pour voir et/ou répondre à vos messages privés." +#: ../../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/Lib/Enotify.php:164 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s a commenté sur [zrl=%3$s]%4$s[/zrl]" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Étiquette :" -#: ../../Zotlabs/Lib/Enotify.php:172 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s a commenté sur [zrl=%3$s]%5$s de %4$s[/zrl]" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Dernière récupération en tâche de fond :" -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s a commenté [zrl=%3$s]votre %4$s[/zrl]" +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Charge moyenne actuelle :" -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:Notify] Commentaire de %2$s sur conversation #%1$d" +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Tourne à l'adresse internet" -#: ../../Zotlabs/Lib/Enotify.php:193 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s a commenté un élément de conversation que vous suivez." +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Merci de visiter hubzilla.org pour en apprendre davantage sur $Projectname." -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Merci de visiter %s pour voir et/ou répondre sur cette conversation." +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Pour remonter bogues et problèmes, merci de visiter" -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:Notify] %s a publié sur votre profil" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "Problèmes $projectname" -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s a publié sur votre profil à %3$s" +#: ../../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/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s a publié sur [zrl=%3$s]votre profil[/zrl]" +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Administrateurs du site" -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla:Notify] %s vous a étiqueté" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Impossible de créer la source. Aucun canal selectionné." -#: ../../Zotlabs/Lib/Enotify.php:231 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, vous avez été étiqueté sur %3$s par %2$s" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Source créée." -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]vous a étiqueté[/zrl]." +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Source mise à jour." -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla:Notify] %1$s vous a tapoté" +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Lib/Enotify.php:245 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s vous a tapoté sur %3$s" +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:71 +msgid "Channel Sources" +msgstr "Sources du canal" -#: ../../Zotlabs/Lib/Enotify.php:246 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]vous a tapoté[/zrl]." +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Gérer les sources distantes de contenu pour votre canal." -#: ../../Zotlabs/Lib/Enotify.php:262 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla:Notify] %s a étiqueté votre publication" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nouvelle source" -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s a étiqueté votre publication sur %3$s" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importer le contenu sélectionné ou tout le contenu du canal suivant vers ce canal et le distribuer selon vos paramètres de canal." -#: ../../Zotlabs/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s a étiqueté [zrl=%3$s]votre publication[/zrl]" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "N'importer le contenu que s'il contient ces mots (un par ligne)" -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla:Notify] Nouvelle présentation" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Laissez vide pour importer tout le contenu public" -#: ../../Zotlabs/Lib/Enotify.php:277 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, vous avez reçu une demande de contact de '%2$s' sur %3$s" +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Nom du canal" -#: ../../Zotlabs/Lib/Enotify.php:278 -#, php-format +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, vous avez reçu [zrl=%2$s]une demande de contact[/zrl] de %3$s." +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Vous pouvez visiter leur profil sur %s" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Source introuvable." -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Merci de visiter %s avant d'approuver (ou non) cette demande de contact." +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Modifier la source" + +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Supprimer la source" -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:Notify] Nouvel(le) ami(e) suggéré(e)" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Source supprimée" -#: ../../Zotlabs/Lib/Enotify.php:292 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, vous avez reçu une suggestion d'ami(e) de '%2$s' à %3$s" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Impossible de supprimer la source." -#: ../../Zotlabs/Lib/Enotify.php:293 +#: ../../Zotlabs/Module/Subthread.php:118 #, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, avez reçu %3$s comme [zrl=%2$s]une suggestion d'ami(e)[/zrl] de %4$s." +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s suit %3$s de %2$s" -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "Nom :" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s ne suit plus %3$s de %2$s" -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "Photo :" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Aucune suggestion disponible. Si le site est récent, merci de re-tenter dans 24 heures." -#: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Merci de visiter %s pour donner suite (ou non) à cette suggestion." +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignorer/Cacher" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:Notify]" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +msgid "post" +msgstr "publication" -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "a publié un nouveau message" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "commentaire" -#: ../../Zotlabs/Lib/Enotify.php:668 +#: ../../Zotlabs/Module/Tagger.php:100 #, php-format -msgid "commented on %s's post" -msgstr "a commenté la publication de %s" +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s a étiqueté le %3$s de %2$s avec %4$s" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Administrateur" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Étiquette retirée" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Retirer une étiquette à l'élément" -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Étiquette à retirer :" -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Elément mis à jour" -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Stockage de l'objet : échec" -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Elément ajouté" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Suggérer des canaux" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Connexion" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Montrer élément" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Réseau" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "élément introuvable." -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Mon canal" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Modifier élément" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Événements" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Choisissez un profil" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Annuaire" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Publier une activité" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Messages" +#: ../../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/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Clavardage" +#: ../../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/Lib/Apps.php:231 -msgid "Probe" -msgstr "Sonder" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL de l'élément (facultatif)" -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Suggérer" +#: ../../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/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Un canal au hasard" +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Ajouter l'élément à votre profil" -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Invitation" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exporter le canal" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Fonctionalités" +#: ../../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/Lib/Apps.php:237 -msgid "Post" -msgstr "Envoyer" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exporter le contenu" -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Acheter" +#: ../../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/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Message Privé" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporter vos publications d'une année en particulier" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "Sélectionner" +#: ../../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/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "Enregistrer dans le dossier" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez %2$s" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Je participerai" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez %2$s" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "Je ne participerai pas" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Ces fichiers de contenu peuvent être importés ou restaurés en visitant %2$s 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/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Je participerai peut-être" +#: ../../Zotlabs/Module/Viewconnections.php:62 +msgid "No connections." +msgstr "Aucun contact." -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Je suis d'accord" +#: ../../Zotlabs/Module/Viewconnections.php:75 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visiter le profil de %s [%s]" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "Je ne suis pas d'accord" +#: ../../Zotlabs/Module/Viewconnections.php:104 +msgid "View Connections" +msgstr "Voir les contacts" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Je m'abstiens" +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Source de l'élément" -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Mettre en avant (étoile)" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Pages web" -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Ne plus mettre en avant" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Actions" -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "(Dés)activer l'étoile" +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Lien vers la page" -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "mis en avant" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Titre de la page" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Signature du message validée" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Recherche xchan" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Signature du message incorrecte" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Recherche xchan commençant par (ou adresse \"webbie\") :" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Ajouter une étiquette" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Administrateur" -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 -msgid "like" -msgstr "aiment" +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "n'aiment pas" +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "Share This" -msgstr "Partager" +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "share" -msgstr "partager" +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:275 -msgid "Delivery Report" -msgstr "Rapport de distribution" +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commentaire" -msgstr[1] "%d commentaires" +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Suggérer des canaux" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 -#, php-format -msgid "View %s's profile - %s" -msgstr "Voir le profil de %s - %s" +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Connexion" -#: ../../Zotlabs/Lib/ThreadItem.php:326 -msgid "to" -msgstr "à" +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Réseau" -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "via" -msgstr "via" +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Mon canal" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "Wall-to-Wall" -msgstr "Mur-à-mur" +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Événements" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via Wall-To-Wall:" -msgstr "par Mur-à-mur :" +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Annuaire" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 -#, php-format -msgid "from %s" -msgstr "de %s" +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Messages" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" -msgstr "dernière modification : %s" +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Clavardage" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" -msgstr "Expire : %s" +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Sonder" -#: ../../Zotlabs/Lib/ThreadItem.php:370 -msgid "Save Bookmarks" -msgstr "Enregistrer les favoris" +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Suggérer" -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Add to Calendar" -msgstr "Ajouter au Calendrier" +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Un canal au hasard" -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Mark all seen" -msgstr "Tout marquer comme vu" +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Invitation" -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "" +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Fonctionalités" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 -msgid "Bold" -msgstr "Gras" +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Envoyer" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 -msgid "Italic" -msgstr "Italique" +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Acheter" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 -msgid "Underline" -msgstr "Souligné" +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" +msgstr "Il manque le nom du salon" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 -msgid "Quote" -msgstr "Citation" +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" +msgstr "Un salon avec ce nom existe déjà" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 -msgid "Code" -msgstr "Code" +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." +msgstr "Identifiant de salon invalide." -#: ../../Zotlabs/Lib/ThreadItem.php:716 -msgid "Image" -msgstr "Image" +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." +msgstr "Salon introuvable." -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Insert Link" -msgstr "Insérer un lien" +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" +msgstr "Le salon est plein" -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Video" -msgstr "Vidéo" +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +msgid "$Projectname Notification" +msgstr "Notification $Projectname" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Visible pour vos contacts seulement" +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +msgid "$projectname" +msgstr "$projectname" -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +msgid "Thank You," +msgstr "Merci," -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Public" +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 +#, php-format +msgid "%s Administrator" +msgstr "l'administrateur de %s" -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:100 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#: ../../Zotlabs/Lib/Enotify.php:104 #, php-format -msgid "Any account on %s" -msgstr "" +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Notify] Nouveau courriel reçu à %s" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:106 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, vous avez reçu un message privé sur %3$s, de la part de %2$s." -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:107 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s vous a envoyé %2$s." -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" +msgstr "un message privé" -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:108 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Merci de visiter %s pour voir et/ou répondre à vos messages privés." -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:164 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s a commenté sur [zrl=%3$s]%4$s[/zrl]" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:172 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s a commenté sur [zrl=%3$s]%5$s de %4$s[/zrl]" -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:181 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s a commenté [zrl=%3$s]votre %4$s[/zrl]" -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:192 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla:Notify] Commentaire de %2$s sur conversation #%1$d" -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:193 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s a commenté un élément de conversation que vous suivez." -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Aucun nom d'utilisateur dans le fichier d'import." +#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 +#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 +#: ../../Zotlabs/Lib/Enotify.php:269 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Merci de visiter %s pour voir et/ou répondre sur cette conversation." -#: ../../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." +#: ../../Zotlabs/Lib/Enotify.php:202 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla:Notify] %s a publié sur votre profil" -#: ../../include/dba/dba_driver.php:171 +#: ../../Zotlabs/Lib/Enotify.php:204 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Impossible de trouver les infos DNS du serveur de BDD '%s'" +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s a publié sur votre profil à %3$s" -#: ../../include/photos.php:114 +#: ../../Zotlabs/Lib/Enotify.php:206 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'image dépasse la taille limite de %lu octets" +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s a publié sur [zrl=%3$s]votre profil[/zrl]" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "L'image est vide." +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla:Notify] %s vous a étiqueté" -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Le stockage de l'image a échoué." +#: ../../Zotlabs/Lib/Enotify.php:231 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, vous avez été étiqueté sur %3$s par %2$s" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "une nouvelle photo" +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]vous a étiqueté[/zrl]." -#: ../../include/photos.php:303 +#: ../../Zotlabs/Lib/Enotify.php:244 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s a publié %2$s pour %3$s" +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla:Notify] %1$s vous a tapoté" -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Albums photo" +#: ../../Zotlabs/Lib/Enotify.php:245 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s vous a tapoté sur %3$s" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Ajouter des photos" +#: ../../Zotlabs/Lib/Enotify.php:246 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]vous a tapoté[/zrl]." -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Déconnexion" +#: ../../Zotlabs/Lib/Enotify.php:262 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla:Notify] %s a étiqueté votre publication" -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Mettre fin à la session" +#: ../../Zotlabs/Lib/Enotify.php:263 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s a étiqueté votre publication sur %3$s" -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Mon canal" +#: ../../Zotlabs/Lib/Enotify.php:264 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s a étiqueté [zrl=%3$s]votre publication[/zrl]" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Vos publications et conversations" +#: ../../Zotlabs/Lib/Enotify.php:276 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla:Notify] Nouvelle présentation" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Votre profil" +#: ../../Zotlabs/Lib/Enotify.php:277 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, vous avez reçu une demande de contact de '%2$s' sur %3$s" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Gérer/modifier les profils" +#: ../../Zotlabs/Lib/Enotify.php:278 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, vous avez reçu [zrl=%2$s]une demande de contact[/zrl] de %3$s." -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Éditeur de profil" +#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Vous pouvez visiter leur profil sur %s" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Modifier votre profil" +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Merci de visiter %s avant d'approuver (ou non) cette demande de contact." -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Vos photos" +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Notify] Nouvel(le) ami(e) suggéré(e)" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Vos fichiers" +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, vous avez reçu une suggestion d'ami(e) de '%2$s' à %3$s" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Vos salons" +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, avez reçu %3$s comme [zrl=%2$s]une suggestion d'ami(e)[/zrl] de %4$s." -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Favoris" +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" +msgstr "Nom :" -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Vos favoris" +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" +msgstr "Photo :" -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Vos pages web" +#: ../../Zotlabs/Lib/Enotify.php:303 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Merci de visiter %s pour donner suite (ou non) à cette suggestion." -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Notify]" -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Connexion" +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" +msgstr "a publié un nouveau message" -#: ../../include/nav.php:129 +#: ../../Zotlabs/Lib/Enotify.php:668 #, php-format -msgid "%s - click to logout" -msgstr "%s - cliquer ici pour déconnecter" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Authentification distante" +msgid "commented on %s's post" +msgstr "a commenté la publication de %s" -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "S'authentifier auprès de votre hub principal" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +msgid "Private Message" +msgstr "Message Privé" -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Page d'accueil" +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +msgid "Select" +msgstr "Sélectionner" -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Créer un compte" +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "Enregistrer dans le dossier" -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Aide et documentation" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Je participerai" -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Applications, utilitaires, liens, jeux" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "Je ne participerai pas" -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Recherche @nom, #tag, contenu" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Je participerai peut-être" -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Annuaire des canaux" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "Je suis d'accord" -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Votre réseau" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "Je ne suis pas d'accord" -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Marquer toutes les notifications du réseau comme vues" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "Je m'abstiens" -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Mon canal" +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" +msgstr "Mettre en avant (étoile)" -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Marquer toutes les notifications du canal comme vues" +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" +msgstr "Ne plus mettre en avant" -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Notifications" +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" +msgstr "(Dés)activer l'étoile" -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notifications" +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" +msgstr "mis en avant" -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Voir toutes les notifications" +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +msgid "Message signature validated" +msgstr "Signature du message validée" -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Messages privés" +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +msgid "Message signature incorrect" +msgstr "Signature du message incorrecte" -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Voir tous les messages privés" +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" +msgstr "Ajouter une étiquette" -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Marquer tous les messages privés comme vus" +#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +msgid "like" +msgstr "aiment" -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Boîte de réception" +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "n'aiment pas" -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Boîte d'envoi" +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "Share This" +msgstr "Partager" -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nouveau message" +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "share" +msgstr "partager" -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Calendrier des événements" +#: ../../Zotlabs/Lib/ThreadItem.php:275 +msgid "Delivery Report" +msgstr "Rapport de distribution" -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Voir tous les événements" +#: ../../Zotlabs/Lib/ThreadItem.php:293 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commentaire" +msgstr[1] "%d commentaires" -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Marquer tous les événements comme vus" +#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#, php-format +msgid "View %s's profile - %s" +msgstr "Voir le profil de %s - %s" -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Gérer vos canaux" +#: ../../Zotlabs/Lib/ThreadItem.php:326 +msgid "to" +msgstr "à" -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Paramètres du Compte/Canal" +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "via" +msgstr "via" -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Administrateur" +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "Wall-to-Wall" +msgstr "Mur-à-mur" -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Configuration du site" +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "via Wall-To-Wall:" +msgstr "par Mur-à-mur :" -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Chargement..." +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#, php-format +msgid "from %s" +msgstr "de %s" -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@nom, #étiquette, ?doc, contenu" +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#, php-format +msgid "last edited: %s" +msgstr "dernière modification : %s" -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Merci de patienter..." +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#, php-format +msgid "Expires: %s" +msgstr "Expire : %s" -#: ../../include/network.php:704 -msgid "view full size" -msgstr "voir en taille réelle" +#: ../../Zotlabs/Lib/ThreadItem.php:370 +msgid "Save Bookmarks" +msgstr "Enregistrer les favoris" -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrateur" +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Add to Calendar" +msgstr "Ajouter au Calendrier" -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Pas d'objet" +#: ../../Zotlabs/Lib/ThreadItem.php:380 +msgid "Mark all seen" +msgstr "Tout marquer comme vu" -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" +#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] voir tous" -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +msgid "Bold" +msgstr "Gras" -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "" +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +msgid "Italic" +msgstr "Italique" -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +msgid "Underline" +msgstr "Souligné" -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +msgid "Quote" +msgstr "Citation" -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +msgid "Code" +msgstr "Code" -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" +#: ../../Zotlabs/Lib/ThreadItem.php:716 +msgid "Image" +msgstr "Image" -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "Linkedin" +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Insert Link" +msgstr "Insérer un lien" -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Video" +msgstr "Vidéo" -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Aucun nom d'utilisateur dans le fichier d'import." -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nouvelle page" +#: ../../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/page_widgets.php:46 -msgid "Title" -msgstr "Titre" +#: ../../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 @@ -7440,1412 +6801,1582 @@ msgstr "aime" 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/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 :" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Fin :" + +#: ../../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 : %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/channel.php:67 -msgid "Empty name" -msgstr "Nom vide" +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "a tapoté" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nom trop long" +#: ../../include/text.php:1039 +msgid "ping" +msgstr "ping" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Pas d'identifiant de compte" +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "pingé" -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Un surnom est requis." +#: ../../include/text.php:1040 +msgid "prod" +msgstr "encourager" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Surnom réservé. Merci d'en choisir un autre." +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "encouragé" -#: ../../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/text.php:1041 +msgid "slap" +msgstr "giffler" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Impossible de récupérer l'identité créée" +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "gifflé(e)" -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Profil par défaut" +#: ../../include/text.php:1042 +msgid "finger" +msgstr "pointer" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Canal demandé non disponible." +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "pointé" -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Créer un nouveau profil" +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "rejetter" -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Visible de tous" +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "rejeté" -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Sexe :" +#: ../../include/text.php:1055 +msgid "happy" +msgstr "heureux" -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "État :" +#: ../../include/text.php:1056 +msgid "sad" +msgstr "triste" -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Site Internet :" +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "mélancolique" -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Connecté" +#: ../../include/text.php:1058 +msgid "tired" +msgstr "fatigué" -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "J'aime ce canal" +#: ../../include/text.php:1059 +msgid "perky" +msgstr "impertinent" -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F, Y" +#: ../../include/text.php:1060 +msgid "angry" +msgstr "en colère" -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "stupéfait" -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Date de naissance :" +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "perplexe" -#: ../../include/channel.php:1232 -#, php-format -msgid "for %1$d %2$s" -msgstr "depuis %1$d %2$s" +#: ../../include/text.php:1063 +msgid "interested" +msgstr "intéressé" -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Orientation sexuelle :" +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "amer" -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Étiquettes :" +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "plein d'entrain" -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Opinions politiques :" +#: ../../include/text.php:1066 +msgid "alive" +msgstr "vivant" -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religion :" +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "agaçé" -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Occupations/Centres d'intérêt :" +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "anxieux" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Aime :" +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "énervé" -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "N'aime pas :" +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "perturbé" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Coordonnées et réseaux sociaux :" +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustré" -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Mes autres canaux :" +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "déprimé" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Goûts musicaux :" +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivé" -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Lectures, goûts littéraires :" +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "détendu" -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Télévision :" +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "surpris" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Cinéma/danse/culture/divertissement&nsbp;:" +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "Lundi" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Vie sentimentale/amoureuse :" +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "Mardi" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Travail/Occupation " +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "Mercredi" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Études " +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "Jeudi" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "J'aime ceci" +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "Vendredi" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nouvelle fenêtre" +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "Samedi" -#: ../../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/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "Dimanche" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Utilisateur '%s' supprimé" +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "Janvier" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ajoute %2$s à ses contacts" +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "Février" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s a tapoté %2$s" +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "Mars" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "a tapoté" +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "Avril" -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Voir le profil de %s @ %s" +#: ../../include/text.php:1261 +msgid "May" +msgstr "Mai" -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Catégories :" +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "Juin" -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Classé sous :" +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "Juillet" -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "Voir en contexte" +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "Août" -#: ../../include/conversation.php:850 -msgid "remove" -msgstr "supprimer" +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "Septembre" -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" -msgstr "Supprimer les éléments selectionnés" +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "Octobre" -#: ../../include/conversation.php:951 -msgid "View Source" -msgstr "Voir source" +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "Novembre" -#: ../../include/conversation.php:952 -msgid "Follow Thread" -msgstr "Suivre la discussion" +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "Décembre" -#: ../../include/conversation.php:953 -msgid "Unfollow Thread" -msgstr "Ne plus suivre la discussion" +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Pièce jointe inconnue" -#: ../../include/conversation.php:958 -msgid "Activity/Posts" -msgstr "Activité/Publications" +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "Inconnu" -#: ../../include/conversation.php:960 -msgid "Edit Connection" -msgstr "Modifier le contact" +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "supprimer la catégorie" -#: ../../include/conversation.php:961 -msgid "Message" -msgstr "Message" +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "retirer du fichier" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s likes this." -msgstr "%s aime ça." +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "défaut" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s doesn't like this." -msgstr "%s n'aime pas ça." +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Mise en page" -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d personne aime ceci." -msgstr[1] "%2$d personnes aiment ceci." +#: ../../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/conversation.php:1084 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d personne n'aime pas ça." -msgstr[1] "%2$d personnes n'aiment pas ça." +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Type de contenu de la page" -#: ../../include/conversation.php:1090 -msgid "and" -msgstr "et" +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Choisir une langue alternative" -#: ../../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/text.php:1953 +msgid "activity" +msgstr "activité" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s like this." -msgstr "%s aime ça." +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Outils de conception" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s don't like this." -msgstr "%s n'aime pas ça." +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Pages" -#: ../../include/conversation.php:1133 -msgid "Set your location" -msgstr "Spécifier votre emplacement géographique" +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Système" -#: ../../include/conversation.php:1134 -msgid "Clear browser location" -msgstr "Supprimer l'emplacement géographique du navigateur" +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "" -#: ../../include/conversation.php:1182 -msgid "Tag term:" -msgstr "Étiquette :" +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggestions" -#: ../../include/conversation.php:1183 -msgid "Where are you right now?" -msgstr "Où êtes-vous en ce moment ?" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Voir plus..." -#: ../../include/conversation.php:1221 -msgid "Page link name" -msgstr "Nom du lien vers la page" +#: ../../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/conversation.php:1224 -msgid "Post as" -msgstr "Publier en tant que" +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Ajouter un nouveau contact" -#: ../../include/conversation.php:1238 -msgid "Toggle voting" -msgstr "(Dés)activer le vote" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Saisissez l'adresse du canal" -#: ../../include/conversation.php:1246 -msgid "Categories (optional, comma-separated list)" -msgstr "Catégories (facultatives, séparées par des virgules)" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Exemples : pierre@exemple.com, https://exemple.com/sophie" -#: ../../include/conversation.php:1269 -msgid "Set publish date" -msgstr "Définir la date de publication" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notes" -#: ../../include/conversation.php:1518 -msgid "Discover" -msgstr "À découvrir" +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Retirer le terme" -#: ../../include/conversation.php:1521 -msgid "Imported public streams" -msgstr "Flux publics importés" +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Recherches sauvegardées" -#: ../../include/conversation.php:1526 -msgid "Commented Order" -msgstr "Par date de commentaire" +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "ajouter" -#: ../../include/conversation.php:1529 -msgid "Sort by Comment Date" -msgstr "Trier par date de dernier commentaire" +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Dossiers sauvegardés" -#: ../../include/conversation.php:1533 -msgid "Posted Order" -msgstr "Par date de publication" +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tout" -#: ../../include/conversation.php:1536 -msgid "Sort by Post Date" -msgstr "Trier par date de publication" +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archives" -#: ../../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/widgets.php:516 +msgid "Refresh" +msgstr "Actualiser" -#: ../../include/conversation.php:1553 -msgid "Activity Stream - by date" -msgstr "Flux d'activité - par date" +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Paramètres du compte" -#: ../../include/conversation.php:1559 -msgid "Starred" -msgstr "Mis en avant (étoiles)" +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Paramètres du canal" -#: ../../include/conversation.php:1562 -msgid "Favourite Posts" -msgstr "Publications préférées" +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Fonctionnalités supplémentaires" -#: ../../include/conversation.php:1569 -msgid "Spam" -msgstr "Indésirable" +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Paramètres des extensions/greffons" -#: ../../include/conversation.php:1572 -msgid "Posts flagged as SPAM" -msgstr "Publications marquées comme indésirables" +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Paramètres d'affichage" -#: ../../include/conversation.php:1629 -msgid "Status Messages and Posts" -msgstr "Messages d'état et contributions" +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "" -#: ../../include/conversation.php:1638 -msgid "About" -msgstr "À propos" +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Exporter le canal" -#: ../../include/conversation.php:1641 -msgid "Profile Details" -msgstr "Détails du profil" +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Applications connectées" -#: ../../include/conversation.php:1657 -msgid "Files and Storage" -msgstr "Fichiers et Stockage" +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Paramètres de canal VIP" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Salons de clavardage" +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Menu des messages privés" -#: ../../include/conversation.php:1693 -msgid "Saved Bookmarks" -msgstr "Favoris sauvegardés" +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Vue combinée" -#: ../../include/conversation.php:1703 -msgid "Manage Webpages" -msgstr "Gérer les pages web" +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Boîte de réception" -#: ../../include/conversation.php:1768 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Participe" -msgstr[1] "Participent" +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Boîte d'envoi" -#: ../../include/conversation.php:1771 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Ne participe pas" -msgstr[1] "Ne participent pas" +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nouveau message" -#: ../../include/conversation.php:1774 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indécis(e)" -msgstr[1] "Indécis(es)" +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversations" -#: ../../include/conversation.php:1777 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "D'accord" -msgstr[1] "D'accord" +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Messages reçus" -#: ../../include/conversation.php:1780 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Pas d'accord" -msgstr[1] "Pas d'accord" +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Messages envoyés" -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "S'abstient" -msgstr[1] "S'abstiennent" +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Pas de message." -#: ../../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/widgets.php:725 +msgid "Delete conversation" +msgstr "Supprimer la conversation" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Echec du clonage du canal. Echec de l'impot." +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Menu Evènements" -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Fréquemment" +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Vue Jour" -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Toutes les heures" +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Vue Semaine" -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Deux fois par jour" +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Vue Mois" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Chaque jour" +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Outils Evènements" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Chaque semaine" +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Exporter le calendrier" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Chaque mois" +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importer un calendrier" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Actuellement homme" +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Salons de clavardage" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Actuellement femme" +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Surtout homme" +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Surtout femme" +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Salons favoris" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgenre" +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Salons suggérés" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersexuel" +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "photo/image" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transsexuel" +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Cliquer pour voir plus" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermaphrodite" +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Outils d'évaluation" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Neutre" +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "M'évaluer" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "Non spécifique" +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Voir mes évaluations" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indécis" +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Membres du forum" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Hommes" +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Tâches" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Femmes" +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Documentation" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Gay" +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Information sur le site/projet" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbienne" +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Pour les membres" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Sans préférence" +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Pour les administrateurs" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisexuel" +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Pour les développeurs" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosexuel" +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Abstinent" +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Analyser la file d'attente" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Vierge" +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Mises à jour BDD" -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Déviant" +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Administrateur" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fétichiste" +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Fonctionnalités des greffons" -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Une floppée" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Ce canal est bloqué sur ce site." -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Non-sexuel" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Emplacement du canal introuvable." -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Célibataire" +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "La réponse du canal distant était incomplète." -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Solitaire" +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Le canal a été supprimé et n'existe plus." -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponible" +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocole désactivé." -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Indisponible" +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "La tentative d'accéder au canal a échoué." -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "A un béguin" +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Ne peut pas se connecter à vous." -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Amoureux transi" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Favoris de %1$s" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Sort avec quelqu'un" +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Fil public" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infidèle" +#: ../../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" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Accro au sexe" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Contenu chiffré" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amis avec bénéfices" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installer %s élément" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Sans engagement" +#: ../../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/selectors.php:123 -msgid "Engaged" -msgstr "Fiancé(e)" +#: ../../include/bbcode.php:254 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s a écrit %2$s qui suit %3$s" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Marié(e)" +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Cliquer pour ouvrir/fermer" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Marié(e) dans ses rêves" +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partenaires" +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Ce texte aura un rendu différent en fonction des utilisateurs" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "En cohabitation" +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 a écrit :" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Conjoints de fait" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Options d'annuaire" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Heureux" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Mode sûr" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Pas en recherche" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Les forums publics uniquement" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Echangiste" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Ce site uniquement" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Trahi(e)" +#: ../../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/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Séparé(e)" +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Déconnexion" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Instable" +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Mettre fin à la session" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorcé(e)" +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Mon canal" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Vos publications et conversations" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Divorcé(e) dans ses rêves" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Votre profil" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Veuf/veuve" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Gérer/modifier les profils" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Incertain" +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Éditeur de profil" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "C'est compliqué" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Modifier votre profil" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "S'en fiche" +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Vos photos" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Me demander" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Vos fichiers" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Favoris de %1$s" +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Vos salons" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "" +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Favoris" -#: ../../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/nav.php:102 +msgid "Your bookmarks" +msgstr "Vos favoris" -#: ../../include/text.php:404 -msgid "prev" -msgstr "préc." +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Vos pages web" -#: ../../include/text.php:406 -msgid "first" -msgstr "premier" +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Connexion" -#: ../../include/text.php:435 -msgid "last" -msgstr "dernier" +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - cliquer ici pour déconnecter" -#: ../../include/text.php:438 -msgid "next" -msgstr "Suivant" +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Authentification distante" -#: ../../include/text.php:448 -msgid "older" -msgstr "plus ancien" +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "S'authentifier auprès de votre hub principal" -#: ../../include/text.php:450 -msgid "newer" -msgstr "plus récent" +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Page d'accueil" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Pas de relations." +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Créer un compte" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" -msgstr "Voir les %s contacts" +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Aide et documentation" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "tapoter" +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Applications, utilitaires, liens, jeux" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "ping" +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Recherche @nom, #tag, contenu" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "pingé" +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Annuaire des canaux" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "encourager" +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Votre réseau" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "encouragé" +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Marquer toutes les notifications du réseau comme vues" -#: ../../include/text.php:1021 -msgid "slap" -msgstr "giffler" +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Mon canal" -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "gifflé(e)" +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Marquer toutes les notifications du canal comme vues" -#: ../../include/text.php:1022 -msgid "finger" -msgstr "pointer" +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Notifications" -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "pointé" +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notifications" -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "rejetter" +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Voir toutes les notifications" -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "rejeté" +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Messages privés" -#: ../../include/text.php:1035 -msgid "happy" -msgstr "heureux" +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Voir tous les messages privés" -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste" +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Marquer tous les messages privés comme vus" -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "mélancolique" +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Calendrier des événements" -#: ../../include/text.php:1038 -msgid "tired" -msgstr "fatigué" +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Voir tous les événements" -#: ../../include/text.php:1039 -msgid "perky" -msgstr "impertinent" +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Marquer tous les événements comme vus" -#: ../../include/text.php:1040 -msgid "angry" -msgstr "en colère" +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Gérer vos canaux" -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "stupéfait" +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Paramètres du Compte/Canal" -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "perplexe" +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Configuration du site" -#: ../../include/text.php:1043 -msgid "interested" -msgstr "intéressé" +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Chargement..." -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amer" +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@nom, #étiquette, ?doc, contenu" -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "plein d'entrain" +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Merci de patienter..." -#: ../../include/text.php:1046 -msgid "alive" -msgstr "vivant" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nouvelle fenêtre" -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "agaçé" +#: ../../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/text.php:1048 -msgid "anxious" -msgstr "anxieux" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Utilisateur '%s' supprimé" -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "énervé" +#: ../../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/text.php:1050 -msgid "disturbed" -msgstr "perturbé" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Trouver des canaux" -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustré" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Saisir nom ou centre d'intérêt" -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "déprimé" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Ajouter/Suivre" -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivé" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemples: Guillaume Martin, Course à pieds" -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "détendu" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Un profil au hasard" -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "surpris" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Inviter des amis" -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Lundi" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Exemple avancé : name=fred and country=iceland" -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Mardi" +#: ../../include/contact_widgets.php:122 +#, 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" + +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "montrer plus" -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Mercredi" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ajoute %2$s à ses contacts" -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Jeudi" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s a tapoté %2$s" -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Vendredi" +#: ../../include/conversation.php:691 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Voir le profil de %s @ %s" -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Samedi" +#: ../../include/conversation.php:710 +msgid "Categories:" +msgstr "Catégories :" -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Dimanche" +#: ../../include/conversation.php:711 +msgid "Filed under:" +msgstr "Classé sous :" -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "Janvier" +#: ../../include/conversation.php:738 +msgid "View in context" +msgstr "Voir en contexte" -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "Février" +#: ../../include/conversation.php:847 +msgid "remove" +msgstr "supprimer" -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "Mars" +#: ../../include/conversation.php:852 +msgid "Delete Selected Items" +msgstr "Supprimer les éléments selectionnés" -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "Avril" +#: ../../include/conversation.php:948 +msgid "View Source" +msgstr "Voir source" -#: ../../include/text.php:1241 -msgid "May" -msgstr "Mai" +#: ../../include/conversation.php:949 +msgid "Follow Thread" +msgstr "Suivre la discussion" -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juin" +#: ../../include/conversation.php:950 +msgid "Unfollow Thread" +msgstr "Ne plus suivre la discussion" -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juillet" +#: ../../include/conversation.php:955 +msgid "Activity/Posts" +msgstr "Activité/Publications" -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "Août" +#: ../../include/conversation.php:957 +msgid "Edit Connection" +msgstr "Modifier le contact" -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "Septembre" +#: ../../include/conversation.php:958 +msgid "Message" +msgstr "Message" -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "Octobre" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s likes this." +msgstr "%s aime ça." -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "Novembre" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s doesn't like this." +msgstr "%s n'aime pas ça." -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "Décembre" +#: ../../include/conversation.php:1079 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d personne aime ceci." +msgstr[1] "%2$d personnes aiment ceci." -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Pièce jointe inconnue" +#: ../../include/conversation.php:1081 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d personne n'aime pas ça." +msgstr[1] "%2$d personnes n'aiment pas ça." -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "Inconnu" +#: ../../include/conversation.php:1087 +msgid "and" +msgstr "et" -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "supprimer la catégorie" +#: ../../include/conversation.php:1090 +#, 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/text.php:1437 -msgid "remove from file" -msgstr "retirer du fichier" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s like this." +msgstr "%s aime ça." -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "défaut" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s don't like this." +msgstr "%s n'aime pas ça." -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Mise en page" +#: ../../include/conversation.php:1130 +msgid "Set your location" +msgstr "Spécifier votre emplacement géographique" -#: ../../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/conversation.php:1131 +msgid "Clear browser location" +msgstr "Supprimer l'emplacement géographique du navigateur" -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Type de contenu de la page" +#: ../../include/conversation.php:1177 +msgid "Tag term:" +msgstr "Étiquette :" -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Choisir une langue alternative" +#: ../../include/conversation.php:1178 +msgid "Where are you right now?" +msgstr "Où êtes-vous en ce moment ?" -#: ../../include/text.php:1934 -msgid "activity" -msgstr "activité" +#: ../../include/conversation.php:1210 +msgid "Page link name" +msgstr "Nom du lien vers la page" -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Outils de conception" +#: ../../include/conversation.php:1213 +msgid "Post as" +msgstr "Publier en tant que" -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Pages" +#: ../../include/conversation.php:1223 +msgid "Toggle voting" +msgstr "(Dés)activer le vote" -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Deconnecté." +#: ../../include/conversation.php:1231 +msgid "Categories (optional, comma-separated list)" +msgstr "Catégories (facultatives, séparées par des virgules)" -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Échec de l'authentification" +#: ../../include/conversation.php:1254 +msgid "Set publish date" +msgstr "Définir la date de publication" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Peut voir les publications ordinaires sur mon canal." +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Peut voir mes pages web" +#: ../../include/conversation.php:1503 +msgid "Discover" +msgstr "À découvrir" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Peuvent poster sur la page de mon canal (\"mur\")" +#: ../../include/conversation.php:1506 +msgid "Imported public streams" +msgstr "Flux publics importés" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Peuvent aimer/ne pas aimer" +#: ../../include/conversation.php:1511 +msgid "Commented Order" +msgstr "Par date de commentaire" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profils et autres excluant les publications/commentaires." +#: ../../include/conversation.php:1514 +msgid "Sort by Comment Date" +msgstr "Trier par date de dernier commentaire" -#: ../../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/conversation.php:1518 +msgid "Posted Order" +msgstr "Par date de publication" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avancé - utile pour les canaux de type \"forum/groupe\"" +#: ../../include/conversation.php:1521 +msgid "Sort by Post Date" +msgstr "Trier par date de publication" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Peut discuter avec moi (quand disponibie)" +#: ../../include/conversation.php:1529 +msgid "Posts that mention or involve you" +msgstr "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre" -#: ../../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/conversation.php:1538 +msgid "Activity Stream - by date" +msgstr "Flux d'activité - par date" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Peut modifier mes pages web" +#: ../../include/conversation.php:1544 +msgid "Starred" +msgstr "Mis en avant (étoiles)" -#: ../../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/conversation.php:1547 +msgid "Favourite Posts" +msgstr "Publications préférées" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Peut administrer les ressources de mon canal" +#: ../../include/conversation.php:1554 +msgid "Spam" +msgstr "Indésirable" -#: ../../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/conversation.php:1557 +msgid "Posts flagged as SPAM" +msgstr "Publications marquées comme indésirables" -#: ../../include/features.php:48 -msgid "General Features" -msgstr "Fonctionnalités générales" +#: ../../include/conversation.php:1614 +msgid "Status Messages and Posts" +msgstr "Messages d'état et contributions" -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Expiration du contenu" +#: ../../include/conversation.php:1623 +msgid "About" +msgstr "À propos" -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Supprimer les contributions/commentaires et/ou messages privés plus tard" +#: ../../include/conversation.php:1626 +msgid "Profile Details" +msgstr "Détails du profil" -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Profils multiples" +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Albums photo" -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Possibilité de créer plusieurs profils" +#: ../../include/conversation.php:1642 +msgid "Files and Storage" +msgstr "Fichiers et Stockage" -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Profils Avancés" +#: ../../include/conversation.php:1678 +msgid "Saved Bookmarks" +msgstr "Favoris sauvegardés" -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Sections et sélections supplémentaires du profil" +#: ../../include/conversation.php:1688 +msgid "Manage Webpages" +msgstr "Gérer les pages web" -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Importer/Exporter le profil" +#: ../../include/conversation.php:1747 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Participe" +msgstr[1] "Participent" -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Sauvegarder et charger les détails d'un profil entre sites/canaux" +#: ../../include/conversation.php:1750 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Ne participe pas" +msgstr[1] "Ne participent pas" -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Pages web" +#: ../../include/conversation.php:1753 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indécis(e)" +msgstr[1] "Indécis(es)" -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Fournir des pages web, sous votre contrôle, sur votre canal" +#: ../../include/conversation.php:1756 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "D'accord" +msgstr[1] "D'accord" -#: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "" +#: ../../include/conversation.php:1759 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Pas d'accord" +msgstr[1] "Pas d'accord" -#: ../../include/features.php:56 -msgid "Hide Rating" -msgstr "Masquer l'évaluation" +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "S'abstient" +msgstr[1] "S'abstiennent" -#: ../../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/selectors.php:30 +msgid "Frequently" +msgstr "Fréquemment" -#: ../../include/features.php:57 -msgid "Private Notes" -msgstr "Notes privées" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Toutes les heures" -#: ../../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 :non chiffré)" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Deux fois par jour" -#: ../../include/features.php:58 -msgid "Navigation Channel Select" -msgstr "Sélection du canal par la navigation" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Chaque jour" -#: ../../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/selectors.php:34 +msgid "Weekly" +msgstr "Chaque semaine" -#: ../../include/features.php:59 -msgid "Photo Location" -msgstr "Site de prise de vue" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Chaque mois" -#: ../../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/selectors.php:49 +msgid "Currently Male" +msgstr "Actuellement homme" -#: ../../include/features.php:60 -msgid "Access Controlled Chatrooms" -msgstr "" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Actuellement femme" -#: ../../include/features.php:60 -msgid "Provide chatrooms and chat services with access control." -msgstr "" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Surtout homme" -#: ../../include/features.php:61 -msgid "Smart Birthdays" -msgstr "Anniversaires intelligents" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Surtout femme" -#: ../../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/selectors.php:49 +msgid "Transgender" +msgstr "Transgenre" -#: ../../include/features.php:62 -msgid "Expert Mode" -msgstr "Mode expert" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Intersexuel" -#: ../../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/selectors.php:49 +msgid "Transsexual" +msgstr "Transsexuel" -#: ../../include/features.php:63 -msgid "Premium Channel" -msgstr "Canal VIP" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermaphrodite" -#: ../../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/selectors.php:49 +msgid "Neuter" +msgstr "Neutre" -#: ../../include/features.php:68 -msgid "Post Composition Features" -msgstr "Fonctionnalités de composition" +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "Non spécifique" -#: ../../include/features.php:71 -msgid "Large Photos" -msgstr "Grandes photos" +#: ../../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/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/selectors.php:49 +msgid "Undecided" +msgstr "Indécis" -#: ../../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/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Hommes" -#: ../../include/features.php:73 -msgid "Even More Encryption" -msgstr "Encore plus de chiffrement" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Femmes" -#: ../../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/selectors.php:85 +msgid "Gay" +msgstr "Gay" -#: ../../include/features.php:74 -msgid "Enable Voting Tools" -msgstr "Activer les outils de vote" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbienne" -#: ../../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/selectors.php:85 +msgid "No Preference" +msgstr "Sans préférence" -#: ../../include/features.php:75 -msgid "Delayed Posting" -msgstr "Publication plus tard" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisexuel" -#: ../../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/selectors.php:85 +msgid "Autosexual" +msgstr "Autosexuel" -#: ../../include/features.php:76 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Supprimer les publications/commentaires en doublon" +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Abstinent" -#: ../../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/selectors.php:85 +msgid "Virgin" +msgstr "Vierge" -#: ../../include/features.php:82 -msgid "Network and Stream Filtering" -msgstr "Filtrage du réseau et des flux" +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Déviant" -#: ../../include/features.php:83 -msgid "Search by Date" -msgstr "Chercher par date" +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fétichiste" -#: ../../include/features.php:83 -msgid "Ability to select posts by date ranges" -msgstr "Pouvoir choisir des publications par date" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Une floppée" -#: ../../include/features.php:84 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Groupes d'accès" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Non-sexuel" -#: ../../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/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Célibataire" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Recherches sauvegardées" +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Solitaire" -#: ../../include/features.php:85 -msgid "Save search terms for re-use" -msgstr "Sauvegarder des termes de recherche pour utilisation ultérieure" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Disponible" -#: ../../include/features.php:86 -msgid "Network Personal Tab" -msgstr "Onglet \"Me concernant\"" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Indisponible" -#: ../../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/selectors.php:123 +msgid "Has crush" +msgstr "A un béguin" -#: ../../include/features.php:87 -msgid "Network New Tab" -msgstr "Onglet \"nouveautés réseau\"" +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Amoureux transi" -#: ../../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/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Sort avec quelqu'un" -#: ../../include/features.php:88 -msgid "Affinity Tool" -msgstr "Gérer l'affinité" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Infidèle" -#: ../../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/selectors.php:123 +msgid "Sex Addict" +msgstr "Accro au sexe" -#: ../../include/features.php:89 -msgid "Connection Filtering" -msgstr "Filtrage des contacts" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Amis avec bénéfices" -#: ../../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/selectors.php:123 +msgid "Casual" +msgstr "Sans engagement" -#: ../../include/features.php:90 -msgid "Show channel suggestions" -msgstr "Montrer les suggestions de canaux" +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Fiancé(e)" -#: ../../include/features.php:95 -msgid "Post/Comment Tools" -msgstr "Gérer les publications/commentaires" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Marié(e)" -#: ../../include/features.php:96 -msgid "Community Tagging" -msgstr "Etiquetage communautaire" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Marié(e) dans ses rêves" -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" -msgstr "Permettre de marquer les publications existantes" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partenaires" -#: ../../include/features.php:97 -msgid "Post Categories" -msgstr "Catégoriser les publications" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "En cohabitation" -#: ../../include/features.php:97 -msgid "Add categories to your posts" -msgstr "Ajouter des catégories à vos publications" +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Conjoints de fait" -#: ../../include/features.php:98 -msgid "Emoji Reactions" -msgstr "" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Heureux" -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Pas en recherche" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Dossiers sauvegardés" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Echangiste" -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" -msgstr "Permettre de classer les publications dans des dossiers" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Trahi(e)" -#: ../../include/features.php:100 -msgid "Dislike Posts" -msgstr "\"Ne pas aimer\" les publications" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Séparé(e)" -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" -msgstr "Possibilité de \"ne pas aimer\" les publications/commentaires" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Instable" -#: ../../include/features.php:101 -msgid "Star Posts" -msgstr "Pouvoir mettre en avant les publications" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Divorcé(e)" -#: ../../include/features.php:101 -msgid "Ability to mark special posts with a star indicator" -msgstr "Pouvoir marquer certaines publications d'une étoile" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Divorcé(e) dans ses rêves" -#: ../../include/features.php:102 -msgid "Tag Cloud" -msgstr "Nuage de tags" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Veuf/veuve" -#: ../../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/selectors.php:123 +msgid "Uncertain" +msgstr "Incertain" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un groupe supprimé portant ce nom a été ressuscité. Les permissions liées aux éléments existants peuvent 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/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "C'est compliqué" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Ajouter de nouveaux contacts à ce groupe d'accès" +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "S'en fiche" -#: ../../include/group.php:289 -msgid "edit" -msgstr "modifier" +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Me demander" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Modifier le groupe" +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Visible pour vos contacts seulement" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Ajouter un groupe d'accès" +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Canaux n'étant dans aucun groupe d'accès" +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Public" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "ajouter" +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "" -#: ../../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/PermissionDescription.php:118 +#, php-format +msgid "Any account on %s" +msgstr "" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Début :" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Fin :" +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "" -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Cet évènement a été ajouté dans votre calendrier." +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Non spécifié" +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "" -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Besoin d'une action" +#: ../../include/PermissionDescription.php:161 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Terminé" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "En cours" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "" -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Annulé" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" + +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "" #: ../../include/account.php:28 msgid "Not a valid email address" @@ -8885,6 +8416,11 @@ msgstr "Confirmation de l'inscription pour %s" msgid "Registration request at %s" msgstr "Demande d'inscription sur %s" +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "Administrateur" + #: ../../include/account.php:339 msgid "your registration password" msgstr "votre mot de passe d'inscription" @@ -8903,484 +8439,697 @@ msgstr "Compte approuvé." 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/account.php:506 +msgid "Account verified. Please login." +msgstr "Compte vérifié. Veuillez vous connecter." -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "La tentative d'accéder au canal a échoué." +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Cliquez ici pour mettre à jour." -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Ne peut pas se connecter à vous." +#: ../../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/account.php:736 +msgid "This action is not available under your subscription plan." +msgstr "Cette action n'est pas disponible avec votre forfait." #: ../../include/attach.php:247 ../../include/attach.php:333 msgid "Item was not found." msgstr "Élément introuvable." -#: ../../include/attach.php:499 +#: ../../include/attach.php:497 msgid "No source file." msgstr "Pas de fichier source." -#: ../../include/attach.php:521 +#: ../../include/attach.php:519 msgid "Cannot locate file to replace" msgstr "Impossible de trouver le fichier à remplacer." -#: ../../include/attach.php:539 +#: ../../include/attach.php:537 msgid "Cannot locate file to revise/update" msgstr "Impossible de trouver le fichier à corriger/mettre à jour" -#: ../../include/attach.php:674 +#: ../../include/attach.php:672 #, php-format msgid "File exceeds size limit of %d" msgstr "Le fichier dépasse la taille limite de %d" -#: ../../include/attach.php:688 +#: ../../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/attach.php:846 +#: ../../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/attach.php:859 +#: ../../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/attach.php:915 ../../include/attach.php:931 +#: ../../include/attach.php:909 ../../include/attach.php:925 msgid "Path not available." msgstr "Chemin non disponible." -#: ../../include/attach.php:977 ../../include/attach.php:1129 +#: ../../include/attach.php:971 ../../include/attach.php:1123 msgid "Empty pathname" msgstr "Chemin vide" -#: ../../include/attach.php:1003 +#: ../../include/attach.php:997 msgid "duplicate filename or path" msgstr "doublon de chemin ou de fichier" -#: ../../include/attach.php:1025 +#: ../../include/attach.php:1019 msgid "Path not found." msgstr "Chemin introuvable." -#: ../../include/attach.php:1083 +#: ../../include/attach.php:1077 msgid "mkdir failed." msgstr "mkdir a échoué." -#: ../../include/attach.php:1087 +#: ../../include/attach.php:1081 msgid "database storage failed." msgstr "l'écriture dans la base de données a échoué." -#: ../../include/attach.php:1135 +#: ../../include/attach.php:1129 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/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/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contenu chiffré" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Nom vide" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installer %s élément" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Nom trop long" -#: ../../include/bbcode.php:182 -#, php-format +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Pas d'identifiant de compte" + +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Un surnom est requis." + +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Surnom réservé. Merci d'en choisir un autre." + +#: ../../include/channel.php:211 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." +"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:287 +msgid "Unable to retrieve created identity" +msgstr "Impossible de récupérer l'identité créée" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Profil par défaut" + +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "Canal demandé non disponible." + +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Créer un nouveau profil" + +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Visible de tous" + +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Sexe :" + +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "État :" + +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Site Internet :" + +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Connecté" + +#: ../../include/channel.php:1147 +msgid "Like this channel" +msgstr "J'aime ce canal" + +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1179 +msgid "Birthday:" +msgstr "Date de naissance :" -#: ../../include/bbcode.php:261 +#: ../../include/channel.php:1192 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s a écrit %2$s qui suit %3$s" +msgid "for %1$d %2$s" +msgstr "depuis %1$d %2$s" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Cliquer pour ouvrir/fermer" +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Orientation sexuelle :" -#: ../../include/bbcode.php:346 -msgid "spoiler" +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Étiquettes :" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Opinions politiques :" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religion :" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Occupations/Centres d'intérêt :" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Aime :" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "N'aime pas :" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Coordonnées et réseaux sociaux :" + +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "Mes autres canaux :" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "Goûts musicaux :" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "Lectures, goûts littéraires :" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "Télévision :" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "Cinéma/danse/culture/divertissement&nsbp;:" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "Vie sentimentale/amoureuse :" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "Travail/Occupation " + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "Études " + +#: ../../include/channel.php:1251 +msgid "Like this thing" +msgstr "J'aime ceci" + +#: ../../include/features.php:48 +msgid "General Features" +msgstr "Fonctionnalités générales" + +#: ../../include/features.php:50 +msgid "Content Expiration" +msgstr "Expiration du contenu" + +#: ../../include/features.php:50 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Supprimer les contributions/commentaires et/ou messages privés plus tard" + +#: ../../include/features.php:51 +msgid "Multiple Profiles" +msgstr "Profils multiples" + +#: ../../include/features.php:51 +msgid "Ability to create multiple profiles" +msgstr "Possibilité de créer plusieurs profils" + +#: ../../include/features.php:52 +msgid "Advanced Profiles" +msgstr "Profils Avancés" + +#: ../../include/features.php:52 +msgid "Additional profile sections and selections" +msgstr "Sections et sélections supplémentaires du profil" + +#: ../../include/features.php:53 +msgid "Profile Import/Export" +msgstr "Importer/Exporter le profil" + +#: ../../include/features.php:53 +msgid "Save and load profile details across sites/channels" +msgstr "Sauvegarder et charger les détails d'un profil entre sites/canaux" + +#: ../../include/features.php:54 +msgid "Web Pages" +msgstr "Pages web" + +#: ../../include/features.php:54 +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 "Hide Rating" +msgstr "Masquer l'évaluation" + +#: ../../include/features.php:55 +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 +msgid "Private Notes" +msgstr "Notes privées" + +#: ../../include/features.php:56 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Active un outil pour stocker des notes et des rappels (note :non chiffré)" + +#: ../../include/features.php:57 +msgid "Navigation Channel Select" +msgstr "Sélection du canal par la navigation" + +#: ../../include/features.php:57 +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 +msgid "Photo Location" +msgstr "Site de prise de vue" + +#: ../../include/features.php:58 +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 +msgid "Access Controlled Chatrooms" 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/features.php:59 +msgid "Provide chatrooms and chat services with access control." +msgstr "" -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 a écrit :" +#: ../../include/features.php:60 +msgid "Smart Birthdays" +msgstr "Anniversaires intelligents" -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Inconnu)" +#: ../../include/features.php:60 +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/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visible pour tout le monde sur internet." +#: ../../include/features.php:61 +msgid "Expert Mode" +msgstr "Mode expert" -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visible pour vous seulement." +#: ../../include/features.php:61 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Activer le mode expert pour accéder aux options avancées" -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visible pour tout le monde sur ce réseau." +#: ../../include/features.php:62 +msgid "Premium Channel" +msgstr "Canal VIP" -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visible aux utilisateurs authentifiés." +#: ../../include/features.php:62 +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/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible pour tous sur %s." +#: ../../include/features.php:67 +msgid "Post Composition Features" +msgstr "Fonctionnalités de composition" -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Visible pour tous les contacts." +#: ../../include/features.php:70 +msgid "Large Photos" +msgstr "Grandes photos" -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visible aux contacts approuvés." +#: ../../include/features.php:70 +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/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visible pour certains contacts." +#: ../../include/features.php:71 +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/items.php:3918 -msgid "Privacy group is empty." -msgstr "Groupe d'accès vide." +#: ../../include/features.php:72 +msgid "Even More Encryption" +msgstr "Encore plus de chiffrement" -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Groupe d'accès : %s" +#: ../../include/features.php:72 +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/items.php:3937 -msgid "Connection not found." -msgstr "Contact non trouvé." +#: ../../include/features.php:73 +msgid "Enable Voting Tools" +msgstr "Activer les outils de vote" -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "photo de profil" +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" +msgstr "Fournit un type de publication sur lequel les utilisateurs peuvent voter" -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Contenu imbriqué" +#: ../../include/features.php:74 +msgid "Delayed Posting" +msgstr "Publication plus tard" -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Imbrication désactivée" +#: ../../include/features.php:74 +msgid "Allow posts to be published at a later date" +msgstr "Permettre de publier des messages à une date programmée" -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Système" +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Supprimer les publications/commentaires en doublon" -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "" +#: ../../include/features.php:75 +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/widgets.php:154 -msgid "Suggestions" -msgstr "Suggestions" +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" +msgstr "Filtrage du réseau et des flux" -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Voir plus..." +#: ../../include/features.php:82 +msgid "Search by Date" +msgstr "Chercher par date" -#: ../../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/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Pouvoir choisir des publications par date" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Ajouter un nouveau contact" +#: ../../include/features.php:83 ../../include/group.php:311 +msgid "Privacy Groups" +msgstr "Groupes d'accès" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Saisissez l'adresse du canal" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" +msgstr "Active la gestion et la sélection des groupes d'accès" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Exemples : pierre@exemple.com, https://exemple.com/sophie" +#: ../../include/features.php:84 +msgid "Save search terms for re-use" +msgstr "Sauvegarder des termes de recherche pour utilisation ultérieure" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notes" +#: ../../include/features.php:85 +msgid "Network Personal Tab" +msgstr "Onglet \"Me concernant\"" -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Retirer le terme" +#: ../../include/features.php:85 +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/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tout" +#: ../../include/features.php:86 +msgid "Network New Tab" +msgstr "Onglet \"nouveautés réseau\"" -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archives" +#: ../../include/features.php:86 +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/widgets.php:516 -msgid "Refresh" -msgstr "Actualiser" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Gérer l'affinité" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Paramètres du compte" +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrer le flux d'activité en fonction de la profondeur des relations" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Paramètres du canal" +#: ../../include/features.php:88 +msgid "Connection Filtering" +msgstr "Filtrage des contacts" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Fonctionnalités supplémentaires" +#: ../../include/features.php:88 +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/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Paramètres des extensions/greffons" +#: ../../include/features.php:89 +msgid "Show channel suggestions" +msgstr "Montrer les suggestions de canaux" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Paramètres d'affichage" +#: ../../include/features.php:94 +msgid "Post/Comment Tools" +msgstr "Gérer les publications/commentaires" -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "" +#: ../../include/features.php:95 +msgid "Community Tagging" +msgstr "Etiquetage communautaire" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exporter le canal" +#: ../../include/features.php:95 +msgid "Ability to tag existing posts" +msgstr "Permettre de marquer les publications existantes" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Applications connectées" +#: ../../include/features.php:96 +msgid "Post Categories" +msgstr "Catégoriser les publications" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Paramètres de canal VIP" +#: ../../include/features.php:96 +msgid "Add categories to your posts" +msgstr "Ajouter des catégories à vos publications" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menu des messages privés" +#: ../../include/features.php:97 +msgid "Emoji Reactions" +msgstr "" -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vue combinée" +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversations" +#: ../../include/features.php:98 +msgid "Ability to file posts under folders" +msgstr "Permettre de classer les publications dans des dossiers" -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Messages reçus" +#: ../../include/features.php:99 +msgid "Dislike Posts" +msgstr "\"Ne pas aimer\" les publications" -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Messages envoyés" +#: ../../include/features.php:99 +msgid "Ability to dislike posts/comments" +msgstr "Possibilité de \"ne pas aimer\" les publications/commentaires" -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Pas de message." +#: ../../include/features.php:100 +msgid "Star Posts" +msgstr "Pouvoir mettre en avant les publications" -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Supprimer la conversation" +#: ../../include/features.php:100 +msgid "Ability to mark special posts with a star indicator" +msgstr "Pouvoir marquer certaines publications d'une étoile" -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Outils Evènements" +#: ../../include/features.php:101 +msgid "Tag Cloud" +msgstr "Nuage de tags" -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exporter le calendrier" +#: ../../include/features.php:101 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Afficher un nuage de vos tags sur votre canal" -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importer un calendrier" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Contenu imbriqué" -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "" +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Imbrication désactivée" -#: ../../include/widgets.php:847 -msgid "Chat Members" +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" msgstr "" -#: ../../include/widgets.php:869 -msgid "Wiki List" +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" msgstr "" -#: ../../include/widgets.php:907 -msgid "Wiki Pages" +#: ../../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:942 -msgid "Bookmarked Chatrooms" -msgstr "Salons favoris" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Salons suggérés" +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "Montrer" -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "photo/image" +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Cacher" -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Cliquer pour voir plus" +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Autres réseaux et services de messagerie" -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Outils d'évaluation" +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "" -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "M'évaluer" +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Deconnecté." -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Voir mes évaluations" +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Échec de l'authentification" -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Membres du forum" +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Anniversaire" -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Tâches" +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Age :" -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Documentation" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-JJ ou MM-JJ" -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Information sur le site/projet" +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "jamais" -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Pour les membres" +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "à l'instant" -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Pour les administrateurs" +#: ../../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:1453 -msgid "For Developers" -msgstr "Pour les développeurs" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "an" +msgstr[1] "ans" -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mois" +msgstr[1] "mois" -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Analyser la file d'attente" +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "semaine" +msgstr[1] "semaines" -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Mises à jour BDD" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "jour" +msgstr[1] "jours" -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Fonctionnalités des greffons" +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "heure" +msgstr[1] "heures" -#: ../../include/activities.php:41 -msgid " and " -msgstr "et" +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minute" +msgstr[1] "minutes" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "profil public" +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "seconde" +msgstr[1] "secondes" -#: ../../include/activities.php:58 +#: ../../include/datetime.php:562 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s a changé %2$s en “%3$s”" +msgid "%1$s's birthday" +msgstr "Anniversaire de %1$s" -#: ../../include/activities.php:59 +#: ../../include/datetime.php:563 #, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visiter %2$s de %1$s" +msgid "Happy Birthday %1$s" +msgstr "Joyeux Anniversaire %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/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un groupe supprimé portant ce nom a été ressuscité. Les permissions liées aux éléments existants peuvent 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/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Pièces jointes :" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Ajouter de nouveaux contacts à ce groupe d'accès" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notification d'événement de $Projectname :" +#: ../../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/js_strings.php:5 msgid "Delete this item?" msgstr "Supprimer cet élément?" #: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "" +msgid "[-] show less" +msgstr "[-] montrer moins" #: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "" +msgid "[+] expand" +msgstr "[+] déplier" #: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "" +msgid "[-] collapse" +msgstr "[-] replier" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9610,222 +9359,277 @@ msgctxt "calendar" msgid "All day" msgstr "Toute la journée" -#: ../../include/contact_widgets.php:11 +#: ../../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 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitation disponible" -msgstr[1] "%d invitations disponibles" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'image dépasse la taille limite de %lu octets" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Trouver des canaux" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "L'image est vide." -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Saisir nom ou centre d'intérêt" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "Le stockage de l'image a échoué." + +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "une nouvelle photo" + +#: ../../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/photos.php:506 +msgid "Upload New Photos" +msgstr "Ajouter des photos" + +#: ../../include/zot.php:699 +msgid "Invalid data packet" +msgstr "Paquet de données invalide" + +#: ../../include/zot.php:715 +msgid "Unable to verify channel signature" +msgstr "Impossible de vérifier la signature du canal" + +#: ../../include/zot.php:2363 +#, 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/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Ajouter/Suivre" +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Peut voir mes contacts" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Guillaume Martin, Course à pieds" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Peut voir mes fichiers et photos" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Un profil au hasard" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Peut voir mes pages web" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Inviter des amis" +#: ../../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/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Exemple avancé : name=fred and country=iceland" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Peuvent poster sur la page de mon canal (\"mur\")" -#: ../../include/contact_widgets.php:122 -#, 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" +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Peuvent commenter et/ou aimer mes publications" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "montrer plus" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Peuvent m'envoyer des messages privés" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Options d'annuaire" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Peuvent aimer/ne pas aimer" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Mode sûr" +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profils et autres excluant les publications/commentaires." -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Les forums publics uniquement" +#: ../../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/dir_fns.php:145 -msgid "This Website Only" -msgstr "Ce site uniquement" +#: ../../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:20 -msgid "No recipient provided." -msgstr "Pas de destinataire." +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Peut discuter avec moi (quand disponibie)" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[sans objet]" +#: ../../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/message.php:45 -msgid "Unable to determine sender." -msgstr "Impossible de déterminer l'émetteur." +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Peut modifier mes pages web" -#: ../../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: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:269 -msgid "Who can see this?" -msgstr "" +#: ../../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:270 -msgid "Custom selection" -msgstr "" +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Peut administrer les ressources de mon canal" -#: ../../include/acl_selectors.php:271 +#: ../../include/permissions.php:46 msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "" +"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/acl_selectors.php:272 -msgid "Show" -msgstr "Montrer" +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Réseau social" -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Cacher" +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Social - surtout public" -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Autres réseaux et services de messagerie" +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Social - restreint" -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "" +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Social - privé" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Anniversaire" +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Forum communautaire" -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Age :" +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Forum - surtout public" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-JJ ou MM-JJ" +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - restreint" -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "jamais" +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - privé" -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "à l'instant" +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Republication de flux" -#: ../../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:879 +msgid "Feed - Mostly Public" +msgstr "Flux - surtout public" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "an" -msgstr[1] "ans" +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Flux - restreint" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mois" -msgstr[1] "mois" +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Utilisation spécifique" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "semaine" -msgstr[1] "semaines" +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Spécial - célébrité/promotion" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "jour" -msgstr[1] "jours" +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Spécial - dépôt partagé" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "heure" -msgstr[1] "heures" +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Mode expert/spécifique" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minute" -msgstr[1] "minutes" +#: ../../include/activities.php:41 +msgid " and " +msgstr "et" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "seconde" -msgstr[1] "secondes" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "profil public" -#: ../../include/datetime.php:562 +#: ../../include/activities.php:58 #, php-format -msgid "%1$s's birthday" -msgstr "Anniversaire de %1$s" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s a changé %2$s en “%3$s”" -#: ../../include/datetime.php:563 +#: ../../include/activities.php:59 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Joyeux Anniversaire %1$s" - -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Fil public" - -#: ../../include/zot.php:697 -msgid "Invalid data packet" -msgstr "Paquet de données invalide" - -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" -msgstr "Impossible de vérifier la signature du canal" +msgid "Visit %1$s's %2$s" +msgstr "Visiter %2$s de %1$s" -#: ../../include/zot.php:2326 +#: ../../include/activities.php:62 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossible de vérifier la signature de site pour %s" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s a mis à jour %2$s, modifiant %3$s." -#: ../../include/zot.php:3703 -msgid "invalid target signature" -msgstr "signature de la cible invalide" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Pièces jointes :" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notification d'événement de $Projectname :" #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" @@ -9963,66 +9767,62 @@ 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:1163 +#: ../../boot.php:1162 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "" -#: ../../boot.php:1163 +#: ../../boot.php:1162 msgctxt "opensearch" msgid "$Projectname" msgstr "" -#: ../../boot.php:1481 +#: ../../boot.php:1480 #, 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:1484 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "Erreur de mise à jour sur %s" -#: ../../boot.php:1685 +#: ../../boot.php:1684 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:1708 +#: ../../boot.php:1707 msgid "Remember me" msgstr "Se souvenir de moi" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "Mot de passe oublié ?" -#: ../../boot.php:2277 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "(dés)activer mobile" -#: ../../boot.php:2432 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "Le certificat SSL n'est pas valide. Corrigez le." -#: ../../boot.php:2435 +#: ../../boot.php:2428 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Erreur SSL pour %s" -#: ../../boot.php:2478 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "Les taches planifiées ne tournent pas." -#: ../../boot.php:2482 +#: ../../boot.php:2473 #, 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 3da3329cd..a1ff9f868 100644 --- a/view/fr/hstrings.php +++ b/view/fr/hstrings.php @@ -4,39 +4,7 @@ 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"; @@ -69,8 +37,63 @@ 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 :"; +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 :"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Les contacts potentiels verront ce qui suit avant de pouvoir continuer :"; +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."; @@ -135,7 +158,6 @@ App::$strings["Do not import posts with this text"] = "Ne pas importer les publi App::$strings["This information is public!"] = "Cette information est publique !"; 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"; @@ -144,30 +166,6 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Certaines permissions peuvent être héritées de vos paramètres de confidentialité 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 :"; 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 :"; -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", @@ -198,74 +196,13 @@ 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["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 :"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Les contacts potentiels verront ce qui suit avant de pouvoir continuer :"; -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["Item not found"] = "Élément introuvable"; -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 :"; -App::$strings["- select -"] = "- choisir -"; -App::$strings["Save"] = "Enregistrer"; +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["Blocked"] = "Bloqué(e)"; App::$strings["Ignored"] = "Ignoré(e)"; App::$strings["Hidden"] = "Caché"; @@ -317,38 +254,51 @@ 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["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["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["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["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 :"; -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["Save to Folder:"] = "Classer dans le dossier :"; +App::$strings["- select -"] = "- choisir -"; +App::$strings["Save"] = "Enregistrer"; 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é"; @@ -360,14 +310,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."; @@ -381,33 +331,16 @@ 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["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["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é :"; +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["Documentation Search"] = "Chercher dans la documentation"; App::$strings["Help:"] = "Aide :"; 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 :"; -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"; @@ -419,100 +352,8 @@ 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["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 login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "S'il vous plait, identifiez vous avec votre identifant de \$Projectname ou inscrivez vous comme nouveau membre de \$Projectname 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 : 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 : 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["Apps"] = "Applications"; +App::$strings["Item not available."] = "Élément indisponible."; 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"; @@ -533,8 +374,6 @@ 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."; @@ -543,76 +382,60 @@ 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["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 : @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 :"; -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 :"; +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 :"; +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 login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "S'il vous plait, identifiez vous avec votre identifant de \$Projectname ou inscrivez vous comme nouveau membre de \$Projectname 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["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."; @@ -635,12 +458,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. 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 :"; 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"] = ""; @@ -681,30 +507,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["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"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nom unique (non visible sur la page web) - requis"; -App::$strings["Menu Title"] = "Titre du menu"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre"; -App::$strings["Allow Bookmarks"] = "Autoriser l'usage de favoris"; -App::$strings["Menu may be used to store saved bookmarks"] = "Le menu pourra être utilisé pour stocker des favoris"; -App::$strings["Submit and proceed"] = "Valider et continuer"; -App::$strings["Menus"] = "Menus"; -App::$strings["Bookmarks allowed"] = "Favoris autorisés"; -App::$strings["Delete this menu"] = "Supprimer ce menu"; -App::$strings["Edit menu contents"] = "Modifier le contenu du menu"; -App::$strings["Edit this menu"] = "Modifier ce menu"; -App::$strings["Menu could not be deleted."] = "Impossible de supprimer le menu."; -App::$strings["Menu not found."] = "Menu introuvable."; -App::$strings["Edit Menu"] = "Modifier le menu"; -App::$strings["Add or remove entries to this menu"] = "Ajouter/supprimer des entrées à ce menu"; -App::$strings["Menu name"] = "Nom du menu"; -App::$strings["Must be unique, only seen by you"] = "Doit être unique, ne sera vu que par vous"; -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)"; @@ -721,9 +523,37 @@ App::$strings["Forgot your Password?"] = "Mot de passe oublié ?"; 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"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nom unique (non visible sur la page web) - requis"; +App::$strings["Menu Title"] = "Titre du menu"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre"; +App::$strings["Allow Bookmarks"] = "Autoriser l'usage de favoris"; +App::$strings["Menu may be used to store saved bookmarks"] = "Le menu pourra être utilisé pour stocker des favoris"; +App::$strings["Submit and proceed"] = "Valider et continuer"; +App::$strings["Menus"] = "Menus"; +App::$strings["Bookmarks allowed"] = "Favoris autorisés"; +App::$strings["Delete this menu"] = "Supprimer ce menu"; +App::$strings["Edit menu contents"] = "Modifier le contenu du menu"; +App::$strings["Edit this menu"] = "Modifier ce menu"; +App::$strings["Menu could not be deleted."] = "Impossible de supprimer le menu."; +App::$strings["Menu not found."] = "Menu introuvable."; +App::$strings["Edit Menu"] = "Modifier le menu"; +App::$strings["Add or remove entries to this menu"] = "Ajouter/supprimer des entrées à ce menu"; +App::$strings["Menu name"] = "Nom du menu"; +App::$strings["Must be unique, only seen by you"] = "Doit être unique, ne sera vu que par vous"; +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["__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 à :"; +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"; @@ -733,13 +563,6 @@ App::$strings["Privacy group: "] = "Groupe d'accès :"; 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 à :"; -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."; @@ -769,6 +592,203 @@ 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 : \"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 import an existing channel from another location."] = "ou importer un canal existant 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 : @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 :"; +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 :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 :"; +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 : %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 : 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 : 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 may 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 peut 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 :"; +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 :"; +App::$strings["Website: "] = "Site web :"; +App::$strings["Description: "] = "Description :"; App::$strings["Theme settings updated."] = "Paramètres du thème mis à jour."; App::$strings["# Accounts"] = "# Comptes"; App::$strings["# blocked accounts"] = "# comptes bloqués"; @@ -1011,91 +1031,19 @@ 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["Name or caption"] = "Nom ou libellé"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples : \"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 import an existing channel from another location."] = "ou importer un canal existant 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 :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 : %1\$s"; -App::$strings["Version %s"] = "Version %s"; -App::$strings["Installed plugins/addons/apps:"] = "Greffons/extensions/applications installés :"; -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 :"; -App::$strings["Last background fetch: "] = "Dernière récupération en tâche de fond :"; -App::$strings["Current load average: "] = "Charge moyenne actuelle :"; -App::$strings["Running at web location"] = "Tourne à l'adresse internet"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Merci de visiter hubzilla.org 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 :"; -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 may 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 peut 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 :"; -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 :"; -App::$strings["Website: "] = "Site web :"; -App::$strings["Description: "] = "Description :"; -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["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["Select a bookmark folder"] = "Choisir un dossier de favoris"; App::$strings["Save Bookmark"] = "Enregistrer le favori"; App::$strings["URL of bookmark"] = "URL du favori"; @@ -1121,7 +1069,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["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["Proceed to create your first channel"] = "Continuer pour créer votre premier canal"; 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"; @@ -1138,23 +1086,17 @@ 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["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 %2\$s"] = "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Ces fichiers de contenu peuvent être importés ou restaurés en visitant %2\$s 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["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 :"; +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["Items tagged with: %s"] = "Eléments étiquetés avec : %s"; App::$strings["Search results for: %s"] = "Résultats de recherche pour : %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."; @@ -1187,12 +1129,6 @@ 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 :"; 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 dropbox 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"; @@ -1355,6 +1291,7 @@ 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 : le module mod-rewrite du serveur web Apache est requis, mais pas installé."; @@ -1365,6 +1302,7 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Erreur : le module openssl de PHP est requis, mais pas installé."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Erreur : 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 : le module mb_string de PHP est requis, mais pas installé."; +App::$strings["Error: mcrypt PHP module required but not installed."] = "Erreur : le module mcrypt de PHP est requis, mais pas installé."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Erreur : 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."; @@ -1376,7 +1314,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["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["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["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é !"; @@ -1384,7 +1322,6 @@ 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 :"; App::$strings["Url rewrite is working"] = "La réécriture d'URL fonctionne"; @@ -1396,20 +1333,19 @@ App::$strings["Files: shared with me"] = "Fichiers : 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["Thing updated"] = "Elément mis à jour"; -App::$strings["Object store: failed"] = "Stockage de l'objet : é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["Version %s"] = "Version %s"; +App::$strings["Installed plugins/addons/apps:"] = "Greffons/extensions/applications installés :"; +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 :"; +App::$strings["Last background fetch: "] = "Dernière récupération en tâche de fond :"; +App::$strings["Current load average: "] = "Charge moyenne actuelle :"; +App::$strings["Running at web location"] = "Tourne à l'adresse internet"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Merci de visiter hubzilla.org 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["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."; @@ -1437,38 +1373,60 @@ 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 :"; -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["Thing updated"] = "Elément mis à jour"; +App::$strings["Object store: failed"] = "Stockage de l'objet : é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 %2\$s"] = "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Ces fichiers de contenu peuvent être importés ou restaurés en visitant %2\$s 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["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é :"; -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["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["Xchan Lookup"] = "Recherche xchan"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Recherche xchan commençant par (ou adresse \"webbie\") :"; +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."; @@ -1516,27 +1474,6 @@ 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"; @@ -1573,7 +1510,7 @@ App::$strings["Expires: %s"] = "Expire : %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["%s show all"] = ""; +App::$strings["[+] show all"] = "[+] voir tous"; App::$strings["Bold"] = "Gras"; App::$strings["Italic"] = "Italique"; App::$strings["Underline"] = "Souligné"; @@ -1582,93 +1519,9 @@ 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["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"; -App::$strings["Your posts and conversations"] = "Vos publications et conversations"; -App::$strings["Your profile page"] = "Votre profil"; -App::$strings["Manage/Edit profiles"] = "Gérer/modifier les profils"; -App::$strings["Edit Profile"] = "Éditeur de profil"; -App::$strings["Edit your profile"] = "Modifier votre profil"; -App::$strings["Your photos"] = "Vos photos"; -App::$strings["Your files"] = "Vos fichiers"; -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"; -App::$strings["Click to authenticate to your home hub"] = "S'authentifier auprès de votre hub principal"; -App::$strings["Home Page"] = "Page d'accueil"; -App::$strings["Create an account"] = "Créer un compte"; -App::$strings["Help and documentation"] = "Aide et documentation"; -App::$strings["Applications, utilities, links, games"] = "Applications, utilitaires, liens, jeux"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Recherche @nom, #tag, contenu"; -App::$strings["Channel Directory"] = "Annuaire des canaux"; -App::$strings["Your grid"] = "Votre réseau"; -App::$strings["Mark all grid notifications seen"] = "Marquer toutes les notifications du réseau comme vues"; -App::$strings["Channel home"] = "Mon canal"; -App::$strings["Mark all channel notifications seen"] = "Marquer toutes les notifications du canal comme vues"; -App::$strings["Notices"] = "Notifications"; -App::$strings["Notifications"] = "Notifications"; -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"; @@ -1678,196 +1531,34 @@ 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 :"; -App::$strings["Status:"] = "État :"; -App::$strings["Homepage:"] = "Site Internet :"; -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 :"; -App::$strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Orientation sexuelle :"; -App::$strings["Tags:"] = "Étiquettes :"; -App::$strings["Political Views:"] = "Opinions politiques :"; -App::$strings["Religion:"] = "Religion :"; -App::$strings["Hobbies/Interests:"] = "Occupations/Centres d'intérêt :"; -App::$strings["Likes:"] = "Aime :"; -App::$strings["Dislikes:"] = "N'aime pas :"; -App::$strings["Contact information and Social Networks:"] = "Coordonnées et réseaux sociaux :"; -App::$strings["My other channels:"] = "Mes autres canaux :"; -App::$strings["Musical interests:"] = "Goûts musicaux :"; -App::$strings["Books, literature:"] = "Lectures, goûts littéraires :"; -App::$strings["Television:"] = "Télévision :"; -App::$strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divertissement&nsbp;:"; -App::$strings["Love/Romance:"] = "Vie sentimentale/amoureuse :"; -App::$strings["Work/employment:"] = "Travail/Occupation "; -App::$strings["School/education:"] = "Études "; -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["%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 :"; -App::$strings["Filed under:"] = "Classé sous :"; -App::$strings["View in context"] = "Voir en contexte"; -App::$strings["remove"] = "supprimer"; -App::$strings["Delete Selected Items"] = "Supprimer les éléments selectionnés"; -App::$strings["View Source"] = "Voir source"; -App::$strings["Follow Thread"] = "Suivre la discussion"; -App::$strings["Unfollow Thread"] = "Ne plus suivre la discussion"; -App::$strings["Activity/Posts"] = "Activité/Publications"; -App::$strings["Edit Connection"] = "Modifier le contact"; -App::$strings["Message"] = "Message"; -App::$strings["%s likes this."] = "%s aime ça."; -App::$strings["%s doesn't like this."] = "%s n'aime pas ça."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d personne aime ceci.", - 1 => "%2\$d personnes aiment ceci.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d personne n'aime pas ça.", - 1 => "%2\$d personnes n'aiment pas ça.", -); -App::$strings["and"] = "et"; -App::$strings[", and %d other people"] = array( - 0 => ", et %d autre personne", - 1 => ", et %d autres personnes", -); -App::$strings["%s like this."] = "%s aime ça."; -App::$strings["%s don't like this."] = "%s n'aime pas ça."; -App::$strings["Set your location"] = "Spécifier votre emplacement géographique"; -App::$strings["Clear browser location"] = "Supprimer l'emplacement géographique du navigateur"; -App::$strings["Tag term:"] = "Étiquette :"; -App::$strings["Where are you right now?"] = "Où êtes-vous en ce moment ?"; -App::$strings["Page link name"] = "Nom du lien vers la page"; -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["Discover"] = "À découvrir"; -App::$strings["Imported public streams"] = "Flux publics importés"; -App::$strings["Commented Order"] = "Par date de commentaire"; -App::$strings["Sort by Comment Date"] = "Trier par date de dernier commentaire"; -App::$strings["Posted Order"] = "Par date de publication"; -App::$strings["Sort by Post Date"] = "Trier par date de publication"; -App::$strings["Posts that mention or involve you"] = "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre"; -App::$strings["Activity Stream - by date"] = "Flux d'activité - par date"; -App::$strings["Starred"] = "Mis en avant (étoiles)"; -App::$strings["Favourite Posts"] = "Publications préférées"; -App::$strings["Spam"] = "Indésirable"; -App::$strings["Posts flagged as SPAM"] = "Publications marquées comme indésirables"; -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["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( - 0 => "Participe", - 1 => "Participent", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Ne participe pas", - 1 => "Ne participent pas", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indécis(e)", - 1 => "Indécis(es)", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "D'accord", - 1 => "D'accord", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Pas d'accord", - 1 => "Pas d'accord", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "S'abstient", - 1 => "S'abstiennent", -); +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\à G\\hi"; +App::$strings["Starts:"] = "Début :"; +App::$strings["Finishes:"] = "Fin :"; +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["Frequently"] = "Fréquemment"; -App::$strings["Hourly"] = "Toutes les heures"; -App::$strings["Twice daily"] = "Deux fois par jour"; -App::$strings["Daily"] = "Chaque jour"; -App::$strings["Weekly"] = "Chaque semaine"; -App::$strings["Monthly"] = "Chaque mois"; -App::$strings["Currently Male"] = "Actuellement homme"; -App::$strings["Currently Female"] = "Actuellement femme"; -App::$strings["Mostly Male"] = "Surtout homme"; -App::$strings["Mostly Female"] = "Surtout femme"; -App::$strings["Transgender"] = "Transgenre"; -App::$strings["Intersex"] = "Intersexuel"; -App::$strings["Transsexual"] = "Transsexuel"; -App::$strings["Hermaphrodite"] = "Hermaphrodite"; -App::$strings["Neuter"] = "Neutre"; -App::$strings["Non-specific"] = "Non spécifique"; -App::$strings["Undecided"] = "Indécis"; -App::$strings["Males"] = "Hommes"; -App::$strings["Females"] = "Femmes"; -App::$strings["Gay"] = "Gay"; -App::$strings["Lesbian"] = "Lesbienne"; -App::$strings["No Preference"] = "Sans préférence"; -App::$strings["Bisexual"] = "Bisexuel"; -App::$strings["Autosexual"] = "Autosexuel"; -App::$strings["Abstinent"] = "Abstinent"; -App::$strings["Virgin"] = "Vierge"; -App::$strings["Deviant"] = "Déviant"; -App::$strings["Fetish"] = "Fétichiste"; -App::$strings["Oodles"] = "Une floppée"; -App::$strings["Nonsexual"] = "Non-sexuel"; -App::$strings["Single"] = "Célibataire"; -App::$strings["Lonely"] = "Solitaire"; -App::$strings["Available"] = "Disponible"; -App::$strings["Unavailable"] = "Indisponible"; -App::$strings["Has crush"] = "A un béguin"; -App::$strings["Infatuated"] = "Amoureux transi"; -App::$strings["Dating"] = "Sort avec quelqu'un"; -App::$strings["Unfaithful"] = "Infidèle"; -App::$strings["Sex Addict"] = "Accro au sexe"; -App::$strings["Friends/Benefits"] = "Amis avec bénéfices"; -App::$strings["Casual"] = "Sans engagement"; -App::$strings["Engaged"] = "Fiancé(e)"; -App::$strings["Married"] = "Marié(e)"; -App::$strings["Imaginarily married"] = "Marié(e) dans ses rêves"; -App::$strings["Partners"] = "Partenaires"; -App::$strings["Cohabiting"] = "En cohabitation"; -App::$strings["Common law"] = "Conjoints de fait"; -App::$strings["Happy"] = "Heureux"; -App::$strings["Not looking"] = "Pas en recherche"; -App::$strings["Swinger"] = "Echangiste"; -App::$strings["Betrayed"] = "Trahi(e)"; -App::$strings["Separated"] = "Séparé(e)"; -App::$strings["Unstable"] = "Instable"; -App::$strings["Divorced"] = "Divorcé(e)"; -App::$strings["Imaginarily divorced"] = "Divorcé(e) dans ses rêves"; -App::$strings["Widowed"] = "Veuf/veuve"; -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["%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["(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 : %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"; @@ -1877,6 +1568,7 @@ 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"; @@ -1939,21 +1631,385 @@ 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["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 : 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 :"; +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["Logout"] = "Déconnexion"; +App::$strings["End this session"] = "Mettre fin à la session"; +App::$strings["Home"] = "Mon canal"; +App::$strings["Your posts and conversations"] = "Vos publications et conversations"; +App::$strings["Your profile page"] = "Votre profil"; +App::$strings["Manage/Edit profiles"] = "Gérer/modifier les profils"; +App::$strings["Edit Profile"] = "Éditeur de profil"; +App::$strings["Edit your profile"] = "Modifier votre profil"; +App::$strings["Your photos"] = "Vos photos"; +App::$strings["Your files"] = "Vos fichiers"; +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["Sign in"] = "Connexion"; +App::$strings["%s - click to logout"] = "%s - cliquer ici pour déconnecter"; +App::$strings["Remote authentication"] = "Authentification distante"; +App::$strings["Click to authenticate to your home hub"] = "S'authentifier auprès de votre hub principal"; +App::$strings["Home Page"] = "Page d'accueil"; +App::$strings["Create an account"] = "Créer un compte"; +App::$strings["Help and documentation"] = "Aide et documentation"; +App::$strings["Applications, utilities, links, games"] = "Applications, utilitaires, liens, jeux"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Recherche @nom, #tag, contenu"; +App::$strings["Channel Directory"] = "Annuaire des canaux"; +App::$strings["Your grid"] = "Votre réseau"; +App::$strings["Mark all grid notifications seen"] = "Marquer toutes les notifications du réseau comme vues"; +App::$strings["Channel home"] = "Mon canal"; +App::$strings["Mark all channel notifications seen"] = "Marquer toutes les notifications du canal comme vues"; +App::$strings["Notices"] = "Notifications"; +App::$strings["Notifications"] = "Notifications"; +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["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["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["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é : 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["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; +App::$strings["Categories:"] = "Catégories :"; +App::$strings["Filed under:"] = "Classé sous :"; +App::$strings["View in context"] = "Voir en contexte"; +App::$strings["remove"] = "supprimer"; +App::$strings["Delete Selected Items"] = "Supprimer les éléments selectionnés"; +App::$strings["View Source"] = "Voir source"; +App::$strings["Follow Thread"] = "Suivre la discussion"; +App::$strings["Unfollow Thread"] = "Ne plus suivre la discussion"; +App::$strings["Activity/Posts"] = "Activité/Publications"; +App::$strings["Edit Connection"] = "Modifier le contact"; +App::$strings["Message"] = "Message"; +App::$strings["%s likes this."] = "%s aime ça."; +App::$strings["%s doesn't like this."] = "%s n'aime pas ça."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d personne aime ceci.", + 1 => "%2\$d personnes aiment ceci.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d personne n'aime pas ça.", + 1 => "%2\$d personnes n'aiment pas ça.", +); +App::$strings["and"] = "et"; +App::$strings[", and %d other people"] = array( + 0 => ", et %d autre personne", + 1 => ", et %d autres personnes", +); +App::$strings["%s like this."] = "%s aime ça."; +App::$strings["%s don't like this."] = "%s n'aime pas ça."; +App::$strings["Set your location"] = "Spécifier votre emplacement géographique"; +App::$strings["Clear browser location"] = "Supprimer l'emplacement géographique du navigateur"; +App::$strings["Tag term:"] = "Étiquette :"; +App::$strings["Where are you right now?"] = "Où êtes-vous en ce moment ?"; +App::$strings["Page link name"] = "Nom du lien vers la page"; +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"; +App::$strings["Sort by Comment Date"] = "Trier par date de dernier commentaire"; +App::$strings["Posted Order"] = "Par date de publication"; +App::$strings["Sort by Post Date"] = "Trier par date de publication"; +App::$strings["Posts that mention or involve you"] = "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre"; +App::$strings["Activity Stream - by date"] = "Flux d'activité - par date"; +App::$strings["Starred"] = "Mis en avant (étoiles)"; +App::$strings["Favourite Posts"] = "Publications préférées"; +App::$strings["Spam"] = "Indésirable"; +App::$strings["Posts flagged as SPAM"] = "Publications marquées comme indésirables"; +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["Saved Bookmarks"] = "Favoris sauvegardés"; +App::$strings["Manage Webpages"] = "Gérer les pages web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Participe", + 1 => "Participent", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Ne participe pas", + 1 => "Ne participent pas", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indécis(e)", + 1 => "Indécis(es)", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "D'accord", + 1 => "D'accord", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Pas d'accord", + 1 => "Pas d'accord", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "S'abstient", + 1 => "S'abstiennent", +); +App::$strings["Frequently"] = "Fréquemment"; +App::$strings["Hourly"] = "Toutes les heures"; +App::$strings["Twice daily"] = "Deux fois par jour"; +App::$strings["Daily"] = "Chaque jour"; +App::$strings["Weekly"] = "Chaque semaine"; +App::$strings["Monthly"] = "Chaque mois"; +App::$strings["Currently Male"] = "Actuellement homme"; +App::$strings["Currently Female"] = "Actuellement femme"; +App::$strings["Mostly Male"] = "Surtout homme"; +App::$strings["Mostly Female"] = "Surtout femme"; +App::$strings["Transgender"] = "Transgenre"; +App::$strings["Intersex"] = "Intersexuel"; +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"; +App::$strings["Gay"] = "Gay"; +App::$strings["Lesbian"] = "Lesbienne"; +App::$strings["No Preference"] = "Sans préférence"; +App::$strings["Bisexual"] = "Bisexuel"; +App::$strings["Autosexual"] = "Autosexuel"; +App::$strings["Abstinent"] = "Abstinent"; +App::$strings["Virgin"] = "Vierge"; +App::$strings["Deviant"] = "Déviant"; +App::$strings["Fetish"] = "Fétichiste"; +App::$strings["Oodles"] = "Une floppée"; +App::$strings["Nonsexual"] = "Non-sexuel"; +App::$strings["Single"] = "Célibataire"; +App::$strings["Lonely"] = "Solitaire"; +App::$strings["Available"] = "Disponible"; +App::$strings["Unavailable"] = "Indisponible"; +App::$strings["Has crush"] = "A un béguin"; +App::$strings["Infatuated"] = "Amoureux transi"; +App::$strings["Dating"] = "Sort avec quelqu'un"; +App::$strings["Unfaithful"] = "Infidèle"; +App::$strings["Sex Addict"] = "Accro au sexe"; +App::$strings["Friends/Benefits"] = "Amis avec bénéfices"; +App::$strings["Casual"] = "Sans engagement"; +App::$strings["Engaged"] = "Fiancé(e)"; +App::$strings["Married"] = "Marié(e)"; +App::$strings["Imaginarily married"] = "Marié(e) dans ses rêves"; +App::$strings["Partners"] = "Partenaires"; +App::$strings["Cohabiting"] = "En cohabitation"; +App::$strings["Common law"] = "Conjoints de fait"; +App::$strings["Happy"] = "Heureux"; +App::$strings["Not looking"] = "Pas en recherche"; +App::$strings["Swinger"] = "Echangiste"; +App::$strings["Betrayed"] = "Trahi(e)"; +App::$strings["Separated"] = "Séparé(e)"; +App::$strings["Unstable"] = "Instable"; +App::$strings["Divorced"] = "Divorcé(e)"; +App::$strings["Imaginarily divorced"] = "Divorcé(e) dans ses rêves"; +App::$strings["Widowed"] = "Veuf/veuve"; +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 :"; +App::$strings["Status:"] = "État :"; +App::$strings["Homepage:"] = "Site Internet :"; +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 :"; +App::$strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Orientation sexuelle :"; +App::$strings["Tags:"] = "Étiquettes :"; +App::$strings["Political Views:"] = "Opinions politiques :"; +App::$strings["Religion:"] = "Religion :"; +App::$strings["Hobbies/Interests:"] = "Occupations/Centres d'intérêt :"; +App::$strings["Likes:"] = "Aime :"; +App::$strings["Dislikes:"] = "N'aime pas :"; +App::$strings["Contact information and Social Networks:"] = "Coordonnées et réseaux sociaux :"; +App::$strings["My other channels:"] = "Mes autres canaux :"; +App::$strings["Musical interests:"] = "Goûts musicaux :"; +App::$strings["Books, literature:"] = "Lectures, goûts littéraires :"; +App::$strings["Television:"] = "Télévision :"; +App::$strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divertissement&nsbp;:"; +App::$strings["Love/Romance:"] = "Vie sentimentale/amoureuse :"; +App::$strings["Work/employment:"] = "Travail/Occupation "; +App::$strings["School/education:"] = "Études "; +App::$strings["Like this thing"] = "J'aime ceci"; 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"; @@ -1965,7 +2021,6 @@ 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"; @@ -1999,7 +2054,6 @@ 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"; @@ -2008,166 +2062,79 @@ App::$strings["Enable tab to display all new Network activity"] = "Activer un on App::$strings["Affinity Tool"] = "Gérer l'affinité"; App::$strings["Filter stream activity by depth of relationships"] = "Filtrer le flux d'activité en fonction de la profondeur des relations"; App::$strings["Connection Filtering"] = "Filtrage des contacts"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrer les publications entrantes de mes contacts sur la base de mots-clefs"; -App::$strings["Show channel suggestions"] = "Montrer les suggestions de canaux"; -App::$strings["Post/Comment Tools"] = "Gérer les publications/commentaires"; -App::$strings["Community Tagging"] = "Etiquetage communautaire"; -App::$strings["Ability to tag existing posts"] = "Permettre de marquer les publications existantes"; -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"; -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["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé portant ce nom a été ressuscité. Les permissions liées aux éléments existants peuvent 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 :"; -App::$strings["Finishes:"] = "Fin :"; -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 :"; -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 : %s"; -App::$strings["Connection not found."] = "Contact non trouvé."; -App::$strings["profile photo"] = "photo de profil"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrer les publications entrantes de mes contacts sur la base de mots-clefs"; +App::$strings["Show channel suggestions"] = "Montrer les suggestions de canaux"; +App::$strings["Post/Comment Tools"] = "Gérer les publications/commentaires"; +App::$strings["Community Tagging"] = "Etiquetage communautaire"; +App::$strings["Ability to tag existing posts"] = "Permettre de marquer les publications existantes"; +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["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"; +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["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 : 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 “%3\$s”"] = "%1\$s a changé %2\$s en “%3\$s”"; -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 :"; -App::$strings["\$Projectname event notification:"] = "Notification d'événement de \$Projectname :"; +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.
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 :"; +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 may 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 peuvent 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["Delete this item?"] = "Supprimer cet élément?"; -App::$strings["%s show less"] = ""; -App::$strings["%s expand"] = ""; -App::$strings["%s collapse"] = ""; +App::$strings["[-] show less"] = "[-] montrer moins"; +App::$strings["[+] expand"] = "[+] déplier"; +App::$strings["[-] collapse"] = "[-] replier"; 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"; @@ -2222,78 +2189,72 @@ 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["%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é : 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.
These permissions set who is allowed to view the post."] = ""; -App::$strings["Birthday"] = "Anniversaire"; -App::$strings["Age: "] = "Age :"; -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["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["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 “%3\$s”"] = "%1\$s a changé %2\$s en “%3\$s”"; +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 :"; +App::$strings["\$Projectname event notification:"] = "Notification d'événement de \$Projectname :"; 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"; @@ -2333,7 +2294,6 @@ 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é ?"; 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 \n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" +"PO-Revision-Date: 2016-06-10 09:14+0000\n" +"Last-Translator: fabrixxm \n" "Language-Team: 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,366 +264,615 @@ 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/Chatsvc.php:117 -msgid "Away" -msgstr "Assente" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nome del block" -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" -msgstr "Online" +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Block" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Non è possibile accedere alle informazioni sul contatto." +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Titolo del block" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." +#: ../../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/Connedit.php:248 -msgid "Connection updated." -msgstr "Contatto aggiornato." +#: ../../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/Connedit.php:250 -msgid "Failed to update connection record." -msgstr "Impossibile aggiornare le informazioni del contatto." +#: ../../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/Connedit.php:300 -msgid "is now connected to" -msgstr "ha come nuovo contatto" +#: ../../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/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:1708 -msgid "No" -msgstr "No" +#: ../../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/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:1708 -msgid "Yes" -msgstr "Sì" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permesso negato." -#: ../../Zotlabs/Module/Connedit.php:435 -msgid "Could not access address book record." -msgstr "Impossibile accedere alle informazioni della rubrica." +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l j F" -#: ../../Zotlabs/Module/Connedit.php:455 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Il canale non è disponibile - impossibile aggiornare." +#: ../../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/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 "Impossibile impostare i parametri della rubrica." +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Modifica l'evento" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Connection has been removed." -msgstr "Il contatto è stato rimosso." +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Crea un evento" -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 -msgid "View Profile" -msgstr "Profilo" +#: ../../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/Connedit.php:552 -#, php-format -msgid "View %s's profile" -msgstr "Guarda il profilo di %s" +#: ../../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/Connedit.php:556 -msgid "Refresh Permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Esporta" -#: ../../Zotlabs/Module/Connedit.php:559 -msgid "Fetch updated permissions" -msgstr "Guarda e modifica i permessi assegnati" +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importa" -#: ../../Zotlabs/Module/Connedit.php:563 -msgid "Recent Activity" -msgstr "Attività recenti" +#: ../../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/Connedit.php:566 -msgid "View recent posts and comments" -msgstr "Leggi i post recenti e i commenti" +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Oggi" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Sblocca" +#: ../../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/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Blocca" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "Post e commenti" -#: ../../Zotlabs/Module/Connedit.php:573 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "Solo post" -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "This connection is blocked!" -msgstr "Questa connessione è tra quelle bloccate!" +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Unignore" -msgstr "Non ignorare" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chat non trovata" -#: ../../Zotlabs/Module/Connedit.php:578 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Ignora" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Lascia la chat" -#: ../../Zotlabs/Module/Connedit.php:581 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Elimina questa chat" -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "This connection is ignored!" -msgstr "Questa connessione è tra quelle ignorate!" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Non sono presente" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Unarchive" -msgstr "Non archiviare" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Sono online" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Archive" -msgstr "Archivia" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Aggiungi questa chat ai segnalibri" -#: ../../Zotlabs/Module/Connedit.php:589 -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/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/Connedit.php:590 -msgid "This connection is archived!" -msgstr "Questa connessione è tra quelle archiviate!" +#: ../../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/Connedit.php:594 -msgid "Unhide" -msgstr "Non nascondere" +#: ../../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/Connedit.php:594 -msgid "Hide" -msgstr "Nascondi" +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funzionalità disattivata." -#: ../../Zotlabs/Module/Connedit.php:597 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" +#: ../../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" + +#: ../../Zotlabs/Module/Chatsvc.php:122 +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." + +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." + +#: ../../Zotlabs/Module/Connedit.php:227 +msgid "Connection updated." +msgstr "Contatto aggiornato." + +#: ../../Zotlabs/Module/Connedit.php:229 +msgid "Failed to update connection record." +msgstr "Impossibile aggiornare le informazioni del contatto." + +#: ../../Zotlabs/Module/Connedit.php:276 +msgid "is now connected to" +msgstr "ha come nuovo contatto" + +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "No" +msgstr "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 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "Yes" +msgstr "Sì" + +#: ../../Zotlabs/Module/Connedit.php:411 +msgid "Could not access address book record." +msgstr "Impossibile accedere alle informazioni della rubrica." + +#: ../../Zotlabs/Module/Connedit.php:425 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Il canale non è disponibile - impossibile aggiornare." + +#: ../../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:503 +msgid "Connection has been removed." +msgstr "Il contatto è stato rimosso." + +#: ../../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:522 +#, php-format +msgid "View %s's profile" +msgstr "Guarda il profilo di %s" + +#: ../../Zotlabs/Module/Connedit.php:526 +msgid "Refresh Permissions" +msgstr "Modifica i permessi" + +#: ../../Zotlabs/Module/Connedit.php:529 +msgid "Fetch updated permissions" +msgstr "Guarda e modifica i permessi assegnati" + +#: ../../Zotlabs/Module/Connedit.php:533 +msgid "Recent Activity" +msgstr "Attività recenti" + +#: ../../Zotlabs/Module/Connedit.php:536 +msgid "View recent posts and comments" +msgstr "Leggi i post recenti e i commenti" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +msgid "Unblock" +msgstr "Sblocca" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +msgid "Block" +msgstr "Blocca" + +#: ../../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:544 +msgid "This connection is blocked!" +msgstr "Questa connessione è tra quelle bloccate!" + +#: ../../Zotlabs/Module/Connedit.php:548 +msgid "Unignore" +msgstr "Non ignorare" + +#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" +msgstr "Ignora" + +#: ../../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:552 +msgid "This connection is ignored!" +msgstr "Questa connessione è tra quelle ignorate!" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Unarchive" +msgstr "Non archiviare" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Archive" +msgstr "Archivia" + +#: ../../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:560 +msgid "This connection is archived!" +msgstr "Questa connessione è tra quelle archiviate!" + +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Unhide" +msgstr "Non nascondere" + +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Hide" +msgstr "Nascondi" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../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: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 privacy settings, which have higher " @@ -775,7 +880,7 @@ msgid "" " settings here." msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:739 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -783,146 +888,42 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Alcuni permessi derivano dalle impostazioni di privacy 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/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valutazione" +msgstr[1] "%d valutazioni" -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Nome" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Sesso:" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Cognome" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Stato:" -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Nick" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Homepage:" -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nome e cognome" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 +msgid "Age:" +msgstr "Età:" -#: ../../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" -msgid_plural "%d ratings" -msgstr[0] "%d valutazione" -msgstr[1] "%d valutazioni" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Sesso:" - -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Stato:" - -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Homepage:" - -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 -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,406 +1019,122 @@ 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/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/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Canale premium - configurazione" +#: ../../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/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Abilita le restrizioni del canale premium" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Titolo (facoltativo)" -#: ../../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/Editblock.php:133 +msgid "Edit Block" +msgstr "Modifica il block" -#: ../../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/Common.php:14 +msgid "No channel." +msgstr "Nessun canale." -#: ../../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/Common.php:43 +msgid "Common connections" +msgstr "Contatti in comune" -#: ../../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/Common.php:48 +msgid "No connections in common." +msgstr "Nessun contatto in comune." -#: ../../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/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Bloccati" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canale premium - con restrizioni" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignorati" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Le voci del calendario sono state importate." +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Nascosti" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Non sono state trovate voci del calendario." +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archiviati" -#: ../../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/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1535 +msgid "New" +msgstr "Novità" -#: ../../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/Connections.php:138 +msgid "New Connections" +msgstr "Nuovi contatti" -#: ../../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/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Richieste di contatto in attesa" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Evento non trovato." +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Tutti i contatti" -#: ../../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/Connections.php:148 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Modifica il titolo dell'evento" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Titolo dell'evento" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" -#: ../../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/Connections.php:178 +msgid "Only show archived connections" +msgstr "Mostra solo i contatti archiviati" -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Modifica la categoria" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "In attesa di conferma" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Categoria" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Modifica data/ora di inizio" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Modifica il contatto" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Data e ora di inizio" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Elimina il contatto" -#: ../../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/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -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/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 "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:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Salva" - -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Bloccati" - -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignorati" - -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Nascosti" - -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archiviati" - -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 -msgid "New" -msgstr "Novità" - -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nuovi contatti" - -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" - -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Tutti i contatti" - -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" - -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" - -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" - -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Mostra solo i contatti archiviati" - -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" - -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "In attesa di conferma" - -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Modifica il contatto" - -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Elimina il contatto" - -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Indirizzo del canale" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Indirizzo del canale" #: ../../Zotlabs/Module/Connections.php:267 msgid "Network" @@ -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/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:44 +#: ../../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,70 +1626,44 @@ 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/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Condividi i contenuti su $Projectname da Firefox" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "L'app contiene errori" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Inserisci il codice" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Autorizza la app" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modifica app" +#: ../../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:110 -msgid "Create App" -msgstr "Crea una app" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nome 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/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Ricerca nella guida" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL icona" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixel - facoltativa" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "ID versione" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prezzo app" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Indirizzo (URL) per acquistare la app" - -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Ricerca nella guida" - -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Guida:" +#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 +#: ../../Zotlabs/Module/Help.php:79 +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,2967 +1671,2983 @@ 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/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "App" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Guida di Comanche Page Description Language" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elemento non disponibile." -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Descrizione del layout" +#: ../../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/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/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." -#: ../../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/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/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/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Scarica il file PDL" +#: ../../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/Like.php:19 -msgid "Like/Dislike" -msgstr "Mi piace/Non mi piace" +#: ../../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/Like.php:24 -msgid "This action is restricted to members." -msgstr "Questa funzionalità è riservata agli iscritti." +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Nessun canale. Import fallito." -#: ../../Zotlabs/Module/Like.php:25 +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "L'importazione è terminata con successo." + +#: ../../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:537 +msgid "Import Channel" +msgstr "Importa un canale" + +#: ../../Zotlabs/Module/Import.php:538 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." +"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/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Richiesta non valida." +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "File da caricare" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "il canale" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio hub" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "Oggetto" +#: ../../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/Like.php:192 -msgid "Channel unavailable." -msgstr "Canale non trovato." +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio hub" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Il comando precedente è stato annullato." +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "La password per il vecchio hub" -#: ../../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/Import.php:544 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "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/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/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Rendi questo hub il mio indirizzo primario" -#: ../../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/Import.php:546 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" -#: ../../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/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/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/Item.php:178 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../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/Item.php:427 +msgid "Empty post discarded." +msgstr "Il post vuoto è stato ignorato." -#: ../../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/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." -#: ../../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/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "I post duplicati sono scartati." + +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Post non salvato." -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "Impossibile caricare il post dal database." + +#: ../../Zotlabs/Module/Item.php:1248 #, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non partecipa" +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/Like.php:433 +#: ../../Zotlabs/Module/Item.php:1255 #, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s forse partecipa" +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." -#: ../../Zotlabs/Module/Like.php:536 -msgid "Action completed." -msgstr "Comando completato." +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +msgid "Layouts" +msgstr "Layout" -#: ../../Zotlabs/Module/Like.php:537 -msgid "Thank you." -msgstr "Grazie." +#: ../../Zotlabs/Module/Layouts.php:183 +msgid "Comanche page description language help" +msgstr "Guida di Comanche Page Description Language" -#: ../../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/Layouts.php:187 +msgid "Layout Description" +msgstr "Descrizione del layout" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profilo eliminato." +#: ../../Zotlabs/Module/Layouts.php:192 +msgid "Download PDL file" +msgstr "Scarica il file PDL" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profilo-" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Nome" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Il profilo non è disponibile per l'export." +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Cognome" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Il nome del profilo è obbligatorio." +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Nick" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Stato sentimentale" +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nome e cognome" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Partner affettivo" +#: ../../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/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Mi piace" +#: ../../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/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Foto del profilo 16px" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Lavoro/impiego" +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Foto del profilo 32px" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religione" +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Foto del profilo 48px" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Orientamento politico" +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Foto del profilo 64px" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Preferenze sessuali" +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Foto del profilo 80px" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Home page" +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Foto del profilo 128px" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interessi" +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Fuso orario" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Indirizzo" +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Indirizzo home page" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profilo aggiornato." +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" +msgstr "Lingua" -#: ../../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/Id.php:31 +msgid "Birth Year" +msgstr "Anno di nascita" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Mese di nascita" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Guarda questo profilo" +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Giorno di nascita" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 -msgid "Edit visibility" -msgstr "Cambia la visibilità" +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Data di nascita" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Gestione del profilo" +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Sesso" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Cambia la copertina del canale" +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Maschio" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Femmina" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pagina web" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Clona questo profilo" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "block" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Elimina questo profilo" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "layout" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Aggiungi oggetti al profilo" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Personali" +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s elemento installato" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relazione" +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Elementi con installazione fallita: %s" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Altro" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Mi piace/Non mi piace" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importa il profilo da un file" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Questa funzionalità è riservata agli iscritti." -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Esporta il profilo in un file" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Sesso" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Richiesta non valida." -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Stato civile" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "il canale" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Preferenze sessuali" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "Oggetto" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Nome del profilo" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Questo è il tuo profilo predefinito." +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Il comando precedente è stato annullato." -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Il tuo nome completo" +#: ../../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/Profiles.php:714 -msgid "Title/Description" -msgstr "Titolo/descrizione" +#: ../../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/Profiles.php:717 -msgid "Street address" -msgstr "Indirizzo (via/piazza)" +#: ../../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/Profiles.php:718 -msgid "Locality/City" -msgstr "Località" +#: ../../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/Profiles.php:719 -msgid "Region/State" -msgstr "Regione/stato" +#: ../../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/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "CAP" +#: ../../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/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/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/Profiles.php:727 -msgid "Since (date)" -msgstr "dal (data)" +#: ../../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/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Raccontaci di te..." +#: ../../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/Profiles.php:732 -msgid "Hometown" -msgstr "Città dove vivo" +#: ../../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/Profiles.php:733 -msgid "Political views" -msgstr "Orientamento politico" +#: ../../Zotlabs/Module/Like.php:537 +msgid "Action completed." +msgstr "Comando completato." -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Orientamento religioso" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Thank you." +msgstr "Grazie." -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Parole chiavi mostrate nell'elenco dei canali" +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Importazione completata" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Per esempio: pesca fotografia programmazione" +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importa i contenuti" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Interessi musicali" +#: ../../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." -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Libri, letteratura" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Hai superato il numero massimo di inviti." -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisione" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film, danza, cultura, intrattenimento" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Unisciti a noi su $Projectname" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Amore" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio è fallita." -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Scuola/educazione" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Contatti e social network" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "I miei altri canali" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Spedisci inviti" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 -msgid "Profile Image" -msgstr "Immagine del profilo" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 -msgid "Edit Profiles" -msgstr "Modifica i tuoi profili" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Il tuo messaggio:" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Il tuo account permette di creare al massimo %d canali." +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Entra nella mia comunità su $Projectname." -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Dovrai fornire questo codice invito:" -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Impossibile importare i dati dal vecchio hub" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "oppure visita" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Clicca su [Aggiungi]" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Nessun canale. Import fallito." +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Le informazioni remote sulla privacy non sono disponibili." -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "L'importazione è terminata con successo." +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Visibile a:" -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Per questa funzionalità devi aver effettuato l'accesso." +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Indirizzo non trovato." -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importa un canale" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "La ricerca dell'indirizzo è fallita." -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Locs.php:66 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." +"Please select another location to become primary before removing the primary" +" location." +msgstr "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria." -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "File da caricare" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronizzazione tra hub" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio hub" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Nessun indirizzo trovato." -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Modifica gli indirizzi del canale" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio hub" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Indirizzo" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "La password per il vecchio hub" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primario" -#: ../../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" -" able to post from either location, but only one can be marked as the " -"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/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Elimina" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Rendi questo hub il mio indirizzo primario" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronizza ora" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione." -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Module/Locs.php:124 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." +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli." -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante." -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub non trovato." -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Il post vuoto è stato ignorato." +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "I contenuti eseguibili non sono permessi su questo canale." +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "I post duplicati sono scartati." +#: ../../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/Item.php:989 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Post non salvato." +#: ../../Zotlabs/Module/Mail.php:143 +msgid "Messages" +msgstr "Messaggi" -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "Impossibile caricare il post dal database." +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Messaggio revocato." -#: ../../Zotlabs/Module/Item.php:1249 -#, 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/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversazione rimossa." -#: ../../Zotlabs/Module/Item.php:1256 -#, 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/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/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "Il canale cercato non è in questa rete" -#: ../../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/Mail.php:242 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album non trovato." +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "A:" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Elimina album" +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Oggetto:" -#: ../../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/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Allega file" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Elimina foto" +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Invia" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Data di scadenza" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "Elimina il messaggio" -#: ../../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/Mail.php:341 +msgid "Delivery report" +msgstr "Rapporto di trasmissione" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Revoca il messaggio" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Carica foto" +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Scegli il nome dell'album" +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Elimina la conversazione" -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o seleziona un album esistente (doppio click)" +#: ../../Zotlabs/Module/Mail.php:363 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Pubblica sulla bacheca" +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Send Reply" +msgstr "Invia la risposta" -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Titolo (facoltativo):" +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Il tuo messaggio per %s (%s):" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descrizione (facoltativa):" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "Non è stato possibile leggere il nome dell'album" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Gestione canali" -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Prima i più recenti" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canale attuale" -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Seleziona l'altro canale a cui vuoi passare." -#: ../../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/Manage.php:168 +msgid "Default Channel" +msgstr "Canale predefinito" -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Modifica album" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Rendi predefinito" -#: ../../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/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nuovi messaggi" -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" -msgstr "Foto non disponibile" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuove richieste di entrare in contatto" -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canale delegato" -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Usa come copertina del canale" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Nessun account valido trovato." -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Foto privata" +#: ../../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/Photos.php:951 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Utente del sito (%s)" -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Rimuovi" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "È stato richiesto di reimpostare password su %s" -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Modifica la foto" +#: ../../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/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Reimposta la password" -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "La password è stata reimpostata come richiesto." -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Inserisci il nome del nuovo album" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "La tua nuova password è" -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" +#: ../../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/Photos.php:1040 -msgid "Caption" -msgstr "Didascalia" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "clicca qui per accedere" -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Aggiungi tag" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "La tua password su %s è cambiata" -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" +#: ../../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/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Indirizzo email" -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Attendere" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reimposta" -#: ../../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/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." -#: ../../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/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nome del menu" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "D'accordo" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Non d'accordo" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titolo del menu" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Astenuti" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Partecipano" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetti i segnalibri" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Non partecipano" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Puoi salvare i segnalibri nei menù" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Forse partecipano" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Salva e procedi" -#: ../../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/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menù" -#: ../../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/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Permetti segnalibri" -#: ../../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/Menu.php:119 +msgid "Delete this menu" +msgstr "Elimina questo menù" -#: ../../Zotlabs/Module/Photos.php:1233 -msgid "Photo Tools" -msgstr "Gestione foto" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "In questa foto:" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifica questo menù" -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Mappa" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menù non trovato." -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modifica menù" -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Chiudi" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi elementi di questo menù" -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Guarda l'album" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nome del menù" -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titolo del menù" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visibile a:" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importazione completata" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importa i contenuti" +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Non trovato." -#: ../../Zotlabs/Module/Import_items.php:120 -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." +#: ../../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/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Hai superato il numero massimo di inviti." +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Umore" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Unisciti a noi su $Projectname" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profili corrispondenti" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." +#: ../../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/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio è fallita." +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "interessi personali:" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Nessun risultato" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Impossibile trovare il gruppo di canali" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Spedisci inviti" +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Canale sconosciuto" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "forum" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Il tuo messaggio:" +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Cerca risultati con:" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Entra nella mia comunità su $Projectname." +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Il gruppo di canali è vuoto" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Dovrai fornire questo codice invito:" +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Gruppo di canali:" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Contatto non valido." -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Non ci sono nuove notifiche di sistema." -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "oppure visita" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notifiche di sistema" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Clicca su [Aggiungi]" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Impossibile creare l'elemento." -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Indirizzo non trovato." +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Non è possibile aggiornare l'elemento del menù." -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "La ricerca dell'indirizzo è fallita." +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Impossibile aggiungere l'elemento al menù." -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria." +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permessi del menu" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronizzazione tra hub" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Nessun indirizzo trovato." +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nome link" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Modifica gli indirizzi del canale" +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Azione del link o del sottomenu" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primario" +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Elimina" +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronizza ora" +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Apri il link in una nuova finestra" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Ordine dell'elenco" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "I numeri più alti andranno in fondo all'elenco" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Salva e termina" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub non trovato." +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Salva e continua" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menu:" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Destinazione link" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Modifica il menù" -#: ../../Zotlabs/Module/Mail.php:70 -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/Mitem.php:179 +msgid "Edit element" +msgstr "Modifica l'elemento" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Messaggi" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Elimina l'elemento" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Messaggio revocato." +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nuovo elemento" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversazione rimossa." +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Modifica il contenitore del menù" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Scade il YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Aggiungi un elemento al menù" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Il canale cercato non è in questa rete" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Elimina questo elemento del menù" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Modifica questo elemento del menù" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "A:" +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "L'elemento del menù non è stato trovato." -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Oggetto:" +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "L'elemento del menù è stato eliminato." -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Allega file" +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "L'elemento del menù non può essere eliminato." -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Invia" +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Modifica l'elemento del menù" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Data di scadenza" +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Testo del link" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Elimina il messaggio" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nome o titolo" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Rapporto di trasmissione" +#: ../../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/Mail.php:334 -msgid "Recall message" -msgstr "Revoca il messaggio" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." +#: ../../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/Mail.php:353 -msgid "Delete Conversation" -msgstr "Elimina la conversazione" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Tipo di canale e privacy" -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." +#: ../../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/Mail.php:359 -msgid "Send Reply" -msgstr "Invia la risposta" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Maggiori informazioni sui ruoli" -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Il tuo messaggio per %s (%s):" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crea un canale" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." +#: ../../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/Manage.php:143 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "oppure importa un canale esistente da un altro server/hub." -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Gestione canali" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canale attuale" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Rifiuta" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Seleziona l'altro canale a cui vuoi passare." +#: ../../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/Manage.php:168 -msgid "Default Channel" -msgstr "Canale predefinito" +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Rendi predefinito" +#: ../../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/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Album non trovato." -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Elimina album" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canale delegato" +#: ../../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/Menu.php:49 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Elimina foto" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nome del menu" +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" +#: ../../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/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titolo del menu" +#: ../../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/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Carica foto" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetti i segnalibri" +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Scegli il nome dell'album" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Puoi salvare i segnalibri nei menù" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "o seleziona un album esistente (doppio click)" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Salva e procedi" +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Pubblica sulla bacheca" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menù" +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Titolo (facoltativo):" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Permetti segnalibri" +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Descrizione (facoltativa):" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Elimina questo menù" +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "Non è stato possibile leggere il nome dell'album" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifica questo menù" +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menù non trovato." +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Guarda la foto" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifica menù" +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Modifica album" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" +#: ../../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/Menu.php:155 -msgid "Menu name" -msgstr "Nome del menù" +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titolo del menù" +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Usa come copertina del canale" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Foto privata" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Non trovato." +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Rimuovi" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Nessun account valido trovato." +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Modifica la foto" -#: ../../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/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Utente del sito (%s)" +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "È stato richiesto di reimpostare password su %s" +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Inserisci il nome del nuovo album" -#: ../../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/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "o seleziona uno esistente (doppio click)" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Reimposta la password" +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Didascalia" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "La password è stata reimpostata come richiesto." +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Aggiungi tag" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "La tua nuova password è" +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" -#: ../../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/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Marca come 'per adulti'" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "clicca qui per accedere" +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." +#: ../../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/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "La tua password su %s è cambiata" +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Attendere" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" +#: ../../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/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/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commento" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Indirizzo email" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reimposta" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../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/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "D'accordo" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Umore" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Non d'accordo" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Astenuti" -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Impossibile trovare il gruppo di canali" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Partecipano" -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Canale sconosciuto" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Non partecipano" -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Forse partecipano" -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Cerca risultati con:" +#: ../../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/Network.php:215 -msgid "Privacy group is empty" -msgstr "Il gruppo di canali è vuoto" +#: ../../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/Network.php:224 -msgid "Privacy group: " -msgstr "Gruppo di canali:" +#: ../../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/Network.php:250 -msgid "Invalid connection." -msgstr "Contatto non valido." +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "Gestione delle foto" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Non ci sono nuove notifiche di sistema." +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "In questa foto:" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notifiche di sistema" +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Mappa" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profili corrispondenti" +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Mi piace" -#: ../../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/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessi personali:" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Chiudi" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Nessun risultato" +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Guarda l'album" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Post e commenti" +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Foto recenti" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo post" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Impossibile creare l'elemento." +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Non è possibile aggiornare l'elemento del menù." +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[oggi]" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Impossibile aggiungere l'elemento al menù." +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "ha creato un evento" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permessi del menu" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Impossibile raggiungere il tuo hub." -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Inviato!" -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nome link" +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta." -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Azione del link o del sottomenu" +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Accesso fallito." -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" +#: ../../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/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" +#: ../../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/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Apri il link in una nuova finestra" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor di configurazione" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Ordine dell'elenco" +#: ../../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/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "I numeri più alti andranno in fondo all'elenco" +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Layout aggiornato." -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Salva e termina" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Salva e continua" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Layout non trovato." -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menu:" +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nome del modulo:" -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Destinazione link" +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Guida al layout" -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Modifica il menù" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Poke" -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Modifica l'elemento" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Manda un poke" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Elimina l'elemento" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Poke/Prod" -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nuovo elemento" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Manda un poke o altro a qualcuno" -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Modifica il contenitore del menù" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Aggiungi un elemento al menù" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi inviare al destinatario" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Elimina questo elemento del menù" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Rendi privato questo post" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Modifica questo elemento del menù" +#: ../../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/Mitem.php:202 -msgid "Menu item not found." -msgstr "L'elemento del menù non è stato trovato." +#: ../../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/Mitem.php:215 -msgid "Menu item deleted." -msgstr "L'elemento del menù è stato eliminato." +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profilo eliminato." -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "L'elemento del menù non può essere eliminato." +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profilo-" -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Modifica l'elemento del menù" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Testo del link" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Le impostazioni del tema sono state aggiornate." +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Il profilo non è disponibile per l'export." -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# account" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Il nome del profilo è obbligatorio." -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# account bloccati" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Stato sentimentale" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# account scaduti" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Partner affettivo" -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# account in scadenza" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# canali" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# primari" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Lavoro/impiego" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# cloni" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religione" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Coda messaggi in uscita" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Orientamento politico" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Il tuo software necessita di un aggiornamento" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Preferenze sessuali" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" -msgstr "Amministrazione" +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Home page" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Riepilogo" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interessi" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Account creati" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profilo aggiornato." -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" +#: ../../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/Admin.php:247 -msgid "Registered channels" -msgstr "Canali creati" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" -msgstr "Plugin attivi" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Guarda questo profilo" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versione" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:959 +msgid "Edit visibility" +msgstr "Cambia la visibilità" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Versione del repository (master)" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Gestione del profilo" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Versione del repository (dev)" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Cambia la copertina del canale" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Impostazioni del sito salvate correttamente." +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 -msgid "Default" -msgstr "Predefinito" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 -msgid "mobile" -msgstr "mobile" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Clona questo profilo" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "sperimentale" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Elimina questo profilo" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "non supportato" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Aggiungi oggetti al profilo" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Sì - con approvazione" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 +msgid "Personal" +msgstr "Personali" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "Non è un server pubblico" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relazione" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "È un servizio a pagamento" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Altro" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "È un servizio gratuito" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importa il profilo da un file" -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Esporta il profilo in un file" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 -msgid "Site" -msgstr "Sito" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Sesso" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Registrazione" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Stato civile" -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" -msgstr "Caricamento file" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Preferenze sessuali" -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" -msgstr "Politiche" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Nome del profilo" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avanzate" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Questo è il tuo profilo predefinito." -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" -msgstr "Nome del sito" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Il tuo nome completo" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" -msgstr "Banner o logo" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Titolo/descrizione" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" -msgstr "Informazioni sull'amministratore" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Indirizzo (via/piazza)" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Località" -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "Lingua di sistema" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Regione/stato" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "Tema di sistema" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "CAP" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" - -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" -msgstr "Tema di sistema per dispositivi mobili" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "Nazione" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" -msgstr "Tema per i dispositivi mobili" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Con chi (se possibile)" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" -msgstr "Permetti di aggiungere i feed come contatti" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso delle risorse di sistema!)" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "dal (data)" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" -msgstr "Dimensione massima immagini" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Raccontaci di te..." -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Città dove vivo" -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" -msgstr "Questo sito permette a nuovi utenti di registrarsi?" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Orientamento politico" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" -msgstr "Solo con invito" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Orientamento religioso" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Parole chiavi mostrate nell'elenco dei canali" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Come descriveresti il tipo di servizio proposto da questo server?" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Per esempio: pesca fotografia programmazione" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" -msgstr "Testo di registrazione" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Interessi musicali" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Libri, letteratura" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisione" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film, danza, cultura, intrattenimento" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" -msgstr "Conserva l'URL della homepage" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Amore" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo X giorni" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "Scuola/educazione" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Contatti e social network" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" -msgstr "Domini fidati e consentiti" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "I miei altri canali" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +msgid "Profile Image" +msgstr "Immagine del profilo" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" -msgstr "Domini email consentiti" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 +#: ../../include/channel.php:937 +msgid "Edit Profiles" +msgstr "Modifica i tuoi profili" -#: ../../Zotlabs/Module/Admin.php:517 +#: ../../Zotlabs/Module/Profile_photo.php:179 msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" +"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/Admin.php:518 -msgid "Not allowed email domains" -msgstr "Domini email non consentiti" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Carica la foto del profilo" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" -msgstr "Verifica l'indirizzo email" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Modifica la visibilità del profilo" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profilo" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" -msgstr "Forza la publicazione del 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/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visibile a" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" -msgstr "Suggerisci contenuti pubblici della rete Hubzilla" +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Hub pubblici" -#: ../../Zotlabs/Module/Admin.php:521 +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "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/Admin.php:522 -msgid "Login on Homepage" -msgstr "Login sulla homepage" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "URL del hub" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Tipo di accesso" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" -msgstr "Abilita la guida contestuale" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Politica di registrazione" -#: ../../Zotlabs/Module/Admin.php:523 -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" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" -msgstr "URL del directory server" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" -msgstr "Directory server predefinito" +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Valutazioni" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" -msgstr "Utente proxy" +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Valuta" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" -msgstr "URL proxy" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Sito web:" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" -msgstr "Timeout rete" +#: ../../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/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Valutazione (visibile a tutti)" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" -msgstr "Recapito ritardato" +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Nessuna valutazione" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" -msgstr "Tentativi di recapito per processo" +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Valutazione:" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Sito web:" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" -msgstr "Intervallo di polling" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." +msgstr "Le impostazioni del tema sono state aggiornate." -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" -msgstr "Carico massimo medio" +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" +msgstr "# account" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" +msgstr "# account bloccati" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" +msgstr "# account scaduti" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" -msgstr "0 per non avere scadenza" +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" +msgstr "# account in scadenza" -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "Off" -msgstr "Off" +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" +msgstr "# canali" -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "On" -msgstr "On" +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" +msgstr "# primari" -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" -msgstr "Rendi non modificabile %s" +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" +msgstr "# cloni" -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" -msgstr "Funzionalità opzionali" +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" +msgstr "Coda messaggi in uscita" -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" -msgstr "Server non trovato" +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" +msgstr "Il tuo software ha bisogno di essere aggiornato" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 +#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 +#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 +#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 +#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 +#: ../../Zotlabs/Module/Admin.php:1731 +msgid "Administration" +msgstr "Amministrazione" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" -msgstr "per il canale" +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" +msgstr "Riepilogo" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" -msgstr "sul server" +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" +msgstr "Account creati" -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" -msgstr "Server" +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +msgid "Pending registrations" +msgstr "Registrazioni da approvare" -#: ../../Zotlabs/Module/Admin.php:746 -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." +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" +msgstr "Canali creati" -#: ../../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:" +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +msgid "Active plugins" +msgstr "Plugin attivi" -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" +msgstr "Versione" -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" +msgstr "Versione del repository (master)" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 -msgid "Security" -msgstr "Sicurezza" +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" +msgstr "Versione del repository (dev)" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" -msgstr "Blocca pagine pubbliche" +#: ../../Zotlabs/Module/Admin.php:373 +msgid "Site settings updated." +msgstr "Impostazioni del sito salvate correttamente." -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +msgid "Default" +msgstr "Predefinito" -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Imposta il \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +msgid "mobile" +msgstr "mobile" -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Imposta il \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Admin.php:412 +msgid "experimental" +msgstr "sperimentale" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" -msgstr "Permetti la comunicazione solo da questi siti" +#: ../../Zotlabs/Module/Admin.php:414 +msgid "unsupported" +msgstr "non supportato" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" +#: ../../Zotlabs/Module/Admin.php:460 +msgid "Yes - with approval" +msgstr "Sì - con approvazione" -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" -msgstr "Blocca la comunicazione da questi siti" +#: ../../Zotlabs/Module/Admin.php:466 +msgid "My site is not a public server" +msgstr "Non è un server pubblico" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" -msgstr "Permetti la comunicazione solo da questi canali" +#: ../../Zotlabs/Module/Admin.php:467 +msgid "My site has paid access only" +msgstr "È un servizio a pagamento" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" +#: ../../Zotlabs/Module/Admin.php:468 +msgid "My site has free access only" +msgstr "È un servizio gratuito" -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" -msgstr "Blocca la comunicazione da questi canali" +#: ../../Zotlabs/Module/Admin.php:469 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" -#: ../../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)." +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +msgid "Site" +msgstr "Sito" -#: ../../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" +#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 +msgid "Registration" +msgstr "Registrazione" -#: ../../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." +#: ../../Zotlabs/Module/Admin.php:494 +msgid "File upload" +msgstr "Caricamento file" -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" -msgstr "Blocca i contenuti incorporati HTML da questi domini" +#: ../../Zotlabs/Module/Admin.php:495 +msgid "Policies" +msgstr "Politiche" -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato marcato come eseguito." +#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avanzate" -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." +#: ../../Zotlabs/Module/Admin.php:500 +msgid "Site name" +msgstr "Nome del sito" -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è terminato correttamente." +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Banner/Logo" +msgstr "Banner o logo" -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." +#: ../../Zotlabs/Module/Admin.php:502 +msgid "Administrator Information" +msgstr "Informazioni sull'amministratore" -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." -msgstr "Impossibile trovare la funzione di aggiornamento %s" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." +#: ../../Zotlabs/Module/Admin.php:503 +msgid "System language" +msgstr "Lingua di sistema" -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti." +#: ../../Zotlabs/Module/Admin.php:504 +msgid "System theme" +msgstr "Tema di sistema" -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" -msgstr "Marca come eseguito (se applicato manualmente)." +#: ../../Zotlabs/Module/Admin.php:504 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" -msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Mobile system theme" +msgstr "Tema di sistema per dispositivi mobili" -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" -msgstr "Statistiche della coda" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Theme for mobile devices" +msgstr "Tema per i dispositivi mobili" -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" -msgstr "Totale" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "Allow Feeds as Connections" +msgstr "Permetti di aggiungere i feed come contatti" -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" -msgstr "Priorità" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso delle risorse di sistema!)" -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" -msgstr "URL di destinazione" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "Maximum image size" +msgstr "Dimensione massima immagini" -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" -msgstr "Questo hub è definitivamente offline" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" -msgstr "Svuota la coda per questo hub" +#: ../../Zotlabs/Module/Admin.php:509 +msgid "Does this site allow new member registration?" +msgstr "Questo sito permette a nuovi utenti di registrarsi?" -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" -msgstr "Ultimo scambio dati" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Invitation only" +msgstr "Solo con invito" -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "Modificato il blocco su %s account" -msgstr[1] "Modificato il blocco verso %s" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s account eliminato" -msgstr[1] "%s account eliminati" +#: ../../Zotlabs/Module/Admin.php:511 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Come descriveresti il tipo di servizio proposto da questo server?" -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "Account non trovato" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Register text" +msgstr "Testo di registrazione" -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "Account '%s' eliminato" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "Aggiunto un blocco verso '%s'" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Rimosso il blocco verso '%s'" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 -msgid "Accounts" -msgstr "Account" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Preserve site homepage URL" +msgstr "Conserva l'URL della homepage" -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "seleziona tutti" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" -msgstr "Registrazioni in attesa di conferma" +#: ../../Zotlabs/Module/Admin.php:515 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo X giorni" -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "Data richiesta" +#: ../../Zotlabs/Module/Admin.php:515 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "Nessuna registrazione." +#: ../../Zotlabs/Module/Admin.php:516 +msgid "Allowed friend domains" +msgstr "Domini fidati e consentiti" -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "Nega" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" -msgstr "Tutti i canali" +#: ../../Zotlabs/Module/Admin.php:517 +msgid "Allowed email domains" +msgstr "Domini email consentiti" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" -msgstr "Data registrazione" +#: ../../Zotlabs/Module/Admin.php:517 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" -msgstr "Ultimo accesso" +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Not allowed email domains" +msgstr "Domini email non consentiti" -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" -msgstr "Con scadenza" +#: ../../Zotlabs/Module/Admin.php:518 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" -msgstr "Classe dell'account" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "Verify Email Addresses" +msgstr "Verifica l'indirizzo email" -#: ../../Zotlabs/Module/Admin.php:1054 +#: ../../Zotlabs/Module/Admin.php:519 msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." -#: ../../Zotlabs/Module/Admin.php:1055 +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Force publish" +msgstr "Forza la publicazione del profilo" + +#: ../../Zotlabs/Module/Admin.php:520 msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "Censura modificata per %s canale" -msgstr[1] "Censura modificata per %s canali" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Import Public Streams" +msgstr "Suggerisci contenuti pubblici della rete Hubzilla" -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s canale permette/non permette codice nei contenuti" -msgstr[1] "%s canali permettono/non permettono codice nei contenuti" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canale è stato rimosso" -msgstr[1] "%s canali sono stati rimossi" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Login on Homepage" +msgstr "Login sulla homepage" -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "Canale non trovato" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Il canale '%s' è stato rimosso" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Enable context help" +msgstr "Abilita la guida contestuale" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' censored" -msgstr "Applicata una censura al canale '%s'" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Quando è premuto il bottone della guida mostra quella della pagina corrente" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Rimossa la censura dal canale '%s'" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Directory Server URL" +msgstr "URL del directory server" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Il canale '%s' permette codice nei contenuti" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Default directory server" +msgstr "Directory server predefinito" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Il canale '%s' non permette codice nei contenuti" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Proxy user" +msgstr "Utente proxy" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 -msgid "Channels" -msgstr "Canali" +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Proxy URL" +msgstr "URL proxy" -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" -msgstr "Applica censura" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Network timeout" +msgstr "Timeout rete" -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" -msgstr "Rimuovi censura" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" -msgstr "Permetti codice" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Delivery interval" +msgstr "Recapito ritardato" -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" -msgstr "Non permettere codice" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." + +#: ../../Zotlabs/Module/Admin.php:531 +msgid "Deliveries per process" +msgstr "Tentativi di recapito per processo" + +#: ../../Zotlabs/Module/Admin.php:531 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" + +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Poll interval" +msgstr "Intervallo di polling" + +#: ../../Zotlabs/Module/Admin.php:532 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." + +#: ../../Zotlabs/Module/Admin.php:533 +msgid "Maximum Load Average" +msgstr "Carico massimo medio" + +#: ../../Zotlabs/Module/Admin.php:533 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." + +#: ../../Zotlabs/Module/Admin.php:534 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" + +#: ../../Zotlabs/Module/Admin.php:534 +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:722 +msgid "Off" +msgstr "Off" + +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "On" +msgstr "On" + +#: ../../Zotlabs/Module/Admin.php:678 +#, php-format +msgid "Lock feature %s" +msgstr "Rendi non modificabile %s" + +#: ../../Zotlabs/Module/Admin.php:686 +msgid "Manage Additional Features" +msgstr "Funzionalità opzionali" + +#: ../../Zotlabs/Module/Admin.php:703 +msgid "No server found" +msgstr "Server non trovato" + +#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +msgid "ID" +msgstr "ID" + +#: ../../Zotlabs/Module/Admin.php:710 +msgid "for channel" +msgstr "per il canale" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 -msgid "Channel" -msgstr "Canale" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "on server" +msgstr "sul server" -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Admin.php:712 +msgid "Server" +msgstr "Server" -#: ../../Zotlabs/Module/Admin.php:1226 +#: ../../Zotlabs/Module/Admin.php:746 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1227 +#: ../../Zotlabs/Module/Admin.php:749 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai siti seguenti:" -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s non attivo." +#: ../../Zotlabs/Module/Admin.php:750 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" +msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s attivo." +#: ../../Zotlabs/Module/Admin.php:751 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non venga esplicitamente bloccato." -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" -msgstr "Disattiva" +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +msgid "Security" +msgstr "Sicurezza" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" -msgstr "Attiva" +#: ../../Zotlabs/Module/Admin.php:758 +msgid "Block public" +msgstr "Blocca pagine pubbliche" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 -msgid "Plugins" -msgstr "Plugin" +#: ../../Zotlabs/Module/Admin.php:758 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" -msgstr "Attiva/disattiva" +#: ../../Zotlabs/Module/Admin.php:759 +msgid "Set \"Transport Security\" HTTP header" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 -msgid "Settings" -msgstr "Impostazioni" +#: ../../Zotlabs/Module/Admin.php:760 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " -msgstr "Autore:" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "Allow communications only from these sites" +msgstr "Permetti la comunicazione solo da questi siti" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " -msgstr "Gestore:" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " -msgstr "Minima versione hubzilla" +#: ../../Zotlabs/Module/Admin.php:762 +msgid "Block communications from these sites" +msgstr "Blocca la comunicazione da questi siti" -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " -msgstr "Massima versione hubzilla" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "Allow communications only from these channels" +msgstr "Permetti la comunicazione solo da questi canali" -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " -msgstr "Minima versione PHP:" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " -msgstr "Necessita di:" +#: ../../Zotlabs/Module/Admin.php:764 +msgid "Block communications from these channels" +msgstr "Blocca la comunicazione da questi canali" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" -msgstr "Disabilitato - incompatibilità di versione" +#: ../../Zotlabs/Module/Admin.php:765 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "" -#: ../../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." +#: ../../Zotlabs/Module/Admin.php:766 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" -msgstr "URL git del repository del plugin" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "One site per line. By default embedded content is filtered." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" -msgstr "Nome repository personalizzato" +#: ../../Zotlabs/Module/Admin.php:767 +msgid "Block embedded HTML from these domains" +msgstr "Blocca i contenuti incorporati HTML da questi domini" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" -msgstr "(facoltativo)" +#: ../../Zotlabs/Module/Admin.php:785 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato marcato come eseguito." -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" -msgstr "Scarica il repository del plugin" +#: ../../Zotlabs/Module/Admin.php:795 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" -msgstr "Installa un nuovo repository" +#: ../../Zotlabs/Module/Admin.php:798 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è terminato correttamente." -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Installa" +#: ../../Zotlabs/Module/Admin.php:802 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" -msgstr "Gestisci i repository" +#: ../../Zotlabs/Module/Admin.php:805 +#, php-format +msgid "Update function %s could not be found." +msgstr "Impossibile trovare la funzione di aggiornamento %s" -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" -msgstr "Repository per i plugin installati" +#: ../../Zotlabs/Module/Admin.php:821 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" -msgstr "Installa un nuovo repository per i plugin" +#: ../../Zotlabs/Module/Admin.php:825 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti." -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "Aggiorna" +#: ../../Zotlabs/Module/Admin.php:827 +msgid "Mark success (if update was manually applied)" +msgstr "Marca come eseguito (se applicato manualmente)." -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" -msgstr "Cambia branch" +#: ../../Zotlabs/Module/Admin.php:828 +msgid "Attempt to execute this update step automatically" +msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." -msgstr "Nessun tema trovato." +#: ../../Zotlabs/Module/Admin.php:859 +msgid "Queue Statistics" +msgstr "Statistiche della coda" -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" -msgstr "Istantanea dello schermo" +#: ../../Zotlabs/Module/Admin.php:860 +msgid "Total Entries" +msgstr "Totale" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 -msgid "Themes" -msgstr "Temi" +#: ../../Zotlabs/Module/Admin.php:861 +msgid "Priority" +msgstr "Priorità" -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" -msgstr "[Sperimentale]" +#: ../../Zotlabs/Module/Admin.php:862 +msgid "Destination URL" +msgstr "URL di destinazione" -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" -msgstr "[Non supportato]" +#: ../../Zotlabs/Module/Admin.php:863 +msgid "Mark hub permanently offline" +msgstr "Questo hub è definitivamente offline" -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." -msgstr "Impostazioni di log aggiornate." +#: ../../Zotlabs/Module/Admin.php:864 +msgid "Empty queue for this hub" +msgstr "Svuota la coda per questo hub" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 -msgid "Logs" -msgstr "Log" +#: ../../Zotlabs/Module/Admin.php:865 +msgid "Last known contact" +msgstr "Ultimo scambio dati" -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" -msgstr "Pulisci" +#: ../../Zotlabs/Module/Admin.php:901 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "Modificato il blocco su %s account" +msgstr[1] "Modificato il blocco verso %s" -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" -msgstr "Debugging" +#: ../../Zotlabs/Module/Admin.php:908 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s account eliminato" +msgstr[1] "%s account eliminati" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" -msgstr "File di log" +#: ../../Zotlabs/Module/Admin.php:944 +msgid "Account not found" +msgstr "Account non trovato" -#: ../../Zotlabs/Module/Admin.php:1741 -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." +#: ../../Zotlabs/Module/Admin.php:955 +#, php-format +msgid "Account '%s' deleted" +msgstr "Account '%s' eliminato" -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "Livello di log" +#: ../../Zotlabs/Module/Admin.php:963 +#, php-format +msgid "Account '%s' blocked" +msgstr "Aggiunto un blocco verso '%s'" -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "Nuovo campo del profilo" +#: ../../Zotlabs/Module/Admin.php:971 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Rimosso il blocco verso '%s'" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "Nome breve del campo" +#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 +#: ../../include/widgets.php:1383 +msgid "Accounts" +msgstr "Account" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "Nome di sistema del campo" +#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +msgid "select all" +msgstr "seleziona tutti" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "Tipo di dati" +#: ../../Zotlabs/Module/Admin.php:1034 +msgid "Registrations waiting for confirm" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "Nome del campo" +#: ../../Zotlabs/Module/Admin.php:1035 +msgid "Request date" +msgstr "Data richiesta" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" -msgstr "Etichetta da mostrare sulla pagina del profilo" +#: ../../Zotlabs/Module/Admin.php:1036 +msgid "No registrations." +msgstr "Nessuna registrazione." -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" -msgstr "Testo di aiuto" +#: ../../Zotlabs/Module/Admin.php:1038 +msgid "Deny" +msgstr "Nega" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" -msgstr "Informazioni aggiuntive (facoltative)" +#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +msgid "All Channels" +msgstr "Tutti i canali" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" -msgstr "Impossibile trovare la definizione del campo" +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "Register date" +msgstr "Data registrazione" -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" -msgstr "Modifica campo del profilo" +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Last login" +msgstr "Ultimo accesso" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 -msgid "Profile Fields" -msgstr "Campi del profilo" +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Expires" +msgstr "Con scadenza" -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" -msgstr "Campi base del profilo" +#: ../../Zotlabs/Module/Admin.php:1052 +msgid "Service Class" +msgstr "Classe dell'account" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" -msgstr "Campi avanzati del profilo" +#: ../../Zotlabs/Module/Admin.php:1054 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" -msgstr "(In aggiunta ai campi di base)" +#: ../../Zotlabs/Module/Admin.php:1055 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" -msgstr "Tutti i campi disponibili" +#: ../../Zotlabs/Module/Admin.php:1091 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "Censura modificata per %s canale" +msgstr[1] "Censura modificata per %s canali" -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" -msgstr "Campi personalizzati" +#: ../../Zotlabs/Module/Admin.php:1100 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s canale permette/non permette codice nei contenuti" +msgstr[1] "%s canali permettono/non permettono codice nei contenuti" -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" -msgstr "Aggiungi campo personalizzato" +#: ../../Zotlabs/Module/Admin.php:1106 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canale è stato rimosso" +msgstr[1] "%s canali sono stati rimossi" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nome o titolo" +#: ../../Zotlabs/Module/Admin.php:1126 +msgid "Channel not found" +msgstr "Canale non trovato" -#: ../../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/Admin.php:1136 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Il canale '%s' è stato rimosso" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' censored" +msgstr "Applicata una censura al canale '%s'" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/Admin.php:1148 #, 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" +msgid "Channel '%s' uncensored" +msgstr "Rimossa la censura dal canale '%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/Admin.php:1159 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Il canale '%s' permette codice nei contenuti" -#: ../../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/Admin.php:1159 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Il canale '%s' non permette codice nei contenuti" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +msgid "Channels" +msgstr "Canali" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crea un canale" +#: ../../Zotlabs/Module/Admin.php:1214 +msgid "Censor" +msgstr "Applica censura" -#: ../../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/Admin.php:1215 +msgid "Uncensor" +msgstr "Rimuovi censura" -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "oppure importa un canale esistente da un altro server/hub." +#: ../../Zotlabs/Module/Admin.php:1216 +msgid "Allow Code" +msgstr "Permetti codice" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" +#: ../../Zotlabs/Module/Admin.php:1217 +msgid "Disallow Code" +msgstr "Non permettere codice" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +msgid "Channel" +msgstr "Canale" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../Zotlabs/Module/Admin.php:1222 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[oggi]" +#: ../../Zotlabs/Module/Admin.php:1226 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "ha creato un evento" +#: ../../Zotlabs/Module/Admin.php:1227 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." +#: ../../Zotlabs/Module/Admin.php:1284 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s non attivo." -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Rifiuta" +#: ../../Zotlabs/Module/Admin.php:1288 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s attivo." -#: ../../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/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +msgid "Disable" +msgstr "Disattiva" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Poke" +#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +msgid "Enable" +msgstr "Attiva" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Manda un poke" +#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 +#: ../../include/widgets.php:1387 +msgid "Plugins" +msgstr "Plugin" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Poke/Prod" +#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +msgid "Toggle" +msgstr "Attiva/disattiva" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Manda un poke o altro a qualcuno" +#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 +msgid "Settings" +msgstr "Impostazioni" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" +#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +msgid "Author: " +msgstr "Autore:" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" +#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +msgid "Maintainer: " +msgstr "Gestore:" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Rendi privato questo post" +#: ../../Zotlabs/Module/Admin.php:1341 +msgid "Minimum project version: " +msgstr "Minima versione hubzilla" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Impossibile raggiungere il tuo hub." +#: ../../Zotlabs/Module/Admin.php:1342 +msgid "Maximum project version: " +msgstr "Massima versione hubzilla" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Inviato!" +#: ../../Zotlabs/Module/Admin.php:1343 +msgid "Minimum PHP version: " +msgstr "Minima versione PHP:" -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta." +#: ../../Zotlabs/Module/Admin.php:1344 +msgid "Requires: " +msgstr "Necessita di:" -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Accesso fallito." +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +msgid "Disabled - version incompatibility" +msgstr "Disabilitato - incompatibilità di versione" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: ../../Zotlabs/Module/Admin.php:1394 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Modifica la visibilità del profilo" +#: ../../Zotlabs/Module/Admin.php:1395 +msgid "Plugin repo git URL" +msgstr "URL git del repository del plugin" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profilo" +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "Custom repo name" +msgstr "Nome repository personalizzato" -#: ../../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/Admin.php:1396 +msgid "(optional)" +msgstr "(facoltativo)" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visibile a" +#: ../../Zotlabs/Module/Admin.php:1397 +msgid "Download Plugin Repo" +msgstr "Scarica il repository del plugin" -#: ../../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/Admin.php:1404 +msgid "Install new repo" +msgstr "Installa un nuovo repository" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor di configurazione" +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +msgid "Install" +msgstr "Installa" -#: ../../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/Admin.php:1427 +msgid "Manage Repos" +msgstr "Gestisci i repsitory" -#: ../../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/Admin.php:1428 +msgid "Installed Plugin Repositories" +msgstr "Repository per i plugin installati" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versione %s" +#: ../../Zotlabs/Module/Admin.php:1429 +msgid "Install a New Plugin Repository" +msgstr "Installa un nuovo repository per i plugin" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "App e componenti installati:" +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +msgid "Update" +msgstr "Aggiorna" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Nessuna app o componente installato" +#: ../../Zotlabs/Module/Admin.php:1436 +msgid "Switch branch" +msgstr "Cambia branch" -#: ../../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/Admin.php:1550 +msgid "No themes found." +msgstr "Nessun tema trovato." -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Tag: " +#: ../../Zotlabs/Module/Admin.php:1606 +msgid "Screenshot" +msgstr "Istantanea dello schermo" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Ultima acquisizione:" +#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 +#: ../../include/widgets.php:1388 +msgid "Themes" +msgstr "Temi" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Carico medio attuale:" +#: ../../Zotlabs/Module/Admin.php:1652 +msgid "[Experimental]" +msgstr "[Sperimentale]" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "In esecuzione sull'indirizzo web" +#: ../../Zotlabs/Module/Admin.php:1653 +msgid "[Unsupported]" +msgstr "[Non supportato]" -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Visita hubzilla.org per maggiori informazioni su $Projectname." +#: ../../Zotlabs/Module/Admin.php:1677 +msgid "Log settings updated." +msgstr "Impostazioni di log aggiornate." -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Per segnalare bug e problemi: visita" +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 +msgid "Logs" +msgstr "Log" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problematiche note su $projectname" +#: ../../Zotlabs/Module/Admin.php:1734 +msgid "Clear" +msgstr "Pulisci" -#: ../../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/Admin.php:1740 +msgid "Debugging" +msgstr "Debugging" -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Amministratori del sito" +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "Log file" +msgstr "File di log" -#: ../../Zotlabs/Module/Rmagic.php:44 +#: ../../Zotlabs/Module/Admin.php:1741 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." +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Accedi tramite il tuo hub" +#: ../../Zotlabs/Module/Admin.php:1742 +msgid "Log level" +msgstr "Livello di log" -#: ../../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/Admin.php:2028 +msgid "New Profile Field" +msgstr "Nuovo campo del profilo" -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Accedi" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "Field nickname" +msgstr "Nome breve del campo" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Hub pubblici" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "System name of field" +msgstr "Nome di sistema del campo" -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "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/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +msgid "Input type" +msgstr "Tipo di dati" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "URL del hub" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Field Name" +msgstr "Nome del campo" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipo di accesso" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Label on profile pages" +msgstr "Etichetta da mostrare sulla pagina del profilo" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Politica di registrazione" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Help text" +msgstr "Testo di aiuto" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistiche" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Additional info (optional)" +msgstr "Informazioni aggiuntive (facoltative)" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Admin.php:2042 +msgid "Field definition not found" +msgstr "Impossibile trovare la definizione del campo" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Admin.php:2048 +msgid "Edit Profile Field" +msgstr "Modifica campo del profilo" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Valuta" +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +msgid "Profile Fields" +msgstr "Campi del profilo" -#: ../../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/Admin.php:2107 +msgid "Basic Profile Fields" +msgstr "Campi base del profilo" -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "Advanced Profile Fields" +msgstr "Campi avanzati 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/Admin.php:2108 +msgid "(In addition to basic fields)" +msgstr "(In aggiunta ai campi di base)" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Block" +#: ../../Zotlabs/Module/Admin.php:2110 +msgid "All available fields" +msgstr "Tutti i campi disponibili" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titolo del block" +#: ../../Zotlabs/Module/Admin.php:2111 +msgid "Custom Fields" +msgstr "Campi personalizzati" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Sito web:" +#: ../../Zotlabs/Module/Admin.php:2115 +msgid "Create Custom Field" +msgstr "Aggiungi campo personalizzato" -#: ../../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 %2$s" -msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2$s " +#: ../../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 " -"%2$s" -msgstr "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2$s" +#: ../../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 %2$s 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 %2$s 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 -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 dropbox 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 dropbox 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" +msgstr "Indirizzo email:" -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "Con scadenza (aaaa-mm-gg)" +#: ../../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: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 - extremely permissive (should be used with caution)" msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" -#: ../../Zotlabs/Module/Settings.php:1152 +#: ../../Zotlabs/Module/Settings.php:1057 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" -#: ../../Zotlabs/Module/Settings.php:1153 +#: ../../Zotlabs/Module/Settings.php:1058 msgid "Private - default private, never open or public" msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" -#: ../../Zotlabs/Module/Settings.php:1154 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "Blocked - default blocked to/from everybody" msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" -#: ../../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 interesting profile change" msgstr "faccio un cambiamento interessante 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 Settings > " "Additional features) to adjust!" msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)" -#: ../../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 "

What next

" msgstr "

I prossimi passi

" -#: ../../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 hubzilla.org to learn more " +"about $Projectname." +msgstr "Visita hubzilla.org 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,1016 +6082,687 @@ 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" #: ../../Zotlabs/Module/Tagger.php:100 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Tag rimosso" - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" - -#: ../../Zotlabs/Module/Tagrm.php:125 -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/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Azioni" - -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Link alla pagina" - -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Titolo della pagina" - -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "Non trovato" - -#: ../../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/Wiki.php:93 -msgid "Sandbox" -msgstr "Sandbox" - -#: ../../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/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Confronto tra revisioni" - -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Ripristina" - -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Nome della tua nuova pagina wiki:" - -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Nome della tua nuova pagina:" - -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Nuovo nome:" - -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Inserisci un'immagine dall'album foto" - -#: ../../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/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "OK" - -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "Scegli le immagini da inserire" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Scegli un album" - -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Scegli un altro album..." - -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "Errore nell'ottenere l'elenco degli album" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "Errore nell'ottenere il link alla foto" - -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Errore nell'ottenere l'album" - -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Nessun contatto." - -#: ../../Zotlabs/Module/Viewconnections.php:78 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" -msgstr "Elenco contatti" - -#: ../../Zotlabs/Module/Viewsrc.php:44 -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/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/Api.php:72 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." - -#: ../../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/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Ricerca canale" - -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Cerca un canale (o un webbie) che inizia per:" - -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "Chat senza nome" - -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "Il nome della chat è duplicato" - -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "Il nome della chat non è valido." - -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "Chat non trovata." - -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "La chat è al completo" - -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 -msgid "$Projectname Notification" -msgstr "Notifica $Projectname" - -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 -msgid "$projectname" -msgstr "$projectname" - -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 -msgid "Thank You," -msgstr "Grazie," - -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 -#, php-format -msgid "%s Administrator" -msgstr "L'amministratore di %s" - -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla] Nuovo messaggio su %s" - -#: ../../Zotlabs/Lib/Enotify.php:106 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." - -#: ../../Zotlabs/Lib/Enotify.php:107 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s ti ha mandato %2$s." +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" -msgstr "un messaggio privato" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Tag rimosso" -#: ../../Zotlabs/Lib/Enotify.php:108 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" -#: ../../Zotlabs/Lib/Enotify.php:164 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " -#: ../../Zotlabs/Lib/Enotify.php:172 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "L'oggetto è stato aggiornato" -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Impossibile memorizzare l'oggetto." -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla] Nuovo commento di %2$s alla conversazione #%1$d" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "L'Oggetto è stato aggiunto" -#: ../../Zotlabs/Lib/Enotify.php:193 +#: ../../Zotlabs/Module/Thing.php:196 #, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Visita %s per leggere o commentare la conversazione." +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostra l'oggetto" -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla] %s ha scritto sulla tua bacheca" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "non trovato." -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Modifica l'oggetto" -#: ../../Zotlabs/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Scegli un profilo" -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla] %s ti ha taggato" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Pubblica un'attività" -#: ../../Zotlabs/Lib/Enotify.php:231 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s ti ha taggato su %3$s" +#: ../../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/Lib/Enotify.php:232 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Nome dell'oggetto" -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla] %1$s ti ha mandato un poke" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "Indirizzo web dell'oggetto (facoltativo)" -#: ../../Zotlabs/Lib/Enotify.php:245 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" +#: ../../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/Lib/Enotify.php:246 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Aggiungi l'oggetto al tuo profilo" -#: ../../Zotlabs/Lib/Enotify.php:262 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla] %s ha taggato il tuo post" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Esporta il canale" -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s ha taggato il tuo post su %3$s" +#: ../../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/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo post[/zrl]" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Esporta i contenuti" -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla] Hai una richiesta di amicizia" +#: ../../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/Lib/Enotify.php:277 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Esporta i tuoi post a partire dall'anno scelto." -#: ../../Zotlabs/Lib/Enotify.php:278 +#: ../../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/Uexport.php:63 #, php-format msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2$s " -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#: ../../Zotlabs/Module/Uexport.php:64 #, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo su %s" +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2$s" -#: ../../Zotlabs/Lib/Enotify.php:284 +#: ../../Zotlabs/Module/Uexport.php:65 #, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Questi contenuti potranno essere importati o ripristinati visitando %2$s 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/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla] Ti è stato suggerito un amico" +#: ../../Zotlabs/Module/Viewconnections.php:62 +msgid "No connections." +msgstr "Nessun contatto." -#: ../../Zotlabs/Lib/Enotify.php:292 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" -#: ../../Zotlabs/Lib/Enotify.php:293 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." +#: ../../Zotlabs/Module/Viewconnections.php:104 +msgid "View Connections" +msgstr "Elenco contatti" -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "Nome:" +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Sorgente" -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "Foto:" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Pagine web" -#: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Azioni" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla]" +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "Ha creato un nuovo post" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Titolo della pagina" -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" -msgstr "ha commentato il post di %s" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Ricerca canale" -#: ../../Zotlabs/Lib/Apps.php:205 +#: ../../Zotlabs/Module/Xchan.php:13 +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:206 +#: ../../Zotlabs/Lib/Apps.php:205 msgid "Bug Report" msgstr "Bug Report" -#: ../../Zotlabs/Lib/Apps.php:207 +#: ../../Zotlabs/Lib/Apps.php:206 msgid "View Bookmarks" msgstr "Vedi i segnalibri" -#: ../../Zotlabs/Lib/Apps.php:208 +#: ../../Zotlabs/Lib/Apps.php:207 msgid "My Chatrooms" msgstr "Le mie aree chat" -#: ../../Zotlabs/Lib/Apps.php:210 +#: ../../Zotlabs/Lib/Apps.php:209 msgid "Firefox Share" -msgstr "Firefox Share" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:211 +#: ../../Zotlabs/Lib/Apps.php:210 msgid "Remote Diagnostics" -msgstr "Diagnostica remota" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 msgid "Suggest Channels" msgstr "Suggerisci canali" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 msgid "Login" msgstr "Accedi" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 msgid "Grid" msgstr "Rete" -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 msgid "Channel Home" msgstr "Bacheca del canale" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 +#: ../../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:224 ../../include/nav.php:169 +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 msgid "Directory" msgstr "Elenchi pubblici dei canali" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 msgid "Mail" msgstr "Messaggi" -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 msgid "Chat" msgstr "Chat" -#: ../../Zotlabs/Lib/Apps.php:231 +#: ../../Zotlabs/Lib/Apps.php:229 msgid "Probe" msgstr "Diagnostica" -#: ../../Zotlabs/Lib/Apps.php:232 +#: ../../Zotlabs/Lib/Apps.php:230 msgid "Suggest" msgstr "Suggerisci" -#: ../../Zotlabs/Lib/Apps.php:233 +#: ../../Zotlabs/Lib/Apps.php:231 msgid "Random Channel" msgstr "Canale casuale" -#: ../../Zotlabs/Lib/Apps.php:234 +#: ../../Zotlabs/Lib/Apps.php:232 msgid "Invite" msgstr "Invita" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 msgid "Features" msgstr "Funzionalità" -#: ../../Zotlabs/Lib/Apps.php:237 +#: ../../Zotlabs/Lib/Apps.php:235 msgid "Post" msgstr "Post" -#: ../../Zotlabs/Lib/Apps.php:339 +#: ../../Zotlabs/Lib/Apps.php:335 msgid "Purchase" msgstr "Acquista" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Messaggio privato" - -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "Scegli" - -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "Salva nella cartella" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Parteciperò" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "Non parteciperò" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Forse parteciperò" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Sono d'accordo" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "Non sono d'accordo" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Mi astengo" - -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Aggiungi ai preferiti" - -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Rimuovi dai preferiti" - -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Attiva/disattiva preferito" - -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "preferito" - -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Messaggio con firma verificata" +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" +msgstr "Chat senza nome" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Massaggio con firma non corretta" +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" +msgstr "Il nome della chat è duplicato" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Aggiungi un tag" +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." +msgstr "Il nome della chat non è valido." -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 -msgid "like" -msgstr "mi piace" +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." +msgstr "Chat non trovata." -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "non mi piace" +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" +msgstr "La chat è al completo" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "Share This" -msgstr "Condividi" +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +msgid "$Projectname Notification" +msgstr "Notifica $Projectname" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "share" -msgstr "condividi" +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +msgid "$projectname" +msgstr "$projectname" -#: ../../Zotlabs/Lib/ThreadItem.php:275 -msgid "Delivery Report" -msgstr "Rapporto di trasmissione" +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +msgid "Thank You," +msgstr "Grazie," -#: ../../Zotlabs/Lib/ThreadItem.php:293 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" +msgid "%s Administrator" +msgstr "L'amministratore di %s" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#: ../../Zotlabs/Lib/Enotify.php:100 #, php-format -msgid "View %s's profile - %s" -msgstr "Guarda il profilo di %s - %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:326 -msgid "to" -msgstr "a" - -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "via" -msgstr "via" - -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca:" +msgid "%s " +msgstr "%s " -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/Enotify.php:104 #, php-format -msgid "from %s" -msgstr "da %s" +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla] Nuovo messaggio su %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/Enotify.php:106 #, php-format -msgid "last edited: %s" -msgstr "ultima modifica: %s" +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/Enotify.php:107 #, php-format -msgid "Expires: %s" -msgstr "Scadenza: %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:370 -msgid "Save Bookmarks" -msgstr "Salva segnalibro" - -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Add to Calendar" -msgstr "Aggiungi al calendario" +msgid "%1$s sent you %2$s." +msgstr "%1$s ti ha mandato %2$s." -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Mark all seen" -msgstr "Marca tutto come letto" +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" +msgstr "un messaggio privato" -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 +#: ../../Zotlabs/Lib/Enotify.php:108 #, php-format -msgid "%s show all" -msgstr "%s mostra tutto" - -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 -msgid "Bold" -msgstr "Grassetto" - -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 -msgid "Italic" -msgstr "Corsivo" - -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 -msgid "Underline" -msgstr "Sottolineato" - -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 -msgid "Quote" -msgstr "Citazione" - -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 -msgid "Code" -msgstr "Codice" - -#: ../../Zotlabs/Lib/ThreadItem.php:716 -msgid "Image" -msgstr "Immagine" - -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Insert Link" -msgstr "Collegamento" - -#: ../../Zotlabs/Lib/ThreadItem.php:718 -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" - -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Solo io" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Pubblico" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Tutti sulla rete $Projectname" +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." -#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#: ../../Zotlabs/Lib/Enotify.php:164 #, php-format -msgid "Any account on %s" -msgstr "Tutti gli account su %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Chiunque tra i miei contatti" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Solo chi riceve il mio permesso" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Chiunque sia autenticato (inclusi visitatori di altre reti)" - -#: ../../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" - -#: ../../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" +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]" -#: ../../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" +#: ../../Zotlabs/Lib/Enotify.php:172 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]" -#: ../../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" +#: ../../Zotlabs/Lib/Enotify.php:181 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -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" +#: ../../Zotlabs/Lib/Enotify.php:192 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla] Nuovo commento di %2$s alla conversazione #%1$d" -#: ../../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" +#: ../../Zotlabs/Lib/Enotify.php:193 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." -#: ../../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/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 +#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 +#: ../../Zotlabs/Lib/Enotify.php:269 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Visita %s per leggere o commentare la conversazione." -#: ../../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." +#: ../../Zotlabs/Lib/Enotify.php:202 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla] %s ha scritto sulla tua bacheca" -#: ../../include/dba/dba_driver.php:171 +#: ../../Zotlabs/Lib/Enotify.php:204 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" -#: ../../include/photos.php:114 +#: ../../Zotlabs/Lib/Enotify.php:206 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'immagine supera il limite massimo di %lu bytes" +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla] %s ti ha taggato" -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Impossibile salvare la foto." +#: ../../Zotlabs/Lib/Enotify.php:231 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s ti ha taggato su %3$s" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nuova foto" +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." -#: ../../include/photos.php:303 +#: ../../Zotlabs/Lib/Enotify.php:244 #, 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 "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla] %1$s ti ha mandato un poke" -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Album foto" +#: ../../Zotlabs/Lib/Enotify.php:245 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Carica nuove foto" +#: ../../Zotlabs/Lib/Enotify.php:246 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Esci" +#: ../../Zotlabs/Lib/Enotify.php:262 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla] %s ha taggato il tuo post" -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Chiudi questa sessione" +#: ../../Zotlabs/Lib/Enotify.php:263 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s ha taggato il tuo post su %3$s" -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Bacheca" +#: ../../Zotlabs/Lib/Enotify.php:264 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo post[/zrl]" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "I tuoi post e conversazioni" +#: ../../Zotlabs/Lib/Enotify.php:276 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla] Hai una richiesta di amicizia" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Il tuo profilo" +#: ../../Zotlabs/Lib/Enotify.php:277 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Gestisci i tuoi profili" +#: ../../Zotlabs/Lib/Enotify.php:278 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Modifica il profilo" +#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puoi visitare il suo profilo su %s" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Modifica il tuo profilo" +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Le tue foto" +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla] Ti è stato suggerito un amico" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "I tuoi file" +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Le tue chat" +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Segnalibri" +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" +msgstr "Nome:" -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "I tuoi segnalibri" +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" +msgstr "Foto:" -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Le tue pagine web" +#: ../../Zotlabs/Lib/Enotify.php:303 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "La tua wiki" +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla]" -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Accedi" +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" +msgstr "Ha creato un nuovo post" -#: ../../include/nav.php:129 +#: ../../Zotlabs/Lib/Enotify.php:668 #, php-format -msgid "%s - click to logout" -msgstr "%s - clicca per uscire" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Accedi dal tuo hub" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Clicca per farti riconoscere dal tuo hub principale" +msgid "commented on %s's post" +msgstr "ha commentato il post di %s" -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Bacheca" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +msgid "Private Message" +msgstr "Messaggio privato" -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Crea un account" +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +msgid "Select" +msgstr "Scegli" -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Guida e documentazione" +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "Salva nella cartella" -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Applicazioni, utilità, link, giochi" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Parteciperò" -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "Non parteciperò" -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Elenchi pubblici dei canali" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Forse parteciperò" -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "La tua rete" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "Sono d'accordo" -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Segna come lette le notifiche della tua rete" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "Non sono d'accordo" -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Bacheca del canale" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "Mi astengo" -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Segna come lette le notifiche del canale" +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" +msgstr "Aggiungi ai preferiti" -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Avvisi" +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" +msgstr "Rimuovi dai preferiti" -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notifiche" +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" +msgstr "Attiva/disattiva preferito" -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" +msgstr "preferito" -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Messaggi privati" +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +msgid "Message signature validated" +msgstr "Messaggio con firma verificata" -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Guarda tutti i messaggi privati" +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +msgid "Message signature incorrect" +msgstr "Massaggio con firma non corretta" -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Segna come letti tutti i messaggi privati" +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" +msgstr "Aggiungi un tag" -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "In arrivo" +#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +msgid "like" +msgstr "mi piace" -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Inviati" +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "non mi piace" -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nuovo messaggio" +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "Share This" +msgstr "Condividi" -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Calendario" +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "share" +msgstr "condividi" -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Guarda tutti gli eventi" +#: ../../Zotlabs/Lib/ThreadItem.php:275 +msgid "Delivery Report" +msgstr "Rapporto di trasmissione" -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Marca come letti tutti gli eventi" +#: ../../Zotlabs/Lib/ThreadItem.php:293 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Gestisci i tuoi canali" +#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#, php-format +msgid "View %s's profile - %s" +msgstr "Guarda il profilo di %s - %s" -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Impostazioni dell'account e del canale" +#: ../../Zotlabs/Lib/ThreadItem.php:326 +msgid "to" +msgstr "a" -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Amministrazione" +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "via" +msgstr "via" -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Installazione e configurazione del sito" +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Caricamento in corso..." +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca:" -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@nome, #tag, ?guida, contenuto" +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#, php-format +msgid "from %s" +msgstr "da %s" -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Attendere..." +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#, php-format +msgid "last edited: %s" +msgstr "ultima modifica: %s" -#: ../../include/network.php:704 -msgid "view full size" -msgstr "guarda nelle dimensioni reali" +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#, php-format +msgid "Expires: %s" +msgstr "Scadenza: %s" -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Amministratore" +#: ../../Zotlabs/Lib/ThreadItem.php:370 +msgid "Save Bookmarks" +msgstr "Salva segnalibro" -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Nessun titolo" +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Add to Calendar" +msgstr "Aggiungi al calendario" -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" +#: ../../Zotlabs/Lib/ThreadItem.php:380 +msgid "Mark all seen" +msgstr "Marca tutto come letto" -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" +#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] mostra tutto" -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU-Social" +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +msgid "Bold" +msgstr "Grassetto" -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +msgid "Italic" +msgstr "Corsivo" -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +msgid "Underline" +msgstr "Sottolineato" -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +msgid "Quote" +msgstr "Citazione" -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +msgid "Code" +msgstr "Codice" -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../Zotlabs/Lib/ThreadItem.php:716 +msgid "Image" +msgstr "Immagine" -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Insert Link" +msgstr "Collegamento" -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Video" +msgstr "Video" -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nuova pagina web" +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Impossibile trovare il nome utente nel file da importare." -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titolo" +#: ../../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." + +#: ../../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'" #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 @@ -7441,1412 +6802,1582 @@ msgstr "gli piace" 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/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" + +#: ../../include/event.php:1015 +msgid "In Process" +msgstr "In corso" + +#: ../../include/event.php:1016 +msgid "Cancelled" +msgstr "Annullato" + +#: ../../include/import.php:29 +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:76 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'importazione è fallita." + +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Sconosciuto)" + +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Visibile a chiunque su internet." + +#: ../../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 "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/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 "Privacy group: %s" +msgstr "Gruppo di canali: %s" + +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Contatto non trovato." + +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "foto del profilo" + +#: ../../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/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "Mostra tutti i %s contatti" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "poke" -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nome vuoto" +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "ha mandato un poke" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nome troppo lungo" +#: ../../include/text.php:1039 +msgid "ping" +msgstr "ping" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Account senza identificativo" +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "ha effettuato un ping" -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." +#: ../../include/text.php:1040 +msgid "prod" +msgstr "spintone" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "ha ricevuto uno spintone" -#: ../../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/text.php:1041 +msgid "slap" +msgstr "schiaffo" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Profilo predefinito" +#: ../../include/text.php:1042 +msgid "finger" +msgstr "finger" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "ha ricevuto un finger" -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "rifiuto" -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Sesso:" +#: ../../include/text.php:1055 +msgid "happy" +msgstr "felice" -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Stato:" +#: ../../include/text.php:1056 +msgid "sad" +msgstr "triste" -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Home page:" +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "calmo" -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Online adesso" +#: ../../include/text.php:1058 +msgid "tired" +msgstr "stanco" -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Mi piace questo canale" +#: ../../include/text.php:1059 +msgid "perky" +msgstr "vivace" -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F Y" +#: ../../include/text.php:1060 +msgid "angry" +msgstr "arrabbiato" -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "stupito" -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Compleanno:" +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "confuso" -#: ../../include/channel.php:1232 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +#: ../../include/text.php:1063 +msgid "interested" +msgstr "attento" -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "amaro" -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Tag:" +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "allegro" -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Orientamento politico:" +#: ../../include/text.php:1066 +msgid "alive" +msgstr "vivace" -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religione:" +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "seccato" -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "ansioso" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Mi piace:" +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "irritabile" -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Non mi piace:" +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "turbato" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustrato" -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "I miei altri canali:" +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "in depressione" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Gusti musicali:" +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivato" -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "rilassato" -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Televisione:" +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "sorpreso" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "lunedì" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Amore:" +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "martedì" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Lavoro:" +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "mercoledì" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Scuola:" +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "giovedì" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Mi piace" +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "venerdì" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nuova finestra" +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "sabato" -#: ../../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/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "domenica" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' eliminato" +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "gennaio" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s adesso è connesso con %2$s" +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "febbraio" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha mandato un poke a %2$s" +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "marzo" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "ha mandato un poke" +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "aprile" -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" +#: ../../include/text.php:1261 +msgid "May" +msgstr "Mag" -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Categorie:" +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "giugno" -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Classificato come:" +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "luglio" -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "Vedi nel contesto" +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "agosto" -#: ../../include/conversation.php:850 -msgid "remove" -msgstr "rimuovi" +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "settembre" -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" -msgstr "Elimina gli oggetti selezionati" +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "ottobre" -#: ../../include/conversation.php:951 -msgid "View Source" -msgstr "Vedi il sorgente" +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "novembre" -#: ../../include/conversation.php:952 -msgid "Follow Thread" -msgstr "Segui la discussione" +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "dicembre" -#: ../../include/conversation.php:953 -msgid "Unfollow Thread" -msgstr "Non seguire la discussione" +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Allegato non riconoscuto" -#: ../../include/conversation.php:958 -msgid "Activity/Posts" -msgstr "Attività e Post" +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "sconosciuta" -#: ../../include/conversation.php:960 -msgid "Edit Connection" -msgstr "Modifica il contatto" +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "rimuovi la categoria" -#: ../../include/conversation.php:961 -msgid "Message" -msgstr "Messaggio" +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "rimuovi dal file" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "predefinito" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Layout della pagina" -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "Piace a %2$d persone." +#: ../../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/conversation.php:1084 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "Non piace a %2$d persone." +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Tipo di contenuto della pagina" -#: ../../include/conversation.php:1090 -msgid "and" -msgstr "e" +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" -#: ../../include/conversation.php:1093 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "e altre %d persone" +#: ../../include/text.php:1953 +msgid "activity" +msgstr "l'attività" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Strumenti di design" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Pagine" -#: ../../include/conversation.php:1133 -msgid "Set your location" -msgstr "La tua località" +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" -#: ../../include/conversation.php:1134 -msgid "Clear browser location" -msgstr "Rimuovi la località data dal browser" +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nuova app" -#: ../../include/conversation.php:1182 -msgid "Tag term:" -msgstr "Tag:" +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggerimenti" -#: ../../include/conversation.php:1183 -msgid "Where are you right now?" -msgstr "Dove sei ora?" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Altro..." -#: ../../include/conversation.php:1221 -msgid "Page link name" -msgstr "Nome del link alla pagina" +#: ../../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/conversation.php:1224 -msgid "Post as" -msgstr "Pubblica come " +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Aggiungi un contatto" -#: ../../include/conversation.php:1238 -msgid "Toggle voting" -msgstr "Abilita/disabilita il voto" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Indirizzo del canale" -#: ../../include/conversation.php:1246 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Per esempio: bob@example.com, https://example.com/barbara" -#: ../../include/conversation.php:1269 -msgid "Set publish date" -msgstr "Data di uscita programmata" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Note" -#: ../../include/conversation.php:1518 -msgid "Discover" -msgstr "Scopri" +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Rimuovi termine" -#: ../../include/conversation.php:1521 -msgid "Imported public streams" -msgstr "Contenuti pubblici importati" +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Ricerche salvate" -#: ../../include/conversation.php:1526 -msgid "Commented Order" -msgstr "Commenti recenti" +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "aggiungi" -#: ../../include/conversation.php:1529 -msgid "Sort by Comment Date" -msgstr "Per data del commento" +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Cartelle salvate" -#: ../../include/conversation.php:1533 -msgid "Posted Order" -msgstr "Post recenti" +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tutto" -#: ../../include/conversation.php:1536 -msgid "Sort by Post Date" -msgstr "Per data di creazione" +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archivi" -#: ../../include/conversation.php:1544 -msgid "Posts that mention or involve you" -msgstr "Post che ti riguardano" +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Aggiorna" -#: ../../include/conversation.php:1553 -msgid "Activity Stream - by date" -msgstr "Elenco attività - per data" +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Il tuo account" -#: ../../include/conversation.php:1559 -msgid "Starred" -msgstr "Preferiti" +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Impostazioni del canale" -#: ../../include/conversation.php:1562 -msgid "Favourite Posts" -msgstr "Post preferiti" +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Funzionalità opzionali" -#: ../../include/conversation.php:1569 -msgid "Spam" -msgstr "Spam" +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Componenti aggiuntivi" -#: ../../include/conversation.php:1572 -msgid "Posts flagged as SPAM" -msgstr "Post marcati come spam" +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Aspetto" -#: ../../include/conversation.php:1629 -msgid "Status Messages and Posts" -msgstr "Post e messaggi di stato" +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestione repliche" -#: ../../include/conversation.php:1638 -msgid "About" -msgstr "Informazioni" +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Esporta il canale" -#: ../../include/conversation.php:1641 -msgid "Profile Details" -msgstr "Dettagli del profilo" +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "App connesse" -#: ../../include/conversation.php:1657 -msgid "Files and Storage" -msgstr "Archivio file" +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Canale premium - impostazioni" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Chat" +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Menu messaggi privati" -#: ../../include/conversation.php:1693 -msgid "Saved Bookmarks" -msgstr "Segnalibri salvati" +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Vista combinata" -#: ../../include/conversation.php:1703 -msgid "Manage Webpages" -msgstr "Gestisci le pagine web" +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "In arrivo" -#: ../../include/conversation.php:1768 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Partecipa" -msgstr[1] "Partecipano" +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Inviati" -#: ../../include/conversation.php:1771 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Non partecipa" -msgstr[1] "Non partecipano" +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nuovo messaggio" -#: ../../include/conversation.php:1774 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso" -msgstr[1] "Indecisi" +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversazioni" -#: ../../include/conversation.php:1777 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "D'accordo" -msgstr[1] "D'accordo" +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Ricevuti" -#: ../../include/conversation.php:1780 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Non d'accordo" -msgstr[1] "Non d'accordo" +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Inviati" -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Astenuto" -msgstr[1] "Astenuti" +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Nessun messaggio." -#: ../../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/widgets.php:725 +msgid "Delete conversation" +msgstr "Elimina la conversazione" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Menu eventi" -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Frequentemente" +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Eventi del giorno" -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Ogni ora" +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Eventi della settimana" -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Due volte al giorno" +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Eventi del mese" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Ogni giorno" +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Gestione eventi" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Ogni settimana" +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Esporta calendario" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Ogni mese" +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importa calendario" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Al momento maschio" +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Chat" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Al momento femmina" +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Riepilogo" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Prevalentemente maschio" +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Partecipanti" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Prevalentemente femmina" +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Chat nei segnalibri" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgender" +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Chat suggerite" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersex" +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/immagine" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transessuale" +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Clicca per mostrare tutto" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Ermafrodito" +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Valutazione" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Neutro" +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Valutami" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "Non specificato" +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Vedi le valutazioni ricevute" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indeciso" +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Forum" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Maschi" +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Attività" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Femmine" +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Guida" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Gay" +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Informazioni sul sito/progetto" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbica" +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Per gli utenti" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Senza preferenza" +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Per gli amministratori" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisessuale" +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Per sviluppatori" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosessuale" +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "Richieste in attesa di conferma" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Astinente" +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Coda di attesa" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Vergine" +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Aggiornamenti al DB" -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Deviato" +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Amministrazione" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Feticista" +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Plugin" -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Un sacco" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Asessuato" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Single" +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Da solo" +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponibile" +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocollo disabilitato." -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Non disponibile" +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Ha una cotta" +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Infatuato/a" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "I segnalibri di %1$s" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Disponibile a un incontro" +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Diario pubblico" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infedele" +#: ../../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/selectors.php:123 -msgid "Sex Addict" -msgstr "Sesso-dipendente" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Contenuto cifrato" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amici con qualcosa in più" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installa l'elemento %s:" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Casual" +#: ../../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/selectors.php:123 -msgid "Engaged" -msgstr "Impegnato" +#: ../../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/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Sposato/a" +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Con matrimonio immaginario" +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "spoiler" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partner" +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Ad altri questo testo potrebbe apparire in modo differente" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Convivente" +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Matrimonio regolare" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Visibilità negli elenchi pubblici" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Felice" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modalità SafeSearch" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Non in cerca" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo forum pubblici" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Scambista" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo in questo sito" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Tradito/a" +#: ../../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/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separato/a" +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Esci" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Instabile" +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Chiudi questa sessione" + +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Bacheca" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorziato/a" +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "I tuoi post e conversazioni" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Sogna il divorzio" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Il tuo profilo" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Vedovo/a" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Gestisci i tuoi profili" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Incerto/a" +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Modifica il profilo" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Relazione complicata" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Modifica il tuo profilo" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Chi se ne frega" +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Le tue foto" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Chiedimelo" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "I tuoi file" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "I segnalibri di %1$s" +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Le tue chat" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "ospite:" +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Segnalibri" -#: ../../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/nav.php:102 +msgid "Your bookmarks" +msgstr "I tuoi segnalibri" -#: ../../include/text.php:404 -msgid "prev" -msgstr "prec" +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Le tue pagine web" -#: ../../include/text.php:406 -msgid "first" -msgstr "inizio" +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Accedi" -#: ../../include/text.php:435 -msgid "last" -msgstr "fine" +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - clicca per uscire" -#: ../../include/text.php:438 -msgid "next" -msgstr "succ" +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Accedi dal tuo hub" -#: ../../include/text.php:448 -msgid "older" -msgstr "più recenti" +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Clicca per farti riconoscere dal tuo hub principale" -#: ../../include/text.php:450 -msgid "newer" -msgstr "più nuovi" +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Bacheca" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Nessun contatto" +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Crea un account" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" -msgstr "Mostra tutti i %s contatti" +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Guida e documentazione" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "poke" +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Applicazioni, utilità, link, giochi" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "ping" +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "ha effettuato un ping" +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Elenchi pubblici dei canali" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "spintone" +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "La tua rete" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "ha ricevuto uno spintone" +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Segna come lette le notifiche della tua rete" -#: ../../include/text.php:1021 -msgid "slap" -msgstr "schiaffo" +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Bacheca del canale" -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ha ricevuto uno schiaffo" +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Segna come lette le notifiche del canale" -#: ../../include/text.php:1022 -msgid "finger" -msgstr "finger" +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Avvisi" -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "ha ricevuto un finger" +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notifiche" -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "rifiuto" +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "ha ricevuto un rifiuto" +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Messaggi privati" -#: ../../include/text.php:1035 -msgid "happy" -msgstr "felice" +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Guarda tutti i messaggi privati" -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste" +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Segna come letti tutti i messaggi privati" -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "calmo" +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Calendario" -#: ../../include/text.php:1038 -msgid "tired" -msgstr "stanco" +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Guarda tutti gli eventi" -#: ../../include/text.php:1039 -msgid "perky" -msgstr "vivace" +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Marca come letti tutti gli eventi" -#: ../../include/text.php:1040 -msgid "angry" -msgstr "arrabbiato" +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Gestisci i tuoi canali" -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "stupito" +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Impostazioni dell'account e del canale" -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "confuso" +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Installazione e configurazione del sito" -#: ../../include/text.php:1043 -msgid "interested" -msgstr "attento" +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Caricamento in corso..." -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amaro" +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@nome, #tag, ?guida, contenuto" -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "allegro" +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Attendere..." -#: ../../include/text.php:1046 -msgid "alive" -msgstr "vivace" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nuova finestra" -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "seccato" +#: ../../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/text.php:1048 -msgid "anxious" -msgstr "ansioso" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' eliminato" -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "irritabile" +#: ../../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/text.php:1050 -msgid "disturbed" -msgstr "turbato" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Ricerca canali" -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrato" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Scrivi un nome o un interesse" -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "in depressione" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Aggiungi" -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivato" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Per esempio: Mario Rossi, Pesca" -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "rilassato" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Profilo casuale" -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorpreso" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Invita amici" -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "lunedì" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Per esempio: name=mario e country=italy" + +#: ../../include/contact_widgets.php:122 +#, 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" -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "martedì" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mostra tutto" -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "mercoledì" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s adesso è connesso con %2$s" -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "giovedì" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha mandato un poke a %2$s" -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "venerdì" +#: ../../include/conversation.php:691 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "sabato" +#: ../../include/conversation.php:710 +msgid "Categories:" +msgstr "Categorie:" -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "domenica" +#: ../../include/conversation.php:711 +msgid "Filed under:" +msgstr "Classificato come:" -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "gennaio" +#: ../../include/conversation.php:738 +msgid "View in context" +msgstr "Vedi nel contesto" -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "febbraio" +#: ../../include/conversation.php:847 +msgid "remove" +msgstr "rimuovi" -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "marzo" +#: ../../include/conversation.php:852 +msgid "Delete Selected Items" +msgstr "Elimina gli oggetti selezionati" -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "aprile" +#: ../../include/conversation.php:948 +msgid "View Source" +msgstr "Vedi il sorgente" -#: ../../include/text.php:1241 -msgid "May" -msgstr "Mag" +#: ../../include/conversation.php:949 +msgid "Follow Thread" +msgstr "Segui la discussione" -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "giugno" +#: ../../include/conversation.php:950 +msgid "Unfollow Thread" +msgstr "Non seguire la discussione" -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "luglio" +#: ../../include/conversation.php:955 +msgid "Activity/Posts" +msgstr "Attività e Post" -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "agosto" +#: ../../include/conversation.php:957 +msgid "Edit Connection" +msgstr "Modifica il contatto" -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "settembre" +#: ../../include/conversation.php:958 +msgid "Message" +msgstr "Messaggio" -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "ottobre" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "novembre" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "dicembre" +#: ../../include/conversation.php:1079 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "Piace a %2$d persone." -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Allegato non riconoscuto" +#: ../../include/conversation.php:1081 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "Non piace a %2$d persone." -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "sconosciuta" +#: ../../include/conversation.php:1087 +msgid "and" +msgstr "e" -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "rimuovi la categoria" +#: ../../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/text.php:1437 -msgid "remove from file" -msgstr "rimuovi dal file" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "predefinito" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Layout della pagina" +#: ../../include/conversation.php:1130 +msgid "Set your location" +msgstr "La tua località" -#: ../../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/conversation.php:1131 +msgid "Clear browser location" +msgstr "Rimuovi la località data dal browser" -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Tipo di contenuto della pagina" +#: ../../include/conversation.php:1177 +msgid "Tag term:" +msgstr "Tag:" -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Seleziona una lingua diversa" +#: ../../include/conversation.php:1178 +msgid "Where are you right now?" +msgstr "Dove sei ora?" -#: ../../include/text.php:1934 -msgid "activity" -msgstr "l'attività" +#: ../../include/conversation.php:1210 +msgid "Page link name" +msgstr "Nome del link alla pagina" -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Strumenti di design" +#: ../../include/conversation.php:1213 +msgid "Post as" +msgstr "Pubblica come " -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Pagine" +#: ../../include/conversation.php:1223 +msgid "Toggle voting" +msgstr "Abilita/disabilita il voto" -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Uscita effettuata." +#: ../../include/conversation.php:1231 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Autenticazione fallita" +#: ../../include/conversation.php:1254 +msgid "Set publish date" +msgstr "Data di uscita programmata" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Può vedere i miei contenuti e i post normali" +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Può vedere le mie pagine web" +#: ../../include/conversation.php:1503 +msgid "Discover" +msgstr "Scopri" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Può scrivere sulla bacheca del mio canale" +#: ../../include/conversation.php:1506 +msgid "Imported public streams" +msgstr "Contenuti pubblici importati" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Può aggiungere \"mi piace\" a tutto il resto" +#: ../../include/conversation.php:1511 +msgid "Commented Order" +msgstr "Commenti recenti" -#: ../../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/conversation.php:1514 +msgid "Sort by Comment Date" +msgstr "Per data del commento" -#: ../../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/conversation.php:1518 +msgid "Posted Order" +msgstr "Post recenti" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" +#: ../../include/conversation.php:1521 +msgid "Sort by Post Date" +msgstr "Per data di creazione" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Può aprire una chat con me (se disponibile)" +#: ../../include/conversation.php:1529 +msgid "Posts that mention or involve you" +msgstr "Post che ti riguardano" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Può modificare il mio archivio file e foto" +#: ../../include/conversation.php:1538 +msgid "Activity Stream - by date" +msgstr "Elenco attività - per data" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Può modificare le mie pagine web" +#: ../../include/conversation.php:1544 +msgid "Starred" +msgstr "Preferiti" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" +#: ../../include/conversation.php:1547 +msgid "Favourite Posts" +msgstr "Post preferiti" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Può amministrare i contenuti del mio canale" +#: ../../include/conversation.php:1554 +msgid "Spam" +msgstr "Spam" -#: ../../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/conversation.php:1557 +msgid "Posts flagged as SPAM" +msgstr "Post marcati come spam" -#: ../../include/features.php:48 -msgid "General Features" -msgstr "Funzionalità di base" +#: ../../include/conversation.php:1614 +msgid "Status Messages and Posts" +msgstr "Post e messaggi di stato" -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Scadenza" +#: ../../include/conversation.php:1623 +msgid "About" +msgstr "Informazioni" -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" +#: ../../include/conversation.php:1626 +msgid "Profile Details" +msgstr "Dettagli del profilo" -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Profili multipli" +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Album foto" -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Abilitazione a creare profili multipli" +#: ../../include/conversation.php:1642 +msgid "Files and Storage" +msgstr "Archivio file" -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Profili avanzati" +#: ../../include/conversation.php:1678 +msgid "Saved Bookmarks" +msgstr "Segnalibri salvati" -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Informazioni aggiuntive del profilo" +#: ../../include/conversation.php:1688 +msgid "Manage Webpages" +msgstr "Gestisci le pagine web" -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Importa/esporta il profilo" +#: ../../include/conversation.php:1747 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Partecipa" +msgstr[1] "Partecipano" -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Salva o ripristina le informazioni del profilo su siti diversi" +#: ../../include/conversation.php:1750 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Non partecipa" +msgstr[1] "Non partecipano" -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Pagine web" +#: ../../include/conversation.php:1753 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso" +msgstr[1] "Indecisi" -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Attiva la creazione di pagine web sul tuo canale" +#: ../../include/conversation.php:1756 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "D'accordo" +msgstr[1] "D'accordo" -#: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "Fornisce una wiki per il tuo canale" +#: ../../include/conversation.php:1759 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Non d'accordo" +msgstr[1] "Non d'accordo" -#: ../../include/features.php:56 -msgid "Hide Rating" -msgstr "Nascondi le valutazioni" +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Astenuto" +msgstr[1] "Astenuti" -#: ../../include/features.php:56 -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/selectors.php:30 +msgid "Frequently" +msgstr "Frequentemente" -#: ../../include/features.php:57 -msgid "Private Notes" -msgstr "Note private" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Ogni ora" -#: ../../include/features.php:57 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Due volte al giorno" -#: ../../include/features.php:58 -msgid "Navigation Channel Select" -msgstr "Scegli il canale attivo dal menu" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Ogni giorno" -#: ../../include/features.php:58 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Scegli il canale attivo direttamente dal menu di navigazione" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Ogni settimana" -#: ../../include/features.php:59 -msgid "Photo Location" -msgstr "Posizione geografica" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Ogni mese" -#: ../../include/features.php:59 -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/selectors.php:49 +msgid "Currently Male" +msgstr "Al momento maschio" -#: ../../include/features.php:60 -msgid "Access Controlled Chatrooms" -msgstr "Chat ad accesso riservato" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Al momento femmina" -#: ../../include/features.php:60 -msgid "Provide chatrooms and chat services with access control." -msgstr "Il servizio di chat con accesso riservato" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Prevalentemente maschio" -#: ../../include/features.php:61 -msgid "Smart Birthdays" -msgstr "Compleanni intelligenti" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Prevalentemente femmina" -#: ../../include/features.php:61 -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/selectors.php:49 +msgid "Transgender" +msgstr "Transgender" -#: ../../include/features.php:62 -msgid "Expert Mode" -msgstr "Modalità esperto" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Intersex" -#: ../../include/features.php:62 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transessuale" -#: ../../include/features.php:63 -msgid "Premium Channel" -msgstr "Canale premium" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Ermafrodito" -#: ../../include/features.php:63 -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/selectors.php:49 +msgid "Neuter" +msgstr "Neutro" -#: ../../include/features.php:68 -msgid "Post Composition Features" -msgstr "Modalità di scrittura post" +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "Non specificato" -#: ../../include/features.php:71 -msgid "Large Photos" -msgstr "Foto grandi" +#: ../../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/features.php:71 -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/selectors.php:49 +msgid "Undecided" +msgstr "Indeciso" -#: ../../include/features.php:72 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Maschi" -#: ../../include/features.php:73 -msgid "Even More Encryption" -msgstr "Cifratura addizionale" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Femmine" -#: ../../include/features.php:73 -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/selectors.php:85 +msgid "Gay" +msgstr "Gay" -#: ../../include/features.php:74 -msgid "Enable Voting Tools" -msgstr "Permetti i post con votazione" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbica" -#: ../../include/features.php:74 -msgid "Provide a class of post which others can vote on" -msgstr "Rende possibile la creazione di post in cui sarà possibile votare" +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Senza preferenza" -#: ../../include/features.php:75 -msgid "Delayed Posting" -msgstr "Pubblicazione ritardata" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisessuale" -#: ../../include/features.php:75 -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/selectors.php:85 +msgid "Autosexual" +msgstr "Autosessuale" -#: ../../include/features.php:76 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Impedisci post e commenti duplicati" +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Astinente" -#: ../../include/features.php:76 -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/selectors.php:85 +msgid "Virgin" +msgstr "Vergine" -#: ../../include/features.php:82 -msgid "Network and Stream Filtering" -msgstr "Filtraggio dei contenuti" +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Deviato" -#: ../../include/features.php:83 -msgid "Search by Date" -msgstr "Ricerca per data" +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Feticista" -#: ../../include/features.php:83 -msgid "Ability to select posts by date ranges" -msgstr "Per selezionare i post in un intervallo tra date" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Un sacco" -#: ../../include/features.php:84 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Gruppi di canali" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Asessuato" -#: ../../include/features.php:84 -msgid "Enable management and selection of privacy groups" -msgstr "Abilita i gruppi di canali" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Single" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Ricerche salvate" +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Da solo" -#: ../../include/features.php:85 -msgid "Save search terms for re-use" -msgstr "Salva i termini delle ricerche per poterle ripetere" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Disponibile" + +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Non disponibile" -#: ../../include/features.php:86 -msgid "Network Personal Tab" -msgstr "Attività personale" +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Ha una cotta" -#: ../../include/features.php:86 -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/selectors.php:123 +msgid "Infatuated" +msgstr "Infatuato/a" -#: ../../include/features.php:87 -msgid "Network New Tab" -msgstr "Contenuti nuovi" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Disponibile a un incontro" -#: ../../include/features.php:87 -msgid "Enable tab to display all new Network activity" -msgstr "Abilita il link per visualizzare solo i nuovi contenuti" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Infedele" -#: ../../include/features.php:88 -msgid "Affinity Tool" -msgstr "Filtro per affinità" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Sesso-dipendente" -#: ../../include/features.php:88 -msgid "Filter stream activity by depth of relationships" -msgstr "Permette di selezionare i contenuti in base al livello di amicizia" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Amici con qualcosa in più" -#: ../../include/features.php:89 -msgid "Connection Filtering" -msgstr "Filtro sui contatti" +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Casual" -#: ../../include/features.php:89 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtra i post che ricevi con parole chiave" +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Impegnato" -#: ../../include/features.php:90 -msgid "Show channel suggestions" -msgstr "Mostra alcuni canali che potrebbero interessarti" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Sposato/a" -#: ../../include/features.php:95 -msgid "Post/Comment Tools" -msgstr "Gestione post e commenti" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Con matrimonio immaginario" -#: ../../include/features.php:96 -msgid "Community Tagging" -msgstr "Tag della comunità" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partner" -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" -msgstr "Permetti l'aggiunta di tag su post già esistenti" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Convivente" -#: ../../include/features.php:97 -msgid "Post Categories" -msgstr "Categorie dei post" +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Matrimonio regolare" -#: ../../include/features.php:97 -msgid "Add categories to your posts" -msgstr "Abilita le categorie per i tuoi post" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Felice" -#: ../../include/features.php:98 -msgid "Emoji Reactions" -msgstr "Reazioni emoji" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Non in cerca" -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Permetti le reazioni emoji ai post" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Scambista" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Cartelle salvate" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Tradito/a" -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" -msgstr "Abilita la raccolta dei tuoi articoli in cartelle" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Separato/a" -#: ../../include/features.php:100 -msgid "Dislike Posts" -msgstr "Non mi piace" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Instabile" -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" -msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Divorziato/a" -#: ../../include/features.php:101 -msgid "Star Posts" -msgstr "Post con stella" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Sogna il divorzio" -#: ../../include/features.php:101 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mostra la stella per segnare i post preferiti" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Vedovo/a" -#: ../../include/features.php:102 -msgid "Tag Cloud" -msgstr "Nuvola di tag" +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Incerto/a" -#: ../../include/features.php:102 -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/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Relazione complicata" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "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/selectors.php:123 +msgid "Don't care" +msgstr "Chi se ne frega" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Aggiungi nuovi contatti a questo gruppo di canali" +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Chiedimelo" -#: ../../include/group.php:289 -msgid "edit" -msgstr "modifica" +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Visibile secondo le impostazioni predefinite" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Modifica il gruppo" +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Solo io" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Crea un gruppo di canali" +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Pubblico" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Canali che non sono in nessun gruppo" +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Tutti sulla rete $Projectname" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "aggiungi" +#: ../../include/PermissionDescription.php:118 +#, php-format +msgid "Any account on %s" +msgstr "Tutti gli account su %s" -#: ../../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/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Chiunque tra i miei contatti" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Inizio:" +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Solo chi riceve il mio permesso" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Fine:" +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Chiunque sia autenticato (inclusi visitatori di altre reti)" -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Questo evento è stato aggiunto al tuo calendario" +#: ../../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/event.php:1014 -msgid "Not specified" -msgstr "Non specificato" +#: ../../include/PermissionDescription.php:161 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Necessita di un intervento" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Completato" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "" -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "In corso" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Annullato" +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "" #: ../../include/account.php:28 msgid "Not a valid email address" @@ -8886,6 +8417,11 @@ msgstr "Registrazione di %s confermata" msgid "Registration request at %s" msgstr "Richiesta di registrazione su %s" +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "Amministratore" + #: ../../include/account.php:339 msgid "your registration password" msgstr "la password di registrazione" @@ -8904,484 +8440,697 @@ msgstr "Account approvato." 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/account.php:506 +msgid "Account verified. Please login." +msgstr "Registrazione verificata. Adesso puoi effettuare login." -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." +#: ../../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/account.php:736 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." #: ../../include/attach.php:247 ../../include/attach.php:333 msgid "Item was not found." msgstr "Elemento non trovato." -#: ../../include/attach.php:499 +#: ../../include/attach.php:497 msgid "No source file." msgstr "Nessun file di origine." -#: ../../include/attach.php:521 +#: ../../include/attach.php:519 msgid "Cannot locate file to replace" msgstr "Il file da sostituire non è stato trovato" -#: ../../include/attach.php:539 +#: ../../include/attach.php:537 msgid "Cannot locate file to revise/update" msgstr "Il file da aggiornare non è stato trovato" -#: ../../include/attach.php:674 +#: ../../include/attach.php:672 #, php-format msgid "File exceeds size limit of %d" msgstr "Il file supera la dimensione massima di %d" -#: ../../include/attach.php:688 +#: ../../include/attach.php:686 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." -#: ../../include/attach.php:846 +#: ../../include/attach.php:842 msgid "File upload failed. Possible system limit or action terminated." msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." -#: ../../include/attach.php:859 +#: ../../include/attach.php:855 msgid "Stored file could not be verified. Upload failed." msgstr "Il file non può essere verificato. Caricamento fallito." -#: ../../include/attach.php:915 ../../include/attach.php:931 +#: ../../include/attach.php:909 ../../include/attach.php:925 msgid "Path not available." msgstr "Percorso non disponibile." -#: ../../include/attach.php:977 ../../include/attach.php:1129 +#: ../../include/attach.php:971 ../../include/attach.php:1123 msgid "Empty pathname" msgstr "Il percorso del file è vuoto" -#: ../../include/attach.php:1003 +#: ../../include/attach.php:997 msgid "duplicate filename or path" msgstr "il file o il percorso del file è duplicato" -#: ../../include/attach.php:1025 +#: ../../include/attach.php:1019 msgid "Path not found." msgstr "Percorso del file non trovato." -#: ../../include/attach.php:1083 +#: ../../include/attach.php:1077 msgid "mkdir failed." msgstr "mkdir fallito." -#: ../../include/attach.php:1087 +#: ../../include/attach.php:1081 msgid "database storage failed." msgstr "scrittura su database fallita." -#: ../../include/attach.php:1135 +#: ../../include/attach.php:1129 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/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contenuto cifrato" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Nome vuoto" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installa l'elemento %s:" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Nome troppo lungo" -#: ../../include/bbcode.php:182 -#, php-format +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Account senza identificativo" + +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Il nome dell'account è obbligatorio." + +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Nome utente riservato. Per favore scegline un altro." + +#: ../../include/channel.php:211 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." +"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:287 +msgid "Unable to retrieve created identity" +msgstr "Impossibile caricare l'identità creata" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Profilo predefinito" + +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "Il canale che cerchi non è disponibile." + +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" + +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Sesso:" + +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Stato:" -#: ../../include/bbcode.php:261 +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Home page:" + +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Online adesso" + +#: ../../include/channel.php:1147 +msgid "Like this channel" +msgstr "Mi piace questo canale" + +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "j F Y" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1179 +msgid "Birthday:" +msgstr "Compleanno:" + +#: ../../include/channel.php:1192 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s ha scritto %2$s %3$s" +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Tag:" -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Ad altri questo testo potrebbe apparire in modo differente" +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Orientamento politico:" -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religione:" -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Sconosciuto)" +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Interessi e hobby:" -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visibile a chiunque su internet." +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Mi piace:" -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visibile solo a te." +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "Non mi piace:" -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visibile a tutti su questa rete." +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Contatti e social network:" -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visibile a chiunque sia autenticato." +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "I miei altri canali:" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "Gusti musicali:" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "Televisione:" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "Film, danza, cultura, intrattenimento:" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "Amore:" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "Scuola:" + +#: ../../include/channel.php:1251 +msgid "Like this thing" +msgstr "Mi piace" + +#: ../../include/features.php:48 +msgid "General Features" +msgstr "Funzionalità di base" + +#: ../../include/features.php:50 +msgid "Content Expiration" +msgstr "Scadenza" + +#: ../../include/features.php:50 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" + +#: ../../include/features.php:51 +msgid "Multiple Profiles" +msgstr "Profili multipli" + +#: ../../include/features.php:51 +msgid "Ability to create multiple profiles" +msgstr "Abilitazione a creare profili multipli" + +#: ../../include/features.php:52 +msgid "Advanced Profiles" +msgstr "Profili avanzati" + +#: ../../include/features.php:52 +msgid "Additional profile sections and selections" +msgstr "Informazioni aggiuntive del profilo" + +#: ../../include/features.php:53 +msgid "Profile Import/Export" +msgstr "Importa/esporta il profilo" + +#: ../../include/features.php:53 +msgid "Save and load profile details across sites/channels" +msgstr "Salva o ripristina le informazioni del profilo su siti diversi" + +#: ../../include/features.php:54 +msgid "Web Pages" +msgstr "Pagine web" + +#: ../../include/features.php:54 +msgid "Provide managed web pages on your channel" +msgstr "Attiva la creazione di pagine web sul tuo canale" + +#: ../../include/features.php:55 +msgid "Hide Rating" +msgstr "Nascondi le valutazioni" + +#: ../../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:56 +msgid "Private Notes" +msgstr "Note private" + +#: ../../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:57 +msgid "Navigation Channel Select" +msgstr "Scegli il canale attivo dal menu" + +#: ../../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:58 +msgid "Photo Location" +msgstr "Posizione geografica" + +#: ../../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:59 +msgid "Access Controlled Chatrooms" +msgstr "Chat ad accesso riservato" + +#: ../../include/features.php:59 +msgid "Provide chatrooms and chat services with access control." +msgstr "Il servizio di chat con accesso riservato" + +#: ../../include/features.php:60 +msgid "Smart Birthdays" +msgstr "Compleanni intelligenti" + +#: ../../include/features.php:60 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." + +#: ../../include/features.php:61 +msgid "Expert Mode" +msgstr "Modalità esperto" + +#: ../../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:62 +msgid "Premium Channel" +msgstr "Canale premium" -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visibile a tutti su %s." +#: ../../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/items.php:1151 -msgid "Visible to all connections." -msgstr "Visibile a tutti coloro che ti seguono." +#: ../../include/features.php:67 +msgid "Post Composition Features" +msgstr "Modalità di scrittura post" -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visibile ai contatti approvati." +#: ../../include/features.php:70 +msgid "Large Photos" +msgstr "Foto grandi" -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visibile ad alcuni contatti scelti." +#: ../../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/items.php:3918 -msgid "Privacy group is empty." -msgstr "Gruppo di canali vuoto." +#: ../../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/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppo di canali: %s" +#: ../../include/features.php:72 +msgid "Even More Encryption" +msgstr "Cifratura addizionale" -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Contatto non trovato." +#: ../../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/items.php:4290 -msgid "profile photo" -msgstr "foto del profilo" +#: ../../include/features.php:73 +msgid "Enable Voting Tools" +msgstr "Permetti i post con votazione" -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Contenuti incorporati" +#: ../../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/oembed.php:345 -msgid "Embedding disabled" -msgstr "Disabilita la creazione di contenuti incorporati" +#: ../../include/features.php:74 +msgid "Delayed Posting" +msgstr "Pubblicazione ritardata" -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" +#: ../../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/widgets.php:106 -msgid "New App" -msgstr "Nuova app" +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Impedisci post e commenti duplicati" -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Suggerimenti" +#: ../../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/widgets.php:155 -msgid "See more..." -msgstr "Altro..." +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" +msgstr "Filtraggio dei contenuti" -#: ../../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/features.php:82 +msgid "Search by Date" +msgstr "Ricerca per data" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Aggiungi un contatto" +#: ../../include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Per selezionare i post in un intervallo tra date" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Indirizzo del canale" +#: ../../include/features.php:83 ../../include/group.php:311 +msgid "Privacy Groups" +msgstr "Gruppi di canali" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Per esempio: bob@example.com, https://example.com/barbara" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" +msgstr "Abilita i gruppi di canali" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Note" +#: ../../include/features.php:84 +msgid "Save search terms for re-use" +msgstr "Salva i termini delle ricerche per poterle ripetere" -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Rimuovi termine" +#: ../../include/features.php:85 +msgid "Network Personal Tab" +msgstr "Attività personale" -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tutto" +#: ../../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/widgets.php:354 -msgid "Archives" -msgstr "Archivi" +#: ../../include/features.php:86 +msgid "Network New Tab" +msgstr "Contenuti nuovi" -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Aggiorna" +#: ../../include/features.php:86 +msgid "Enable tab to display all new Network activity" +msgstr "Abilita il link per visualizzare solo i nuovi contenuti" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Il tuo account" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Filtro per affinità" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Impostazioni del canale" +#: ../../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/widgets.php:571 -msgid "Additional features" -msgstr "Funzionalità opzionali" +#: ../../include/features.php:88 +msgid "Connection Filtering" +msgstr "Filtro sui contatti" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Componenti aggiuntivi" +#: ../../include/features.php:88 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtra i post che ricevi con parole chiave" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Aspetto" +#: ../../include/features.php:89 +msgid "Show channel suggestions" +msgstr "Mostra alcuni canali che potrebbero interessarti" -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestione repliche" +#: ../../include/features.php:94 +msgid "Post/Comment Tools" +msgstr "Gestione post e commenti" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Esporta il canale" +#: ../../include/features.php:95 +msgid "Community Tagging" +msgstr "Tag della comunità" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "App connesse" +#: ../../include/features.php:95 +msgid "Ability to tag existing posts" +msgstr "Permetti l'aggiunta di tag su post già esistenti" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Canale premium - impostazioni" +#: ../../include/features.php:96 +msgid "Post Categories" +msgstr "Categorie dei post" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menu messaggi privati" +#: ../../include/features.php:96 +msgid "Add categories to your posts" +msgstr "Abilita le categorie per i tuoi post" -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vista combinata" +#: ../../include/features.php:97 +msgid "Emoji Reactions" +msgstr "" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversazioni" +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "" -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Ricevuti" +#: ../../include/features.php:98 +msgid "Ability to file posts under folders" +msgstr "Abilita la raccolta dei tuoi articoli in cartelle" -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Inviati" +#: ../../include/features.php:99 +msgid "Dislike Posts" +msgstr "Non mi piace" -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Nessun messaggio." +#: ../../include/features.php:99 +msgid "Ability to dislike posts/comments" +msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Elimina la conversazione" +#: ../../include/features.php:100 +msgid "Star Posts" +msgstr "Post con stella" -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Gestione eventi" +#: ../../include/features.php:100 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mostra la stella per segnare i post preferiti" -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Esporta calendario" +#: ../../include/features.php:101 +msgid "Tag Cloud" +msgstr "Nuvola di tag" -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importa calendario" +#: ../../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/widgets.php:840 -msgid "Overview" -msgstr "Riepilogo" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Contenuti incorporati" -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Partecipanti" +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Disabilita la creazione di contenuti incorporati" -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Elenco wiki" +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "Chi può vederlo?" -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Pagine wiki" +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "Selezione personalizzata" -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Chat nei segnalibri" +#: ../../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:965 -msgid "Suggested Chatrooms" -msgstr "Chat suggerite" +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "Mostra" -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/immagine" +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Non mostrare" -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Clicca per mostrare tutto" +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Invio ad altre reti o a siti esterni" -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Valutazione" +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "" -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Valutami" +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Uscita effettuata." -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Vedi le valutazioni ricevute" +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Autenticazione fallita" -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Forum" +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Compleanno" -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Attività" +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Età:" -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Guida" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-GG oppure MM-GG" -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Informazioni sul sito/progetto" +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "mai" -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Per gli utenti" +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "meno di un secondo fa" -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Per gli amministratori" +#: ../../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:1453 -msgid "For Developers" -msgstr "Per sviluppatori" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "anno" +msgstr[1] "anni" -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Richieste in attesa di conferma" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mese" +msgstr[1] "mesi" -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Coda di attesa" +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "settimana" +msgstr[1] "settimane" -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Aggiornamenti al DB" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "giorno" +msgstr[1] "giorni" -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Plugin" +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "ora" +msgstr[1] "ore" -#: ../../include/activities.php:41 -msgid " and " -msgstr "e" +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minuti" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "profilo pubblico" +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "secondo" +msgstr[1] "secondi" -#: ../../include/activities.php:58 +#: ../../include/datetime.php:562 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" +msgid "%1$s's birthday" +msgstr "Compleanno di %1$s" -#: ../../include/activities.php:59 +#: ../../include/datetime.php:563 #, php-format -msgid "Visit %1$s's %2$s" -msgstr "Guarda %2$s di %1$s " +msgid "Happy Birthday %1$s" +msgstr "Buon compleanno %1$s" -#: ../../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:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "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/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Allegati:" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Aggiungi nuovi contatti a questo gruppo di canali" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notifica evento $Projectname:" +#: ../../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/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/photos.php:295 +msgid "a new photo" +msgstr "una nuova foto" + +#: ../../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/photos.php:506 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: ../../include/zot.php:699 +msgid "Invalid data packet" +msgstr "Dati ricevuti non validi" + +#: ../../include/zot.php:715 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" + +#: ../../include/zot.php:2363 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" + +#: ../../include/zot.php:3712 +msgid "invalid target signature" +msgstr "la firma ricevuta non è valida" + +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nuova pagina web" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titolo" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Può vedere i miei contenuti e i post normali" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Aggiungi" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Può vedere il profilo predefinito del canale" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Per esempio: Mario Rossi, Pesca" +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Può vedere i miei contatti" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Profilo casuale" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Può vedere il mio archivio file e foto" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Invita amici" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Può vedere le mie pagine web" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Per esempio: name=mario e country=italy" +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "È tra i canali che seguo" -#: ../../include/contact_widgets.php:122 -#, 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" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Può scrivere sulla bacheca del mio canale" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostra tutto" +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Può commentare o aggiungere \"mi piace\" ai miei post" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Visibilità negli elenchi pubblici" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Può inviarmi messaggi privati" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modalità SafeSearch" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Può aggiungere \"mi piace\" a tutto il resto" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo forum pubblici" +#: ../../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/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo in questo sito" +#: ../../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/message.php:20 -msgid "No recipient provided." -msgstr "Devi scegliere un destinatario." +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[nessun titolo]" +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Può aprire una chat con me (se disponibile)" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Impossibile determinare il mittente." +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Può modificare il mio archivio file e foto" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Non è stato possibile verificare il post." +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Può modificare le mie pagine web" -#: ../../include/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "Chi può vederlo?" +#: ../../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/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Selezione personalizzata" +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" -#: ../../include/acl_selectors.php:271 +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Può amministrare i contenuti del mio canale" + +#: ../../include/permissions.php:46 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\"." +"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/acl_selectors.php:272 -msgid "Show" -msgstr "Mostra" +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Social network" -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Non mostrare" +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Social - Prevalentemente pubblico" -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Invio ad altre reti o a siti esterni" +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Social - Con restrizioni" -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
Questi permessi definiscono chi ha diritto di vedere il post." +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Social - Privato" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Compleanno" +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Forum di discussione" -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Età:" +#: ../../include/permissions.php:878 +msgid "Forum - 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:878 +msgid "Forum - Restricted" +msgstr "Forum - Con restrizioni" -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "mai" +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - Privato" -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "meno di un secondo fa" +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Aggregatore di feed esterni" -#: ../../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:879 +msgid "Feed - Mostly Public" +msgstr "Feed - Prevalentemente pubblico" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "anno" -msgstr[1] "anni" +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Feed - Con restrizioni" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mese" -msgstr[1] "mesi" +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Per finalità speciali" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "settimana" -msgstr[1] "settimane" +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Speciale - Pagina per fan" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "giorno" -msgstr[1] "giorni" +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Speciale - Repository di gruppo" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "ora" -msgstr[1] "ore" +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Personalizzazione per esperti" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minuti" +#: ../../include/activities.php:41 +msgid " and " +msgstr "e" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "secondo" -msgstr[1] "secondi" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "profilo pubblico" -#: ../../include/datetime.php:562 +#: ../../include/activities.php:58 #, php-format -msgid "%1$s's birthday" -msgstr "Compleanno di %1$s" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" -#: ../../include/datetime.php:563 +#: ../../include/activities.php:59 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Buon compleanno %1$s" - -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Diario pubblico" - -#: ../../include/zot.php:697 -msgid "Invalid data packet" -msgstr "Dati ricevuti non validi" - -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" +msgid "Visit %1$s's %2$s" +msgstr "Guarda %2$s di %1$s " -#: ../../include/zot.php:2326 +#: ../../include/activities.php:62 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha aggiornato %2$s cambiando %3$s." -#: ../../include/zot.php:3703 -msgid "invalid target signature" -msgstr "la firma ricevuta non è valida" +#: ../../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/it/hstrings.php b/view/it/hstrings.php index 03024afab..1abdad30e 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -4,39 +4,7 @@ if(! function_exists("string_plural_select_it")) { function string_plural_select_it($n){ return ($n != 1);; }} -App::$rtl = 0; -App::$strings["Social Networking"] = "Social network"; -App::$strings["Social - Mostly Public"] = "Social - Prevalentemente pubblico"; -App::$strings["Social - Restricted"] = "Social - Con restrizioni"; -App::$strings["Social - Private"] = "Social - Privato"; -App::$strings["Community Forum"] = "Forum di discussione"; -App::$strings["Forum - Mostly Public"] = "Social - Prevalentemente pubblico"; -App::$strings["Forum - Restricted"] = "Forum - Con restrizioni"; -App::$strings["Forum - Private"] = "Forum - Privato"; -App::$strings["Feed Republish"] = "Aggregatore di feed esterni"; -App::$strings["Feed - Mostly Public"] = "Feed - Prevalentemente pubblico"; -App::$strings["Feed - Restricted"] = "Feed - Con restrizioni"; -App::$strings["Special Purpose"] = "Per finalità speciali"; -App::$strings["Special - Celebrity/Soapbox"] = "Speciale - Pagina per fan"; -App::$strings["Special - Group Repository"] = "Speciale - Repository di gruppo"; -App::$strings["Other"] = "Altro"; -App::$strings["Custom/Expert Mode"] = "Personalizzazione per esperti"; -App::$strings["Can view my channel stream and posts"] = "Può vedere i post e i contenuti del mio canale"; -App::$strings["Can send me their channel stream and posts"] = "È tra i canali che seguo"; -App::$strings["Can view my default channel profile"] = "Può vedere il profilo predefinito del canale"; -App::$strings["Can view my connections"] = "Può vedere i miei contatti"; -App::$strings["Can view my file storage and photos"] = "Può vedere il mio archivio file e foto"; -App::$strings["Can upload/modify my file storage and photos"] = "Può caricare o modificare i file e le foto del mio archivio"; -App::$strings["Can view my channel webpages"] = "Può vedere le pagine web del mio canale"; -App::$strings["Can create/edit my channel webpages"] = "Può creare o modificare le pagine web del mio canale"; -App::$strings["Can post on my channel (wall) page"] = "Può postare sulla mia bacheca"; -App::$strings["Can comment on or like my posts"] = "Può commentare o aggiungere \"mi piace\" ai miei post"; -App::$strings["Can send me private mail messages"] = "Può inviarmi messaggi privati"; -App::$strings["Can like/dislike profiles and profile things"] = "Può aggiungere un \"mi piace\" sul profilo e sugli oggetti del profilo"; -App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Può inoltrare post a tutti i miei contatti con una menzione @+"; -App::$strings["Can chat with me"] = "Può aprire una chat con me"; -App::$strings["Can source my public posts in derived channels"] = "Può usare i miei post pubblici per creare canali derivati"; -App::$strings["Can administer my channel"] = "Può amministrare il mio canale"; +; App::$strings["parent"] = "cartella superiore"; App::$strings["Collection"] = "Cartella"; App::$strings["Principal"] = "Principale"; @@ -69,8 +37,63 @@ App::$strings["Remote authentication blocked. You are logged into this site loca App::$strings["Welcome %s. Remote authentication successful."] = "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo."; App::$strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile."; App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; +App::$strings["Block Name"] = "Nome del block"; +App::$strings["Blocks"] = "Block"; +App::$strings["Block Title"] = "Titolo del block"; +App::$strings["Created"] = "Creato"; +App::$strings["Edited"] = "Modificato"; +App::$strings["Share"] = "Condividi"; +App::$strings["View"] = "Guarda"; +App::$strings["Channel not found."] = "Canale non trovato."; +App::$strings["Permissions denied."] = "Permesso negato."; +App::$strings["l, F j"] = "l j F"; +App::$strings["Link to Source"] = "Link al sito d'origine"; +App::$strings["Edit Event"] = "Modifica l'evento"; +App::$strings["Create Event"] = "Crea un evento"; +App::$strings["Previous"] = "Precendente"; +App::$strings["Next"] = "Successivo"; +App::$strings["Export"] = "Esporta"; +App::$strings["Import"] = "Importa"; +App::$strings["Submit"] = "Salva"; +App::$strings["Today"] = "Oggi"; +App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; +App::$strings["Posts and comments"] = "Post e commenti"; +App::$strings["Only posts"] = "Solo post"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; +App::$strings["Room not found"] = "Chat non trovata"; +App::$strings["Leave Room"] = "Lascia la chat"; +App::$strings["Delete Room"] = "Elimina questa chat"; +App::$strings["I am away right now"] = "Non sono presente"; +App::$strings["I am online"] = "Sono online"; +App::$strings["Bookmark this room"] = "Aggiungi questa chat ai segnalibri"; +App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +App::$strings["Encrypt text"] = "Cifratura del messaggio"; +App::$strings["Insert web link"] = "Inserisci un indirizzo web"; +App::$strings["Feature disabled."] = "Funzionalità disattivata."; +App::$strings["New Chatroom"] = "Nuova chat"; +App::$strings["Chatroom name"] = "Nome chat"; +App::$strings["Expiration of chats (minutes)"] = "Scadenza dei messaggi della chat (minuti)"; +App::$strings["Permissions"] = "Permessi"; +App::$strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; +App::$strings["No chatrooms available"] = "Nessuna chat disponibile"; +App::$strings["Create New"] = "Crea nuova"; +App::$strings["Expiration"] = "Scadenza"; +App::$strings["min"] = "min"; App::$strings["Away"] = "Assente"; App::$strings["Online"] = "Online"; +App::$strings["Invalid item."] = "Elemento non valido."; +App::$strings["Bookmark added"] = "Segnalibro aggiunto"; +App::$strings["My Bookmarks"] = "I miei segnalibri"; +App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; +App::$strings["Continue"] = "Continua"; +App::$strings["Premium Channel Setup"] = "Canale premium - configurazione"; +App::$strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà seguire il canale:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; +App::$strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; App::$strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; App::$strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; App::$strings["Connection updated."] = "Contatto aggiornato."; @@ -135,7 +158,6 @@ App::$strings["Do not import posts with this text"] = "Non importare i post con App::$strings["This information is public!"] = "Questa informazione è pubblica!"; App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazione"; App::$strings["inherited"] = "derivato"; -App::$strings["Submit"] = "Salva"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso."; App::$strings["Their Settings"] = "Permessi concessi a te"; App::$strings["My Settings"] = "Permessi che concedo"; @@ -144,30 +166,6 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle impostazioni di privacy 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."; App::$strings["Last update:"] = "Ultimo aggiornamento:"; App::$strings["Public access denied."] = "Accesso pubblico negato."; -App::$strings["Item not found."] = "Elemento non trovato."; -App::$strings["First Name"] = "Nome"; -App::$strings["Last Name"] = "Cognome"; -App::$strings["Nickname"] = "Nick"; -App::$strings["Full Name"] = "Nome e cognome"; -App::$strings["Email"] = "Email"; -App::$strings["Profile Photo"] = "Foto del profilo"; -App::$strings["Profile Photo 16px"] = "Foto del profilo 16px"; -App::$strings["Profile Photo 32px"] = "Foto del profilo 32px"; -App::$strings["Profile Photo 48px"] = "Foto del profilo 48px"; -App::$strings["Profile Photo 64px"] = "Foto del profilo 64px"; -App::$strings["Profile Photo 80px"] = "Foto del profilo 80px"; -App::$strings["Profile Photo 128px"] = "Foto del profilo 128px"; -App::$strings["Timezone"] = "Fuso orario"; -App::$strings["Homepage URL"] = "Indirizzo home page"; -App::$strings["Language"] = "Lingua"; -App::$strings["Birth Year"] = "Anno di nascita"; -App::$strings["Birth Month"] = "Mese di nascita"; -App::$strings["Birth Day"] = "Giorno di nascita"; -App::$strings["Birthdate"] = "Data di nascita"; -App::$strings["Gender"] = "Sesso"; -App::$strings["Male"] = "Maschio"; -App::$strings["Female"] = "Femmina"; -App::$strings["Channel added."] = "Canale aggiunto."; App::$strings["%d rating"] = array( 0 => "%d valutazione", 1 => "%d valutazioni", @@ -198,74 +196,13 @@ App::$strings["Reverse Alphabetic"] = "Alfabetico inverso"; App::$strings["Newest to Oldest"] = "Prima i più recenti"; App::$strings["Oldest to Newest"] = "Prima i più vecchi"; App::$strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; -App::$strings["Continue"] = "Continua"; -App::$strings["Premium Channel Setup"] = "Canale premium - configurazione"; -App::$strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà seguire il canale:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; -App::$strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; -App::$strings["Calendar entries imported."] = "Le voci del calendario sono state importate."; -App::$strings["No calendar entries found."] = "Non sono state trovate voci del calendario."; -App::$strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; -App::$strings["Unable to generate preview."] = "Impossibile creare un'anteprima."; -App::$strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; -App::$strings["Event not found."] = "Evento non trovato."; -App::$strings["event"] = "l'evento"; -App::$strings["Edit event title"] = "Modifica il titolo dell'evento"; -App::$strings["Event title"] = "Titolo dell'evento"; -App::$strings["Required"] = "Obbligatorio"; -App::$strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; -App::$strings["Edit Category"] = "Modifica la categoria"; -App::$strings["Category"] = "Categoria"; -App::$strings["Edit start date and time"] = "Modifica data/ora di inizio"; -App::$strings["Start date and time"] = "Data e ora di inizio"; -App::$strings["Finish date and time are not known or not relevant"] = "La data e l'ora di fine non sono necessarie"; -App::$strings["Edit finish date and time"] = "Modifica data/ora di fine"; -App::$strings["Finish date and time"] = "Data e ora di fine"; -App::$strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono online ma con un certo fuso orario."; -App::$strings["Edit Description"] = "Modifica la descrizione"; -App::$strings["Description"] = "Descrizione"; -App::$strings["Edit Location"] = "Modifica il luogo"; -App::$strings["Location"] = "Posizione geografica"; -App::$strings["Share this event"] = "Condividi questo evento"; -App::$strings["Preview"] = "Anteprima"; -App::$strings["Permission settings"] = "Permessi dei tuoi contatti"; -App::$strings["Advanced Options"] = "Opzioni avanzate"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Modifica l'evento"; -App::$strings["Delete event"] = "Elimina l'evento"; -App::$strings["Link to Source"] = "Link al sito d'origine"; -App::$strings["calendar"] = "calendario"; -App::$strings["Edit Event"] = "Modifica l'evento"; -App::$strings["Create Event"] = "Crea un evento"; -App::$strings["Previous"] = "Precendente"; -App::$strings["Next"] = "Successivo"; -App::$strings["Export"] = "Esporta"; -App::$strings["View"] = "Guarda"; -App::$strings["Month"] = "Mese"; -App::$strings["Week"] = "Settimana"; -App::$strings["Day"] = "Giorno"; -App::$strings["Today"] = "Oggi"; -App::$strings["Event removed"] = "Evento eliminato"; -App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; -App::$strings["Bookmark added"] = "Segnalibro aggiunto"; -App::$strings["My Bookmarks"] = "I miei segnalibri"; -App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; +App::$strings["Item not found."] = "Elemento non trovato."; App::$strings["Item not found"] = "Elemento non trovato"; -App::$strings["Item is not editable"] = "L'elemento non è modificabile"; -App::$strings["Edit post"] = "Modifica post"; -App::$strings["Photos"] = "Foto"; -App::$strings["Cancel"] = "Annulla"; -App::$strings["Invalid item."] = "Elemento non valido."; -App::$strings["Channel not found."] = "Canale non trovato."; -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:"] = "Salva nella cartella:"; -App::$strings["- select -"] = "- scegli -"; -App::$strings["Save"] = "Salva"; +App::$strings["Title (optional)"] = "Titolo (facoltativo)"; +App::$strings["Edit Block"] = "Modifica il block"; +App::$strings["No channel."] = "Nessun canale."; +App::$strings["Common connections"] = "Contatti in comune"; +App::$strings["No connections in common."] = "Nessun contatto in comune."; App::$strings["Blocked"] = "Bloccati"; App::$strings["Ignored"] = "Ignorati"; App::$strings["Hidden"] = "Nascosti"; @@ -317,38 +254,51 @@ App::$strings["select a photo from your photo albums"] = "seleziona una foto dai App::$strings["Crop Image"] = "Ritaglia immagine"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; App::$strings["Done Editing"] = "Modifica terminata"; -App::$strings["webpage"] = "pagina web"; -App::$strings["block"] = "block"; -App::$strings["layout"] = "layout"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "%s elemento installato"; -App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; -App::$strings["Permissions denied."] = "Permesso negato."; -App::$strings["Import"] = "Importa"; +App::$strings["Item is not editable"] = "L'elemento non è modificabile"; +App::$strings["Edit post"] = "Modifica post"; +App::$strings["Calendar entries imported."] = "Le voci del calendario sono state importate."; +App::$strings["No calendar entries found."] = "Non sono state trovate voci del calendario."; +App::$strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; +App::$strings["Unable to generate preview."] = "Impossibile creare un'anteprima."; +App::$strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; +App::$strings["Event not found."] = "Evento non trovato."; +App::$strings["event"] = "l'evento"; +App::$strings["Edit event title"] = "Modifica il titolo dell'evento"; +App::$strings["Event title"] = "Titolo dell'evento"; +App::$strings["Required"] = "Obbligatorio"; +App::$strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; +App::$strings["Edit Category"] = "Modifica la categoria"; +App::$strings["Category"] = "Categoria"; +App::$strings["Edit start date and time"] = "Modifica data/ora di inizio"; +App::$strings["Start date and time"] = "Data e ora di inizio"; +App::$strings["Finish date and time are not known or not relevant"] = "La data e l'ora di fine non sono necessarie"; +App::$strings["Edit finish date and time"] = "Modifica data/ora di fine"; +App::$strings["Finish date and time"] = "Data e ora di fine"; +App::$strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono online ma con un certo fuso orario."; +App::$strings["Edit Description"] = "Modifica la descrizione"; +App::$strings["Description"] = "Descrizione"; +App::$strings["Edit Location"] = "Modifica il luogo"; +App::$strings["Location"] = "Posizione geografica"; +App::$strings["Share this event"] = "Condividi questo evento"; +App::$strings["Preview"] = "Anteprima"; +App::$strings["Permission settings"] = "Permessi dei tuoi contatti"; +App::$strings["Advanced Options"] = "Opzioni avanzate"; +App::$strings["Edit event"] = "Modifica l'evento"; +App::$strings["Delete event"] = "Elimina l'evento"; +App::$strings["calendar"] = "calendario"; +App::$strings["Event removed"] = "Evento eliminato"; +App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; +App::$strings["Photos"] = "Foto"; +App::$strings["Cancel"] = "Annulla"; App::$strings["This site is not a directory server"] = "Questo non è un directory server"; App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; -App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; -App::$strings["Room not found"] = "Chat non trovata"; -App::$strings["Leave Room"] = "Lascia la chat"; -App::$strings["Delete Room"] = "Elimina questa chat"; -App::$strings["I am away right now"] = "Non sono presente"; -App::$strings["I am online"] = "Sono online"; -App::$strings["Bookmark this room"] = "Aggiungi questa chat ai segnalibri"; -App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -App::$strings["Encrypt text"] = "Cifratura del messaggio"; -App::$strings["Insert web link"] = "Inserisci un indirizzo web"; -App::$strings["Feature disabled."] = "Funzionalità disattivata."; -App::$strings["New Chatroom"] = "Nuova chat"; -App::$strings["Chatroom name"] = "Nome chat"; -App::$strings["Expiration of chats (minutes)"] = "Scadenza dei messaggi della chat (minuti)"; -App::$strings["Permissions"] = "Permessi"; -App::$strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; -App::$strings["No chatrooms available"] = "Nessuna chat disponibile"; -App::$strings["Create New"] = "Crea nuova"; -App::$strings["Expiration"] = "Scadenza"; -App::$strings["min"] = "min"; +App::$strings["Save to Folder:"] = "Salva nella cartella:"; +App::$strings["- select -"] = "- scegli -"; +App::$strings["Save"] = "Salva"; App::$strings["Invalid message"] = "Messaggio non valido"; App::$strings["no results"] = "nessun risultato"; +App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; App::$strings["queued"] = "in coda"; App::$strings["posted"] = "inviato"; @@ -360,14 +310,14 @@ App::$strings["recipient not found"] = "Destinatario non trovato"; App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; App::$strings["mail delivered"] = "messaggio recapitato"; -App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; -App::$strings["Options"] = "Opzioni"; -App::$strings["Redeliver"] = "Reinvia"; App::$strings["Layout Name"] = "Nome layout"; App::$strings["Layout Description (Optional)"] = "Descrizione del layout (facoltativa)"; App::$strings["Edit Layout"] = "Modifica il layout"; App::$strings["Page link"] = "Link alla pagina"; App::$strings["Edit Webpage"] = "Modifica la pagina web"; +App::$strings["Channel added."] = "Canale aggiunto."; +App::$strings["network"] = "rete"; +App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Gruppo di canali creato."; App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali."; App::$strings["Privacy group not found."] = "Gruppo di canali non trovato."; @@ -381,33 +331,16 @@ App::$strings["Privacy group editor"] = "Editor dei gruppi di canali"; App::$strings["Members"] = "Membri"; App::$strings["All Connected Channels"] = "Tutti i canali connessi"; App::$strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; -App::$strings["App installed."] = "App installata"; -App::$strings["Malformed app."] = "L'app contiene errori"; -App::$strings["Embed code"] = "Inserisci il codice"; -App::$strings["Edit App"] = "Modifica app"; -App::$strings["Create App"] = "Crea una app"; -App::$strings["Name of app"] = "Nome app"; -App::$strings["Location (URL) of app"] = "Indirizzo (URL) della app"; -App::$strings["Photo icon URL"] = "URL icona"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; -App::$strings["Categories (optional, comma separated list)"] = "Categorie (facoltative, lista separata da virgole)"; -App::$strings["Version ID"] = "ID versione"; -App::$strings["Price of app"] = "Prezzo app"; -App::$strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; +App::$strings["Share content from Firefox to \$Projectname"] = "Condividi i contenuti su \$Projectname da Firefox"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; +App::$strings["Authorize application connection"] = "Autorizza la app"; +App::$strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:"; +App::$strings["Please login to continue."] = "Accedi al sito per continuare."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; App::$strings["Documentation Search"] = "Ricerca nella guida"; App::$strings["Help:"] = "Guida:"; App::$strings["Help"] = "Guida"; App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; -App::$strings["Item not available."] = "Elemento non disponibile."; -App::$strings["Layout updated."] = "Layout aggiornato."; -App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; -App::$strings["Layout not found."] = "Layout non trovato."; -App::$strings["Module Name:"] = "Nome del modulo:"; -App::$strings["Layout Help"] = "Guida al layout"; -App::$strings["Share content from Firefox to \$Projectname"] = "Condividi i contenuti su \$Projectname da Firefox"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; -App::$strings["network"] = "rete"; -App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Permesso negato."; App::$strings["File not found."] = "File non trovato."; App::$strings["Edit file permissions"] = "Modifica i permessi del file"; @@ -419,100 +352,8 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/incol App::$strings["Share this file"] = "Condividi questo file"; App::$strings["Show URL to this file"] = "Mostra l'URL del file"; App::$strings["Notify your contacts about this file"] = "Notifica ai contatti che hai caricato questo file"; -App::$strings["Layouts"] = "Layout"; -App::$strings["Comanche page description language help"] = "Guida di Comanche Page Description Language"; -App::$strings["Layout Description"] = "Descrizione del layout"; -App::$strings["Created"] = "Creato"; -App::$strings["Edited"] = "Modificato"; -App::$strings["Share"] = "Condividi"; -App::$strings["Download PDL file"] = "Scarica il file PDL"; -App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; -App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; -App::$strings["Invalid request."] = "Richiesta non valida."; -App::$strings["channel"] = "il canale"; -App::$strings["thing"] = "Oggetto"; -App::$strings["Channel unavailable."] = "Canale non trovato."; -App::$strings["Previous action reversed."] = "Il comando precedente è stato annullato."; -App::$strings["photo"] = "la foto"; -App::$strings["status"] = "il messaggio di stato"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non si esprime"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; -App::$strings["Action completed."] = "Comando completato."; -App::$strings["Thank you."] = "Grazie."; -App::$strings["Profile not found."] = "Profilo non trovato."; -App::$strings["Profile deleted."] = "Profilo eliminato."; -App::$strings["Profile-"] = "Profilo-"; -App::$strings["New profile created."] = "Il nuovo profilo è stato creato."; -App::$strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; -App::$strings["Profile unavailable to export."] = "Il profilo non è disponibile per l'export."; -App::$strings["Profile Name is required."] = "Il nome del profilo è obbligatorio."; -App::$strings["Marital Status"] = "Stato sentimentale"; -App::$strings["Romantic Partner"] = "Partner affettivo"; -App::$strings["Likes"] = "Mi piace"; -App::$strings["Dislikes"] = "Non mi piace"; -App::$strings["Work/Employment"] = "Lavoro/impiego"; -App::$strings["Religion"] = "Religione"; -App::$strings["Political Views"] = "Orientamento politico"; -App::$strings["Sexual Preference"] = "Preferenze sessuali"; -App::$strings["Homepage"] = "Home page"; -App::$strings["Interests"] = "Interessi"; -App::$strings["Address"] = "Indirizzo"; -App::$strings["Profile updated."] = "Profilo aggiornato."; -App::$strings["Hide your connections list from viewers of this profile"] = "Nascondi la tua lista di contatti ai visitatori di questo profilo"; -App::$strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; -App::$strings["View this profile"] = "Guarda questo profilo"; -App::$strings["Edit visibility"] = "Cambia la visibilità"; -App::$strings["Profile Tools"] = "Gestione del profilo"; -App::$strings["Change cover photo"] = "Cambia la copertina del canale"; -App::$strings["Change profile photo"] = "Cambia la foto del profilo"; -App::$strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; -App::$strings["Clone this profile"] = "Clona questo profilo"; -App::$strings["Delete this profile"] = "Elimina questo profilo"; -App::$strings["Add profile things"] = "Aggiungi oggetti al profilo"; -App::$strings["Personal"] = "Personali"; -App::$strings["Relation"] = "Relazione"; -App::$strings["Miscellaneous"] = "Altro"; -App::$strings["Import profile from file"] = "Importa il profilo da un file"; -App::$strings["Export profile to file"] = "Esporta il profilo in un file"; -App::$strings["Your gender"] = "Sesso"; -App::$strings["Marital status"] = "Stato civile"; -App::$strings["Sexual preference"] = "Preferenze sessuali"; -App::$strings["Profile name"] = "Nome del profilo"; -App::$strings["This is your default profile."] = "Questo è il tuo profilo predefinito."; -App::$strings["Your full name"] = "Il tuo nome completo"; -App::$strings["Title/Description"] = "Titolo/descrizione"; -App::$strings["Street address"] = "Indirizzo (via/piazza)"; -App::$strings["Locality/City"] = "Località"; -App::$strings["Region/State"] = "Regione/stato"; -App::$strings["Postal/Zip code"] = "CAP"; -App::$strings["Country"] = "Nazione"; -App::$strings["Who (if applicable)"] = "Con chi (se possibile)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com"; -App::$strings["Since (date)"] = "dal (data)"; -App::$strings["Tell us about yourself"] = "Raccontaci di te..."; -App::$strings["Hometown"] = "Città dove vivo"; -App::$strings["Political views"] = "Orientamento politico"; -App::$strings["Religious views"] = "Orientamento religioso"; -App::$strings["Keywords used in directory listings"] = "Parole chiavi mostrate nell'elenco dei canali"; -App::$strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; -App::$strings["Musical interests"] = "Interessi musicali"; -App::$strings["Books, literature"] = "Libri, letteratura"; -App::$strings["Television"] = "Televisione"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film, danza, cultura, intrattenimento"; -App::$strings["Hobbies/Interests"] = "Hobby/interessi"; -App::$strings["Love/Romance"] = "Amore"; -App::$strings["School/Education"] = "Scuola/educazione"; -App::$strings["Contact information and social networks"] = "Contatti e social network"; -App::$strings["My other channels"] = "I miei altri canali"; -App::$strings["Profile Image"] = "Immagine del profilo"; -App::$strings["Edit Profiles"] = "Modifica i tuoi profili"; +App::$strings["Apps"] = "App"; +App::$strings["Item not available."] = "Elemento non disponibile."; App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; App::$strings["Nothing to import."] = "Non c'è niente da importare."; App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; @@ -533,8 +374,6 @@ App::$strings["For either option, please choose whether to make this hub your ne App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa i contenuti pubblicati, se possibile (sperimentale)"; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito."; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; @@ -543,76 +382,60 @@ App::$strings["System error. Post not saved."] = "Errore di sistema. Post non sa App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; -App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; -App::$strings["Profile Photos"] = "Foto del profilo"; -App::$strings["Album not found."] = "Album non trovato."; -App::$strings["Delete Album"] = "Elimina 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"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione dall'Archivio file "; -App::$strings["Delete Photo"] = "Elimina foto"; -App::$strings["No photos selected"] = "Nessuna foto selezionata"; -App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; -App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; -App::$strings["Upload Photos"] = "Carica foto"; -App::$strings["Enter an album name"] = "Scegli il nome dell'album"; -App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; -App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; -App::$strings["Caption (optional):"] = "Titolo (facoltativo):"; -App::$strings["Description (optional):"] = "Descrizione (facoltativa):"; -App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; -App::$strings["Contact Photos"] = "Foto dei contatti"; -App::$strings["Show Newest First"] = "Prima i più recenti"; -App::$strings["Show Oldest First"] = "Prima i più vecchi"; -App::$strings["View Photo"] = "Guarda la foto"; -App::$strings["Edit Album"] = "Modifica album"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; -App::$strings["Photo not available"] = "Foto non disponibile"; -App::$strings["Use as profile photo"] = "Usa come foto del profilo"; -App::$strings["Use as cover photo"] = "Usa come copertina del canale"; -App::$strings["Private Photo"] = "Foto privata"; -App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; -App::$strings["Remove"] = "Rimuovi"; -App::$strings["Edit photo"] = "Modifica la foto"; -App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; -App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; -App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; -App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; -App::$strings["Caption"] = "Didascalia"; -App::$strings["Add a Tag"] = "Aggiungi tag"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; -App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; -App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; -App::$strings["Please wait"] = "Attendere"; -App::$strings["This is you"] = "Questo sei tu"; -App::$strings["Comment"] = "Commento"; -App::$strings["__ctx:title__ Likes"] = "Mi piace"; -App::$strings["__ctx:title__ Dislikes"] = "Non mi piace"; -App::$strings["__ctx:title__ Agree"] = "D'accordo"; -App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; -App::$strings["__ctx:title__ Abstain"] = "Astenuti"; -App::$strings["__ctx:title__ Attending"] = "Partecipano"; -App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; -App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; -App::$strings["View all"] = "Vedi tutto"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Mi piace", - 1 => "Mi piace", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Non mi piace", - 1 => "Non mi piace", -); -App::$strings["Photo Tools"] = "Gestione foto"; -App::$strings["In This Photo:"] = "In questa foto:"; -App::$strings["Map"] = "Mappa"; -App::$strings["__ctx:noun__ Likes"] = "Mi piace"; -App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; -App::$strings["Close"] = "Chiudi"; -App::$strings["View Album"] = "Guarda l'album"; -App::$strings["Recent Photos"] = "Foto recenti"; -App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; -App::$strings["Visible to:"] = "Visibile a:"; +App::$strings["Layouts"] = "Layout"; +App::$strings["Comanche page description language help"] = "Guida di Comanche Page Description Language"; +App::$strings["Layout Description"] = "Descrizione del layout"; +App::$strings["Download PDL file"] = "Scarica il file PDL"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; +App::$strings["First Name"] = "Nome"; +App::$strings["Last Name"] = "Cognome"; +App::$strings["Nickname"] = "Nick"; +App::$strings["Full Name"] = "Nome e cognome"; +App::$strings["Email"] = "Email"; +App::$strings["Profile Photo"] = "Foto del profilo"; +App::$strings["Profile Photo 16px"] = "Foto del profilo 16px"; +App::$strings["Profile Photo 32px"] = "Foto del profilo 32px"; +App::$strings["Profile Photo 48px"] = "Foto del profilo 48px"; +App::$strings["Profile Photo 64px"] = "Foto del profilo 64px"; +App::$strings["Profile Photo 80px"] = "Foto del profilo 80px"; +App::$strings["Profile Photo 128px"] = "Foto del profilo 128px"; +App::$strings["Timezone"] = "Fuso orario"; +App::$strings["Homepage URL"] = "Indirizzo home page"; +App::$strings["Language"] = "Lingua"; +App::$strings["Birth Year"] = "Anno di nascita"; +App::$strings["Birth Month"] = "Mese di nascita"; +App::$strings["Birth Day"] = "Giorno di nascita"; +App::$strings["Birthdate"] = "Data di nascita"; +App::$strings["Gender"] = "Sesso"; +App::$strings["Male"] = "Maschio"; +App::$strings["Female"] = "Femmina"; +App::$strings["webpage"] = "pagina web"; +App::$strings["block"] = "block"; +App::$strings["layout"] = "layout"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "%s elemento installato"; +App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; +App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; +App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; +App::$strings["Invalid request."] = "Richiesta non valida."; +App::$strings["channel"] = "il canale"; +App::$strings["thing"] = "Oggetto"; +App::$strings["Channel unavailable."] = "Canale non trovato."; +App::$strings["Previous action reversed."] = "Il comando precedente è stato annullato."; +App::$strings["photo"] = "la foto"; +App::$strings["status"] = "il messaggio di stato"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non si esprime"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; +App::$strings["Action completed."] = "Comando completato."; +App::$strings["Thank you."] = "Grazie."; App::$strings["Import completed"] = "Importazione completata"; App::$strings["Import Items"] = "Importa i contenuti"; App::$strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."; @@ -635,12 +458,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. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito."; App::$strings["or visit"] = "oppure visita"; App::$strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]"; +App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; +App::$strings["Visible to:"] = "Visibile a:"; App::$strings["Location not found."] = "Indirizzo non trovato."; App::$strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita."; App::$strings["Please select another location to become primary before removing the primary location."] = "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria."; App::$strings["Syncing locations"] = "Sincronizzazione tra hub"; App::$strings["No locations found."] = "Nessun indirizzo trovato."; App::$strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; +App::$strings["Address"] = "Indirizzo"; App::$strings["Primary"] = "Primario"; App::$strings["Drop"] = "Elimina"; App::$strings["Sync Now"] = "Sincronizza ora"; @@ -681,30 +507,6 @@ App::$strings["Make Default"] = "Rendi predefinito"; App::$strings["%d new messages"] = "%d nuovi messaggi"; App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; App::$strings["Delegated Channel"] = "Canale delegato"; -App::$strings["Unable to update menu."] = "Impossibile aggiornare il menù."; -App::$strings["Unable to create menu."] = "Impossibile creare il menù."; -App::$strings["Menu Name"] = "Nome del menu"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nome unico (non visibile sulla pagina) - obbligatorio"; -App::$strings["Menu Title"] = "Titolo del menu"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo"; -App::$strings["Allow Bookmarks"] = "Permetti i segnalibri"; -App::$strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù"; -App::$strings["Submit and proceed"] = "Salva e procedi"; -App::$strings["Menus"] = "Menù"; -App::$strings["Bookmarks allowed"] = "Permetti segnalibri"; -App::$strings["Delete this menu"] = "Elimina questo menù"; -App::$strings["Edit menu contents"] = "Modifica i contenuti del menù"; -App::$strings["Edit this menu"] = "Modifica questo menù"; -App::$strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; -App::$strings["Menu not found."] = "Menù non trovato."; -App::$strings["Edit Menu"] = "Modifica menù"; -App::$strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; -App::$strings["Menu name"] = "Nome del menù"; -App::$strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; -App::$strings["Menu title"] = "Titolo del menù"; -App::$strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; -App::$strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; -App::$strings["Not found."] = "Non trovato."; App::$strings["No valid account found."] = "Nessun account valido trovato."; App::$strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; App::$strings["Site Member (%s)"] = "Utente del sito (%s)"; @@ -721,9 +523,37 @@ App::$strings["Forgot your Password?"] = "Hai dimenticato la password?"; App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; App::$strings["Email Address"] = "Indirizzo email"; App::$strings["Reset"] = "Reimposta"; +App::$strings["Unable to update menu."] = "Impossibile aggiornare il menù."; +App::$strings["Unable to create menu."] = "Impossibile creare il menù."; +App::$strings["Menu Name"] = "Nome del menu"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nome unico (non visibile sulla pagina) - obbligatorio"; +App::$strings["Menu Title"] = "Titolo del menu"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo"; +App::$strings["Allow Bookmarks"] = "Permetti i segnalibri"; +App::$strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù"; +App::$strings["Submit and proceed"] = "Salva e procedi"; +App::$strings["Menus"] = "Menù"; +App::$strings["Bookmarks allowed"] = "Permetti segnalibri"; +App::$strings["Delete this menu"] = "Elimina questo menù"; +App::$strings["Edit menu contents"] = "Modifica i contenuti del menù"; +App::$strings["Edit this menu"] = "Modifica questo menù"; +App::$strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; +App::$strings["Menu not found."] = "Menù non trovato."; +App::$strings["Edit Menu"] = "Modifica menù"; +App::$strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; +App::$strings["Menu name"] = "Nome del menù"; +App::$strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; +App::$strings["Menu title"] = "Titolo del menù"; +App::$strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; +App::$strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; +App::$strings["Not found."] = "Non trovato."; App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; App::$strings["Mood"] = "Umore"; App::$strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; +App::$strings["Profile Match"] = "Profili corrispondenti"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; +App::$strings["is interested in:"] = "interessi personali:"; +App::$strings["No matches"] = "Nessun risultato"; App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; App::$strings["No such channel"] = "Canale sconosciuto"; App::$strings["forum"] = "forum"; @@ -733,13 +563,6 @@ App::$strings["Privacy group: "] = "Gruppo di canali:"; App::$strings["Invalid connection."] = "Contatto non valido."; App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; App::$strings["System Notifications"] = "Notifiche di sistema"; -App::$strings["Profile Match"] = "Profili corrispondenti"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; -App::$strings["is interested in:"] = "interessi personali:"; -App::$strings["No matches"] = "Nessun risultato"; -App::$strings["Posts and comments"] = "Post e commenti"; -App::$strings["Only posts"] = "Solo post"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; @@ -769,6 +592,203 @@ App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato." App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; App::$strings["Link text"] = "Testo del link"; +App::$strings["Name or caption"] = "Nome o titolo"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; +App::$strings["Choose a short nickname"] = "Scegli un nome breve"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"; +App::$strings["Channel role and privacy"] = "Tipo di canale e privacy"; +App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare."; +App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; +App::$strings["Create Channel"] = "Crea un canale"; +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 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."; +App::$strings["or import an existing channel from another location."] = "oppure importa un canale esistente da un altro server/hub."; +App::$strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; +App::$strings["Discard"] = "Rifiuta"; +App::$strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema"; +App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; +App::$strings["Profile Photos"] = "Foto del profilo"; +App::$strings["Album not found."] = "Album non trovato."; +App::$strings["Delete Album"] = "Elimina 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"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore rimuovili dall'Archivio file "; +App::$strings["Delete Photo"] = "Elimina foto"; +App::$strings["No photos selected"] = "Nessuna foto selezionata"; +App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; +App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; +App::$strings["Upload Photos"] = "Carica foto"; +App::$strings["Enter an album name"] = "Scegli il nome dell'album"; +App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; +App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; +App::$strings["Caption (optional):"] = "Titolo (facoltativo):"; +App::$strings["Description (optional):"] = "Descrizione (facoltativa):"; +App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; +App::$strings["Contact Photos"] = "Foto dei contatti"; +App::$strings["Show Newest First"] = "Prima i più recenti"; +App::$strings["Show Oldest First"] = "Prima i più vecchi"; +App::$strings["View Photo"] = "Guarda la foto"; +App::$strings["Edit Album"] = "Modifica album"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; +App::$strings["Photo not available"] = "Foto non disponibile"; +App::$strings["Use as profile photo"] = "Usa come foto del profilo"; +App::$strings["Use as cover photo"] = "Usa come copertina del canale"; +App::$strings["Private Photo"] = "Foto privata"; +App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; +App::$strings["Remove"] = "Rimuovi"; +App::$strings["Edit photo"] = "Modifica la foto"; +App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; +App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; +App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; +App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; +App::$strings["Caption"] = "Didascalia"; +App::$strings["Add a Tag"] = "Aggiungi tag"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; +App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; +App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; +App::$strings["Please wait"] = "Attendere"; +App::$strings["This is you"] = "Questo sei tu"; +App::$strings["Comment"] = "Commento"; +App::$strings["__ctx:title__ Likes"] = "Mi piace"; +App::$strings["__ctx:title__ Dislikes"] = "Non mi piace"; +App::$strings["__ctx:title__ Agree"] = "D'accordo"; +App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; +App::$strings["__ctx:title__ Abstain"] = "Astenuti"; +App::$strings["__ctx:title__ Attending"] = "Partecipano"; +App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; +App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; +App::$strings["View all"] = "Vedi tutto"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Mi piace", + 1 => "Mi piace", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", +); +App::$strings["Photo Tools"] = "Gestione delle foto"; +App::$strings["In This Photo:"] = "In questa foto:"; +App::$strings["Map"] = "Mappa"; +App::$strings["__ctx:noun__ Likes"] = "Mi piace"; +App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; +App::$strings["Close"] = "Chiudi"; +App::$strings["View Album"] = "Guarda l'album"; +App::$strings["Recent Photos"] = "Foto recenti"; +App::$strings["sent you a private message"] = "ti ha inviato un messaggio privato"; +App::$strings["added your channel"] = "ha aggiunto il tuo canale"; +App::$strings["g A l F d"] = "g A l d F"; +App::$strings["[today]"] = "[oggi]"; +App::$strings["posted an event"] = "ha creato un evento"; +App::$strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; +App::$strings["Post successful."] = "Inviato!"; +App::$strings["OpenID protocol error. No ID returned."] = "Errore del protocollo OpenID. Nessun ID ricevuto in risposta."; +App::$strings["Login failed."] = "Accesso fallito."; +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."] = "Questa impostazione è bloccata, richiede criteri di modifica speciali"; +App::$strings["Configuration Editor"] = "Editor di configurazione"; +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."] = "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."; +App::$strings["Layout updated."] = "Layout aggiornato."; +App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; +App::$strings["Layout not found."] = "Layout non trovato."; +App::$strings["Module Name:"] = "Nome del modulo:"; +App::$strings["Layout Help"] = "Guida al layout"; +App::$strings["Poke"] = "Poke"; +App::$strings["Poke somebody"] = "Manda un poke"; +App::$strings["Poke/Prod"] = "Poke/Prod"; +App::$strings["Poke, prod or do other things to somebody"] = "Manda un poke o altro a qualcuno"; +App::$strings["Recipient"] = "Destinatario"; +App::$strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario"; +App::$strings["Make this post private"] = "Rendi privato questo post"; +App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; +App::$strings["Profile not found."] = "Profilo non trovato."; +App::$strings["Profile deleted."] = "Profilo eliminato."; +App::$strings["Profile-"] = "Profilo-"; +App::$strings["New profile created."] = "Il nuovo profilo è stato creato."; +App::$strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; +App::$strings["Profile unavailable to export."] = "Il profilo non è disponibile per l'export."; +App::$strings["Profile Name is required."] = "Il nome del profilo è obbligatorio."; +App::$strings["Marital Status"] = "Stato sentimentale"; +App::$strings["Romantic Partner"] = "Partner affettivo"; +App::$strings["Likes"] = "Mi piace"; +App::$strings["Dislikes"] = "Non mi piace"; +App::$strings["Work/Employment"] = "Lavoro/impiego"; +App::$strings["Religion"] = "Religione"; +App::$strings["Political Views"] = "Orientamento politico"; +App::$strings["Sexual Preference"] = "Preferenze sessuali"; +App::$strings["Homepage"] = "Home page"; +App::$strings["Interests"] = "Interessi"; +App::$strings["Profile updated."] = "Profilo aggiornato."; +App::$strings["Hide your connections list from viewers of this profile"] = "Nascondi la tua lista di contatti ai visitatori di questo profilo"; +App::$strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; +App::$strings["View this profile"] = "Guarda questo profilo"; +App::$strings["Edit visibility"] = "Cambia la visibilità"; +App::$strings["Profile Tools"] = "Gestione del profilo"; +App::$strings["Change cover photo"] = "Cambia la copertina del canale"; +App::$strings["Change profile photo"] = "Cambia la foto del profilo"; +App::$strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; +App::$strings["Clone this profile"] = "Clona questo profilo"; +App::$strings["Delete this profile"] = "Elimina questo profilo"; +App::$strings["Add profile things"] = "Aggiungi oggetti al profilo"; +App::$strings["Personal"] = "Personali"; +App::$strings["Relation"] = "Relazione"; +App::$strings["Miscellaneous"] = "Altro"; +App::$strings["Import profile from file"] = "Importa il profilo da un file"; +App::$strings["Export profile to file"] = "Esporta il profilo in un file"; +App::$strings["Your gender"] = "Sesso"; +App::$strings["Marital status"] = "Stato civile"; +App::$strings["Sexual preference"] = "Preferenze sessuali"; +App::$strings["Profile name"] = "Nome del profilo"; +App::$strings["This is your default profile."] = "Questo è il tuo profilo predefinito."; +App::$strings["Your full name"] = "Il tuo nome completo"; +App::$strings["Title/Description"] = "Titolo/descrizione"; +App::$strings["Street address"] = "Indirizzo (via/piazza)"; +App::$strings["Locality/City"] = "Località"; +App::$strings["Region/State"] = "Regione/stato"; +App::$strings["Postal/Zip code"] = "CAP"; +App::$strings["Country"] = "Nazione"; +App::$strings["Who (if applicable)"] = "Con chi (se possibile)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com"; +App::$strings["Since (date)"] = "dal (data)"; +App::$strings["Tell us about yourself"] = "Raccontaci di te..."; +App::$strings["Hometown"] = "Città dove vivo"; +App::$strings["Political views"] = "Orientamento politico"; +App::$strings["Religious views"] = "Orientamento religioso"; +App::$strings["Keywords used in directory listings"] = "Parole chiavi mostrate nell'elenco dei canali"; +App::$strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; +App::$strings["Musical interests"] = "Interessi musicali"; +App::$strings["Books, literature"] = "Libri, letteratura"; +App::$strings["Television"] = "Televisione"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film, danza, cultura, intrattenimento"; +App::$strings["Hobbies/Interests"] = "Hobby/interessi"; +App::$strings["Love/Romance"] = "Amore"; +App::$strings["School/Education"] = "Scuola/educazione"; +App::$strings["Contact information and social networks"] = "Contatti e social network"; +App::$strings["My other channels"] = "I miei altri canali"; +App::$strings["Profile Image"] = "Immagine del profilo"; +App::$strings["Edit Profiles"] = "Modifica i tuoi profili"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente."; +App::$strings["Upload Profile Photo"] = "Carica la foto del profilo"; +App::$strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; +App::$strings["Profile Visibility Editor"] = "Modifica la visibilità del profilo"; +App::$strings["Profile"] = "Profilo"; +App::$strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; +App::$strings["Visible To"] = "Visibile a"; +App::$strings["Public Hubs"] = "Hub pubblici"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "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."; +App::$strings["Hub URL"] = "URL del hub"; +App::$strings["Access Type"] = "Tipo di accesso"; +App::$strings["Registration Policy"] = "Politica di registrazione"; +App::$strings["Stats"] = ""; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Valutazioni"; +App::$strings["Rate"] = "Valuta"; +App::$strings["Website:"] = "Sito web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; +App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; +App::$strings["No ratings"] = "Nessuna valutazione"; +App::$strings["Rating: "] = "Valutazione:"; +App::$strings["Website: "] = "Sito web:"; +App::$strings["Description: "] = "Descrizione:"; App::$strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; App::$strings["# Accounts"] = "# account"; App::$strings["# blocked accounts"] = "# account bloccati"; @@ -778,7 +798,7 @@ App::$strings["# Channels"] = "# canali"; App::$strings["# primary"] = "# primari"; App::$strings["# clones"] = "# cloni"; App::$strings["Message queues"] = "Coda messaggi in uscita"; -App::$strings["Your software should be updated"] = "Il tuo software necessita di un aggiornamento"; +App::$strings["Your software should be updated"] = "Il tuo software ha bisogno di essere aggiornato"; App::$strings["Administration"] = "Amministrazione"; App::$strings["Summary"] = "Riepilogo"; App::$strings["Registered accounts"] = "Account creati"; @@ -843,7 +863,7 @@ App::$strings["Import and allow access to public content pulled from other sites App::$strings["Login on Homepage"] = "Login sulla homepage"; App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti."; App::$strings["Enable context help"] = "Abilita la guida contestuale"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Quando è premuto il bottone della guida mostra quella della pagina corrente"; App::$strings["Directory Server URL"] = "URL del directory server"; App::$strings["Default directory server"] = "Directory server predefinito"; App::$strings["Proxy user"] = "Utente proxy"; @@ -869,24 +889,24 @@ App::$strings["ID"] = "ID"; App::$strings["for channel"] = "per il canale"; App::$strings["on server"] = "sul server"; App::$strings["Server"] = "Server"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:"; +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:"] = "L'impostazione consigliata è di permettere HTML non filtrato solo dai siti seguenti:"; App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato."; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non venga esplicitamente bloccato."; App::$strings["Security"] = "Sicurezza"; App::$strings["Block public"] = "Blocca pagine pubbliche"; App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; -App::$strings["Set \"Transport Security\" HTTP header"] = "Imposta il \"Transport Security\" HTTP header"; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Imposta il \"Content Security Policy\" HTTP header"; +App::$strings["Set \"Transport Security\" HTTP header"] = ""; +App::$strings["Set \"Content Security Policy\" HTTP header"] = ""; App::$strings["Allow communications only from these sites"] = "Permetti la comunicazione solo da questi siti"; App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti"; App::$strings["Block communications from these sites"] = "Blocca la comunicazione da questi siti"; App::$strings["Allow communications only from these channels"] = "Permetti la comunicazione solo da questi canali"; App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali"; App::$strings["Block communications from these channels"] = "Blocca la comunicazione da questi canali"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Permetti di incorporare contenuti solamente da siti sicuri (SSL)."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Incorpora i contenuti HTML non filtrati solo da questi domini"; -App::$strings["One site per line. By default embedded content is filtered."] = "Un sito per riga. Normalmente i contenuti incorporati sono filtrati."; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = ""; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = ""; +App::$strings["One site per line. By default embedded content is filtered."] = ""; App::$strings["Block embedded HTML from these domains"] = "Blocca i contenuti incorporati HTML da questi domini"; App::$strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito."; App::$strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."; @@ -918,7 +938,7 @@ App::$strings["Account '%s' blocked"] = "Aggiunto un blocco verso '%s'"; App::$strings["Account '%s' unblocked"] = "Rimosso il blocco verso '%s'"; App::$strings["Accounts"] = "Account"; App::$strings["select all"] = "seleziona tutti"; -App::$strings["Registrations waiting for confirm"] = "Registrazioni in attesa di conferma"; +App::$strings["Registrations waiting for confirm"] = ""; App::$strings["Request date"] = "Data richiesta"; App::$strings["No registrations."] = "Nessuna registrazione."; App::$strings["Deny"] = "Nega"; @@ -970,14 +990,14 @@ App::$strings["Maximum project version: "] = "Massima versione hubzilla"; App::$strings["Minimum PHP version: "] = "Minima versione PHP:"; App::$strings["Requires: "] = "Necessita di:"; App::$strings["Disabled - version incompatibility"] = "Disabilitato - incompatibilità di versione"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Inserisci lo URL del repository git dei plugin."; +App::$strings["Enter the public git repository URL of the plugin repo."] = ""; App::$strings["Plugin repo git URL"] = "URL git del repository del plugin"; App::$strings["Custom repo name"] = "Nome repository personalizzato"; App::$strings["(optional)"] = "(facoltativo)"; App::$strings["Download Plugin Repo"] = "Scarica il repository del plugin"; App::$strings["Install new repo"] = "Installa un nuovo repository"; App::$strings["Install"] = "Installa"; -App::$strings["Manage Repos"] = "Gestisci i repository"; +App::$strings["Manage Repos"] = "Gestisci i repsitory"; App::$strings["Installed Plugin Repositories"] = "Repository per i plugin installati"; App::$strings["Install a New Plugin Repository"] = "Installa un nuovo repository per i plugin"; App::$strings["Update"] = "Aggiorna"; @@ -992,7 +1012,7 @@ App::$strings["Logs"] = "Log"; App::$strings["Clear"] = "Pulisci"; App::$strings["Debugging"] = "Debugging"; App::$strings["Log file"] = "File di log"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Relativo alla directory base del server web. Deve essere scrivibile."; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; App::$strings["Log level"] = "Livello di log"; App::$strings["New Profile Field"] = "Nuovo campo del profilo"; App::$strings["Field nickname"] = "Nome breve del campo"; @@ -1011,91 +1031,19 @@ App::$strings["(In addition to basic fields)"] = "(In aggiunta ai campi di base) App::$strings["All available fields"] = "Tutti i campi disponibili"; App::$strings["Custom Fields"] = "Campi personalizzati"; App::$strings["Create Custom Field"] = "Aggiungi campo personalizzato"; -App::$strings["Name or caption"] = "Nome o titolo"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; -App::$strings["Choose a short nickname"] = "Scegli un nome breve"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"; -App::$strings["Channel role and privacy"] = "Tipo di canale e privacy"; -App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare."; -App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; -App::$strings["Create Channel"] = "Crea un canale"; -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 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."; -App::$strings["or import an existing channel from another location."] = "oppure importa un canale esistente da un altro server/hub."; -App::$strings["sent you a private message"] = "ti ha inviato un messaggio privato"; -App::$strings["added your channel"] = "ha aggiunto il tuo canale"; -App::$strings["g A l F d"] = "g A l d F"; -App::$strings["[today]"] = "[oggi]"; -App::$strings["posted an event"] = "ha creato un evento"; -App::$strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; -App::$strings["Discard"] = "Rifiuta"; -App::$strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema"; -App::$strings["Poke"] = "Poke"; -App::$strings["Poke somebody"] = "Manda un poke"; -App::$strings["Poke/Prod"] = "Poke/Prod"; -App::$strings["Poke, prod or do other things to somebody"] = "Manda un poke o altro a qualcuno"; -App::$strings["Recipient"] = "Destinatario"; -App::$strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario"; -App::$strings["Make this post private"] = "Rendi privato questo post"; -App::$strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; -App::$strings["Post successful."] = "Inviato!"; -App::$strings["OpenID protocol error. No ID returned."] = "Errore del protocollo OpenID. Nessun ID ricevuto in risposta."; -App::$strings["Login failed."] = "Accesso fallito."; -App::$strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -App::$strings["Profile Visibility Editor"] = "Modifica la visibilità del profilo"; -App::$strings["Profile"] = "Profilo"; -App::$strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -App::$strings["Visible To"] = "Visibile a"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Questa impostazione è bloccata, richiede criteri di modifica speciali"; -App::$strings["Configuration Editor"] = "Editor di configurazione"; -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."] = "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."; -App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; -App::$strings["Version %s"] = "Versione %s"; -App::$strings["Installed plugins/addons/apps:"] = "App e componenti installati:"; -App::$strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Questo è un hub di \$Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. "; -App::$strings["Tag: "] = "Tag: "; -App::$strings["Last background fetch: "] = "Ultima acquisizione:"; -App::$strings["Current load average: "] = "Carico medio attuale:"; -App::$strings["Running at web location"] = "In esecuzione sull'indirizzo web"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Visita hubzilla.org per maggiori informazioni su \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita"; -App::$strings["\$projectname issues"] = "Problematiche note su \$projectname"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com"; -App::$strings["Site Administrators"] = "Amministratori del sito"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."; -App::$strings["The error message was:"] = "Messaggio di errore ricevuto:"; -App::$strings["Authentication failed."] = "Autenticazione fallita."; -App::$strings["Remote Authentication"] = "Accedi tramite il tuo hub"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; -App::$strings["Authenticate"] = "Accedi"; -App::$strings["Public Hubs"] = "Hub pubblici"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "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."; -App::$strings["Hub URL"] = "URL del hub"; -App::$strings["Access Type"] = "Tipo di accesso"; -App::$strings["Registration Policy"] = "Politica di registrazione"; -App::$strings["Stats"] = "Statistiche"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Valutazioni"; -App::$strings["Rate"] = "Valuta"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente."; -App::$strings["Upload Profile Photo"] = "Carica la foto del profilo"; -App::$strings["Block Name"] = "Nome del block"; -App::$strings["Blocks"] = "Block"; -App::$strings["Block Title"] = "Titolo del block"; -App::$strings["Website:"] = "Sito web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; -App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; -App::$strings["No ratings"] = "Nessuna valutazione"; -App::$strings["Rating: "] = "Valutazione:"; -App::$strings["Website: "] = "Sito web:"; -App::$strings["Description: "] = "Descrizione:"; -App::$strings["Apps"] = "App"; -App::$strings["Title (optional)"] = "Titolo (facoltativo)"; -App::$strings["Edit Block"] = "Modifica il block"; -App::$strings["No channel."] = "Nessun canale."; -App::$strings["Common connections"] = "Contatti in comune"; -App::$strings["No connections in common."] = "Nessun contatto in comune."; +App::$strings["App installed."] = "App installata"; +App::$strings["Malformed app."] = "L'app contiene errori"; +App::$strings["Embed code"] = "Inserisci il codice"; +App::$strings["Edit App"] = "Modifica app"; +App::$strings["Create App"] = "Crea una app"; +App::$strings["Name of app"] = "Nome app"; +App::$strings["Location (URL) of app"] = "Indirizzo (URL) della app"; +App::$strings["Photo icon URL"] = "URL icona"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; +App::$strings["Categories (optional, comma separated list)"] = "Categorie (facoltative, lista separata da virgole)"; +App::$strings["Version ID"] = "ID versione"; +App::$strings["Price of app"] = "Prezzo app"; +App::$strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; App::$strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; App::$strings["Save Bookmark"] = "Salva segnalibro"; App::$strings["URL of bookmark"] = "URL del segnalibro"; @@ -1121,7 +1069,7 @@ App::$strings["no"] = "no"; App::$strings["yes"] = "sì"; App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; App::$strings["Register"] = "Registrati"; -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."] = "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."; +App::$strings["Proceed to create your first channel"] = "Continua e crea il tuo primo canale"; App::$strings["Please login."] = "Effettua l'accesso."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password."; App::$strings["Remove This Account"] = "Elimina questo account"; @@ -1138,23 +1086,17 @@ App::$strings["This channel will be completely removed from the network. "] = "Q App::$strings["Remove this channel and all its clones from the network"] = "Elimina questo canale e tutti i suoi cloni dalla rete"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni"; App::$strings["Remove Channel"] = "Elimina questo canale"; -App::$strings["Export Channel"] = "Esporta il canale"; -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."] = "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."; -App::$strings["Export Content"] = "Esporta i contenuti"; -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."] = "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."; -App::$strings["Export your posts from a given year."] = "Esporta i tuoi post a partire dall'anno scelto."; -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."] = "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."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2\$s "; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Questi contenuti potranno essere importati o ripristinati visitando %2\$s 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)"; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."; +App::$strings["The error message was:"] = "Messaggio di errore ricevuto:"; +App::$strings["Authentication failed."] = "Autenticazione fallita."; +App::$strings["Remote Authentication"] = "Accedi tramite il tuo hub"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; +App::$strings["Authenticate"] = "Accedi"; App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s"; App::$strings["Search results for: %s"] = "Risultati ricerca: %s"; App::$strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; App::$strings["Name is required"] = "Il nome è obbligatorio"; App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; -App::$strings["This channel is limited to %d tokens"] = "Questo canale è limitato a %d token"; -App::$strings["Name and Password are required."] = "Nome e password sono obbligatori."; -App::$strings["Token saved."] = "Token salvato."; App::$strings["Not valid email."] = "Email non valida."; App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; @@ -1187,12 +1129,6 @@ App::$strings["Confirm New Password"] = "Conferma la nuova password"; App::$strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password"; App::$strings["Email Address:"] = "Indirizzo email:"; App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; -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."] = "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."; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:"; -App::$strings["Guest Access Tokens"] = "Token di accesso ospite"; -App::$strings["Login Name"] = "Nome utente"; -App::$strings["Login Password"] = "Password"; -App::$strings["Expires (yyyy-mm-dd)"] = "Con scadenza (aaaa-mm-gg)"; App::$strings["Additional Features"] = "Funzionalità opzionali"; App::$strings["Connector Settings"] = "Impostazioni del connettore"; App::$strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili"; @@ -1255,11 +1191,11 @@ App::$strings["Expire other channel content after this many days"] = "Giorni dop App::$strings["0 or blank to use the website limit."] = "0 o vuoto per usare i valori predefiniti."; App::$strings["This website expires after %d days."] = "Per questo sito la scadenza è %d giorni. "; App::$strings["This website does not expire imported content."] = "I contenuti di questo sito non hanno scadenza."; -App::$strings["The website limit takes precedence if lower than your limit."] = "Il limite del webserver ha la precedenza, se minore di quello impostato da te."; +App::$strings["The website limit takes precedence if lower than your limit."] = ""; App::$strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:"; App::$strings["May reduce spam activity"] = "Serve a ridurre lo spam"; -App::$strings["Default Post and Publish Permissions"] = "Permessi predefiniti per postare e pubblicare"; -App::$strings["Use my default audience setting for the type of object published"] = "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto"; +App::$strings["Default Post and Publish Permissions"] = ""; +App::$strings["Use my default audience setting for the type of object published"] = ""; App::$strings["Channel permissions category:"] = "Categorie di permessi dei canali:"; App::$strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"; App::$strings["Useful to reduce spamming"] = "Serve e ridurre lo spam"; @@ -1334,7 +1270,7 @@ App::$strings["Please select a default timezone for your website"] = "Seleziona App::$strings["Site settings"] = "Impostazioni del hub"; App::$strings["Enable \$Projectname advanced features?"] = "Vuoi attivare le funzionalità avanzate di \$Projectname?"; App::$strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Alcune funzionalità avanzate, per quanto utili, potrebbero essere adatte solo a un pubblico tecnicamente preparato."; -App::$strings["PHP version 5.5 or greater is required."] = "E' necessario PHP in versione 5.5 o superiore."; +App::$strings["PHP version 5.5 or greater is required."] = ""; App::$strings["PHP version"] = "Versione PHP"; App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web"; 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."] = "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron."; @@ -1355,6 +1291,7 @@ App::$strings["GD graphics PHP module"] = "modulo PHP GD graphics"; App::$strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; App::$strings["mysqli or postgres PHP module"] = "modulo PHP per mysqli oppure prostgres"; App::$strings["mb_string PHP module"] = "modulo PHP mb_string"; +App::$strings["mcrypt PHP module"] = "modulo PHP mcrypt"; App::$strings["xml PHP module"] = "modulo xml PHP"; App::$strings["Apache mod_rewrite module"] = "modulo Apache mod_rewrite"; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato"; @@ -1365,6 +1302,7 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato"; App::$strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non installato."; +App::$strings["Error: mcrypt PHP module required but not installed."] = "Errore: il modulo PHP mcrypt è richiesto ma non installato."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Errore: il modulo xml PHP è richiesto per DAV ma non è installato."; 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'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo."; 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."] = "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."; @@ -1372,11 +1310,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."] = "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni."; App::$strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP."; -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."] = "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s"; +App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = ""; App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)."; 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 bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene."; App::$strings["%s is writable"] = "%s è scrivibile"; -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"] = "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"; +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"] = "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"; App::$strings["store is writable"] = "l'archivio è scrivibile"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito."; 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!"] = "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!"; @@ -1384,7 +1322,6 @@ 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."] = "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."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser."; -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."] = "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."; App::$strings["SSL certificate validation"] = "Validazione del certificato SSL"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:"; App::$strings["Url rewrite is working"] = "Url rewrite funziona correttamente"; @@ -1396,20 +1333,19 @@ App::$strings["Files: shared with me"] = "File: condivisi con me"; App::$strings["NEW"] = "NOVITÀ"; App::$strings["Remove all files"] = "Elimina tutti i file"; App::$strings["Remove this file"] = "Elimina questo file"; -App::$strings["Thing updated"] = "L'oggetto è stato aggiornato"; -App::$strings["Object store: failed"] = "Impossibile memorizzare l'oggetto."; -App::$strings["Thing added"] = "L'Oggetto è stato aggiunto"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Mostra l'oggetto"; -App::$strings["item not found."] = "non trovato."; -App::$strings["Edit Thing"] = "Modifica l'oggetto"; -App::$strings["Select a profile"] = "Scegli un profilo"; -App::$strings["Post an activity"] = "Pubblica un'attività"; -App::$strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi può vedere il profilo scelto"; -App::$strings["Name of thing e.g. something"] = "Nome dell'oggetto"; -App::$strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto (facoltativo)"; -App::$strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)"; -App::$strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; +App::$strings["Version %s"] = "Versione %s"; +App::$strings["Installed plugins/addons/apps:"] = "App e componenti installati:"; +App::$strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Questo è un hub di \$Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. "; +App::$strings["Tag: "] = "Tag: "; +App::$strings["Last background fetch: "] = "Ultima acquisizione:"; +App::$strings["Current load average: "] = "Carico medio attuale:"; +App::$strings["Running at web location"] = "In esecuzione sull'indirizzo web"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Visita hubzilla.org per maggiori informazioni su \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita"; +App::$strings["\$projectname issues"] = "Problematiche note su \$projectname"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com"; +App::$strings["Site Administrators"] = "Amministratori del sito"; App::$strings["Failed to create source. No channel selected."] = "Impossibile creare la sorgente. Nessun canale selezionato."; App::$strings["Source created."] = "Sorgente creata."; App::$strings["Source updated."] = "Sorgente aggiornata."; @@ -1421,7 +1357,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)"] = "Importa solo i contenuti che hanno queste parole (una per riga)"; App::$strings["Leave blank to import all public content"] = "Lascia vuoto per importare tutti i contenuti pubblici"; App::$strings["Channel Name"] = "Nome del canale"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = ""; App::$strings["Source not found."] = "Sorgente non trovata."; App::$strings["Edit Source"] = "Modifica la sorgente"; App::$strings["Delete Source"] = "Elimina la sorgente"; @@ -1437,38 +1373,60 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s App::$strings["Tag removed"] = "Tag rimosso"; App::$strings["Remove Item Tag"] = "Rimuovi il tag"; App::$strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -App::$strings["Webpages"] = "Pagine web"; -App::$strings["Actions"] = "Azioni"; -App::$strings["Page Link"] = "Link alla pagina"; -App::$strings["Page Title"] = "Titolo della pagina"; -App::$strings["Not found"] = "Non trovato"; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Sandbox"] = "Sandbox"; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\""; -App::$strings["Revision Comparison"] = "Confronto tra revisioni"; -App::$strings["Revert"] = "Ripristina"; -App::$strings["Enter the name of your new wiki:"] = "Nome della tua nuova pagina wiki:"; -App::$strings["Enter the name of the new page:"] = "Nome della tua nuova pagina:"; -App::$strings["Enter the new name:"] = "Nuovo nome:"; -App::$strings["Embed image from photo albums"] = "Inserisci un'immagine dall'album foto"; -App::$strings["Embed an image from your albums"] = "Inserisci un'immagine dai tuoi album"; -App::$strings["OK"] = "OK"; -App::$strings["Choose images to embed"] = "Scegli le immagini da inserire"; -App::$strings["Choose an album"] = "Scegli un album"; -App::$strings["Choose a different album..."] = "Scegli un altro album..."; -App::$strings["Error getting album list"] = "Errore nell'ottenere l'elenco degli album"; -App::$strings["Error getting photo link"] = "Errore nell'ottenere il link alla foto"; -App::$strings["Error getting album"] = "Errore nell'ottenere l'album"; +App::$strings["Thing updated"] = "L'oggetto è stato aggiornato"; +App::$strings["Object store: failed"] = "Impossibile memorizzare l'oggetto."; +App::$strings["Thing added"] = "L'Oggetto è stato aggiunto"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Mostra l'oggetto"; +App::$strings["item not found."] = "non trovato."; +App::$strings["Edit Thing"] = "Modifica l'oggetto"; +App::$strings["Select a profile"] = "Scegli un profilo"; +App::$strings["Post an activity"] = "Pubblica un'attività"; +App::$strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi può vedere il profilo scelto"; +App::$strings["Name of thing e.g. something"] = "Nome dell'oggetto"; +App::$strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto (facoltativo)"; +App::$strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)"; +App::$strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; +App::$strings["Export Channel"] = "Esporta il canale"; +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."] = "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."; +App::$strings["Export Content"] = "Esporta i contenuti"; +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."] = "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."; +App::$strings["Export your posts from a given year."] = "Esporta i tuoi post a partire dall'anno scelto."; +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."] = "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."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2\$s "; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Questi contenuti potranno essere importati o ripristinati visitando %2\$s 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)"; App::$strings["No connections."] = "Nessun contatto."; App::$strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; App::$strings["View Connections"] = "Elenco contatti"; App::$strings["Source of Item"] = "Sorgente"; -App::$strings["Authorize application connection"] = "Autorizza la app"; -App::$strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:"; -App::$strings["Please login to continue."] = "Accedi al sito per continuare."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; +App::$strings["Webpages"] = "Pagine web"; +App::$strings["Actions"] = "Azioni"; +App::$strings["Page Link"] = "Link alla pagina"; +App::$strings["Page Title"] = "Titolo della pagina"; App::$strings["Xchan Lookup"] = "Ricerca canale"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:"; +App::$strings["Site Admin"] = "Amministrazione sito"; +App::$strings["Bug Report"] = "Bug Report"; +App::$strings["View Bookmarks"] = "Vedi i segnalibri"; +App::$strings["My Chatrooms"] = "Le mie aree chat"; +App::$strings["Firefox Share"] = ""; +App::$strings["Remote Diagnostics"] = ""; +App::$strings["Suggest Channels"] = "Suggerisci canali"; +App::$strings["Login"] = "Accedi"; +App::$strings["Grid"] = "Rete"; +App::$strings["Channel Home"] = "Bacheca del canale"; +App::$strings["Events"] = "Eventi"; +App::$strings["Directory"] = "Elenchi pubblici dei canali"; +App::$strings["Mail"] = "Messaggi"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Diagnostica"; +App::$strings["Suggest"] = "Suggerisci"; +App::$strings["Random Channel"] = "Canale casuale"; +App::$strings["Invite"] = "Invita"; +App::$strings["Features"] = "Funzionalità"; +App::$strings["Post"] = "Post"; +App::$strings["Purchase"] = "Acquista"; App::$strings["Missing room name"] = "Chat senza nome"; App::$strings["Duplicate room name"] = "Il nome della chat è duplicato"; App::$strings["Invalid room specifier."] = "Il nome della chat non è valido."; @@ -1516,27 +1474,6 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Visita App::$strings["[Hubzilla:Notify]"] = "[Hubzilla]"; App::$strings["created a new post"] = "Ha creato un nuovo post"; App::$strings["commented on %s's post"] = "ha commentato il post di %s"; -App::$strings["Site Admin"] = "Amministrazione sito"; -App::$strings["Bug Report"] = "Bug Report"; -App::$strings["View Bookmarks"] = "Vedi i segnalibri"; -App::$strings["My Chatrooms"] = "Le mie aree chat"; -App::$strings["Firefox Share"] = "Firefox Share"; -App::$strings["Remote Diagnostics"] = "Diagnostica remota"; -App::$strings["Suggest Channels"] = "Suggerisci canali"; -App::$strings["Login"] = "Accedi"; -App::$strings["Grid"] = "Rete"; -App::$strings["Channel Home"] = "Bacheca del canale"; -App::$strings["Events"] = "Eventi"; -App::$strings["Directory"] = "Elenchi pubblici dei canali"; -App::$strings["Mail"] = "Messaggi"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Diagnostica"; -App::$strings["Suggest"] = "Suggerisci"; -App::$strings["Random Channel"] = "Canale casuale"; -App::$strings["Invite"] = "Invita"; -App::$strings["Features"] = "Funzionalità"; -App::$strings["Post"] = "Post"; -App::$strings["Purchase"] = "Acquista"; App::$strings["Private Message"] = "Messaggio privato"; App::$strings["Select"] = "Scegli"; App::$strings["Save to Folder"] = "Salva nella cartella"; @@ -1573,7 +1510,7 @@ App::$strings["Expires: %s"] = "Scadenza: %s"; App::$strings["Save Bookmarks"] = "Salva segnalibro"; App::$strings["Add to Calendar"] = "Aggiungi al calendario"; App::$strings["Mark all seen"] = "Marca tutto come letto"; -App::$strings["%s show all"] = "%s mostra tutto"; +App::$strings["[+] show all"] = "[+] mostra tutto"; App::$strings["Bold"] = "Grassetto"; App::$strings["Italic"] = "Corsivo"; App::$strings["Underline"] = "Sottolineato"; @@ -1582,93 +1519,9 @@ App::$strings["Code"] = "Codice"; App::$strings["Image"] = "Immagine"; App::$strings["Insert Link"] = "Collegamento"; App::$strings["Video"] = "Video"; -App::$strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite"; -App::$strings["Only me"] = "Solo io"; -App::$strings["Public"] = "Pubblico"; -App::$strings["Anybody in the \$Projectname network"] = "Tutti sulla rete \$Projectname"; -App::$strings["Any account on %s"] = "Tutti gli account su %s"; -App::$strings["Any of my connections"] = "Chiunque tra i miei contatti"; -App::$strings["Only connections I specifically allow"] = "Solo chi riceve il mio permesso"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Chiunque sia autenticato (inclusi visitatori di altre reti)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Tutti i contatti inclusi quelli non ancora approvati"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca"; -App::$strings["This is your default setting for who can view your default channel profile"] = "Impostazione predefinita di chi può vedere il profilo standard del tuo canale"; -App::$strings["This is your default setting for who can view your connections"] = "Impostazione predefinita di chi può vedere i tuoi contatti/amici"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Impostazione predefinita di chi può vedere le foto e il tuo archivio file"; -App::$strings["This is your default setting for the audience of your webpages"] = "Impostazione predefinita di chi può vedere le tue pagine web"; App::$strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare."; App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; -App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; -App::$strings["a new photo"] = "una nuova foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; -App::$strings["Photo Albums"] = "Album foto"; -App::$strings["Upload New Photos"] = "Carica nuove foto"; -App::$strings["Logout"] = "Esci"; -App::$strings["End this session"] = "Chiudi questa sessione"; -App::$strings["Home"] = "Bacheca"; -App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni"; -App::$strings["Your profile page"] = "Il tuo profilo"; -App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; -App::$strings["Edit Profile"] = "Modifica il profilo"; -App::$strings["Edit your profile"] = "Modifica il tuo profilo"; -App::$strings["Your photos"] = "Le tue foto"; -App::$strings["Your files"] = "I tuoi file"; -App::$strings["Your chatrooms"] = "Le tue chat"; -App::$strings["Bookmarks"] = "Segnalibri"; -App::$strings["Your bookmarks"] = "I tuoi segnalibri"; -App::$strings["Your webpages"] = "Le tue pagine web"; -App::$strings["Your wiki"] = "La tua wiki"; -App::$strings["Sign in"] = "Accedi"; -App::$strings["%s - click to logout"] = "%s - clicca per uscire"; -App::$strings["Remote authentication"] = "Accedi dal tuo hub"; -App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; -App::$strings["Home Page"] = "Bacheca"; -App::$strings["Create an account"] = "Crea un account"; -App::$strings["Help and documentation"] = "Guida e documentazione"; -App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; -App::$strings["Channel Directory"] = "Elenchi pubblici dei canali"; -App::$strings["Your grid"] = "La tua rete"; -App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; -App::$strings["Channel home"] = "Bacheca del canale"; -App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; -App::$strings["Notices"] = "Avvisi"; -App::$strings["Notifications"] = "Notifiche"; -App::$strings["See all notifications"] = "Vedi tutte le notifiche"; -App::$strings["Private mail"] = "Messaggi privati"; -App::$strings["See all private messages"] = "Guarda tutti i messaggi privati"; -App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; -App::$strings["Inbox"] = "In arrivo"; -App::$strings["Outbox"] = "Inviati"; -App::$strings["New Message"] = "Nuovo messaggio"; -App::$strings["Event Calendar"] = "Calendario"; -App::$strings["See all events"] = "Guarda tutti gli eventi"; -App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; -App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; -App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; -App::$strings["Admin"] = "Amministrazione"; -App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; -App::$strings["Loading..."] = "Caricamento in corso..."; -App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; -App::$strings["Please wait..."] = "Attendere..."; -App::$strings["view full size"] = "guarda nelle dimensioni reali"; -App::$strings["Administrator"] = "Amministratore"; -App::$strings["No Subject"] = "Nessun titolo"; -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"] = "Nuova pagina web"; -App::$strings["Title"] = "Titolo"; App::$strings["Categories"] = "Categorie"; App::$strings["Tags"] = "Tag"; App::$strings["Keywords"] = "Parole chiave"; @@ -1678,196 +1531,34 @@ App::$strings["want"] = "voglio"; App::$strings["wants"] = "vuole"; App::$strings["likes"] = "gli piace"; App::$strings["dislikes"] = "non gli piace"; -App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; -App::$strings["Empty name"] = "Nome vuoto"; -App::$strings["Name too long"] = "Nome troppo lungo"; -App::$strings["No account identifier"] = "Account senza identificativo"; -App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; -App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; -App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; -App::$strings["Default Profile"] = "Profilo predefinito"; -App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; -App::$strings["Create New Profile"] = "Crea un nuovo profilo"; -App::$strings["Visible to everybody"] = "Visibile a tutti"; -App::$strings["Gender:"] = "Sesso:"; -App::$strings["Status:"] = "Stato:"; -App::$strings["Homepage:"] = "Home page:"; -App::$strings["Online Now"] = "Online adesso"; -App::$strings["Like this channel"] = "Mi piace questo canale"; -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Compleanno:"; -App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; -App::$strings["Tags:"] = "Tag:"; -App::$strings["Political Views:"] = "Orientamento politico:"; -App::$strings["Religion:"] = "Religione:"; -App::$strings["Hobbies/Interests:"] = "Interessi e hobby:"; -App::$strings["Likes:"] = "Mi piace:"; -App::$strings["Dislikes:"] = "Non mi piace:"; -App::$strings["Contact information and Social Networks:"] = "Contatti e social network:"; -App::$strings["My other channels:"] = "I miei altri canali:"; -App::$strings["Musical interests:"] = "Gusti musicali:"; -App::$strings["Books, literature:"] = "Libri, letteratura:"; -App::$strings["Television:"] = "Televisione:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; -App::$strings["Love/Romance:"] = "Amore:"; -App::$strings["Work/employment:"] = "Lavoro:"; -App::$strings["School/education:"] = "Scuola:"; -App::$strings["Like this thing"] = "Mi piace"; -App::$strings["New window"] = "Nuova finestra"; -App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; -App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; -App::$strings["poked"] = "ha mandato un poke"; -App::$strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -App::$strings["Categories:"] = "Categorie:"; -App::$strings["Filed under:"] = "Classificato come:"; -App::$strings["View in context"] = "Vedi nel contesto"; -App::$strings["remove"] = "rimuovi"; -App::$strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; -App::$strings["View Source"] = "Vedi il sorgente"; -App::$strings["Follow Thread"] = "Segui la discussione"; -App::$strings["Unfollow Thread"] = "Non seguire la discussione"; -App::$strings["Activity/Posts"] = "Attività e Post"; -App::$strings["Edit Connection"] = "Modifica il contatto"; -App::$strings["Message"] = "Messaggio"; -App::$strings["%s likes this."] = "Piace a %s."; -App::$strings["%s doesn't like this."] = "Non piace a %s."; -App::$strings["%2\$d people like this."] = array( - 0 => "", - 1 => "Piace a %2\$d persone.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "Non piace a %2\$d persone.", -); -App::$strings["and"] = "e"; -App::$strings[", and %d other people"] = array( - 0 => "", - 1 => "e altre %d persone", -); -App::$strings["%s like this."] = "Piace a %s."; -App::$strings["%s don't like this."] = "Non piace a %s."; -App::$strings["Set your location"] = "La tua località"; -App::$strings["Clear browser location"] = "Rimuovi la località data dal browser"; -App::$strings["Tag term:"] = "Tag:"; -App::$strings["Where are you right now?"] = "Dove sei ora?"; -App::$strings["Page link name"] = "Nome del link alla pagina"; -App::$strings["Post as"] = "Pubblica come "; -App::$strings["Toggle voting"] = "Abilita/disabilita il voto"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)"; -App::$strings["Set publish date"] = "Data di uscita programmata"; -App::$strings["Discover"] = "Scopri"; -App::$strings["Imported public streams"] = "Contenuti pubblici importati"; -App::$strings["Commented Order"] = "Commenti recenti"; -App::$strings["Sort by Comment Date"] = "Per data del commento"; -App::$strings["Posted Order"] = "Post recenti"; -App::$strings["Sort by Post Date"] = "Per data di creazione"; -App::$strings["Posts that mention or involve you"] = "Post che ti riguardano"; -App::$strings["Activity Stream - by date"] = "Elenco attività - per data"; -App::$strings["Starred"] = "Preferiti"; -App::$strings["Favourite Posts"] = "Post preferiti"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Post marcati come spam"; -App::$strings["Status Messages and Posts"] = "Post e messaggi di stato"; -App::$strings["About"] = "Informazioni"; -App::$strings["Profile Details"] = "Dettagli del profilo"; -App::$strings["Files and Storage"] = "Archivio file"; -App::$strings["Chatrooms"] = "Chat"; -App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; -App::$strings["Manage Webpages"] = "Gestisci le pagine web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Partecipa", - 1 => "Partecipano", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Non partecipa", - 1 => "Non partecipano", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indeciso", - 1 => "Indecisi", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "D'accordo", - 1 => "D'accordo", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Non d'accordo", - 1 => "Non d'accordo", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Astenuto", - 1 => "Astenuti", -); +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +App::$strings["Starts:"] = "Inizio:"; +App::$strings["Finishes:"] = "Fine:"; +App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; +App::$strings["Not specified"] = "Non specificato"; +App::$strings["Needs Action"] = "Necessita di un intervento"; +App::$strings["Completed"] = "Completato"; +App::$strings["In Process"] = "In corso"; +App::$strings["Cancelled"] = "Annullato"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; -App::$strings["Frequently"] = "Frequentemente"; -App::$strings["Hourly"] = "Ogni ora"; -App::$strings["Twice daily"] = "Due volte al giorno"; -App::$strings["Daily"] = "Ogni giorno"; -App::$strings["Weekly"] = "Ogni settimana"; -App::$strings["Monthly"] = "Ogni mese"; -App::$strings["Currently Male"] = "Al momento maschio"; -App::$strings["Currently Female"] = "Al momento femmina"; -App::$strings["Mostly Male"] = "Prevalentemente maschio"; -App::$strings["Mostly Female"] = "Prevalentemente femmina"; -App::$strings["Transgender"] = "Transgender"; -App::$strings["Intersex"] = "Intersex"; -App::$strings["Transsexual"] = "Transessuale"; -App::$strings["Hermaphrodite"] = "Ermafrodito"; -App::$strings["Neuter"] = "Neutro"; -App::$strings["Non-specific"] = "Non specificato"; -App::$strings["Undecided"] = "Indeciso"; -App::$strings["Males"] = "Maschi"; -App::$strings["Females"] = "Femmine"; -App::$strings["Gay"] = "Gay"; -App::$strings["Lesbian"] = "Lesbica"; -App::$strings["No Preference"] = "Senza preferenza"; -App::$strings["Bisexual"] = "Bisessuale"; -App::$strings["Autosexual"] = "Autosessuale"; -App::$strings["Abstinent"] = "Astinente"; -App::$strings["Virgin"] = "Vergine"; -App::$strings["Deviant"] = "Deviato"; -App::$strings["Fetish"] = "Feticista"; -App::$strings["Oodles"] = "Un sacco"; -App::$strings["Nonsexual"] = "Asessuato"; -App::$strings["Single"] = "Single"; -App::$strings["Lonely"] = "Da solo"; -App::$strings["Available"] = "Disponibile"; -App::$strings["Unavailable"] = "Non disponibile"; -App::$strings["Has crush"] = "Ha una cotta"; -App::$strings["Infatuated"] = "Infatuato/a"; -App::$strings["Dating"] = "Disponibile a un incontro"; -App::$strings["Unfaithful"] = "Infedele"; -App::$strings["Sex Addict"] = "Sesso-dipendente"; -App::$strings["Friends/Benefits"] = "Amici con qualcosa in più"; -App::$strings["Casual"] = "Casual"; -App::$strings["Engaged"] = "Impegnato"; -App::$strings["Married"] = "Sposato/a"; -App::$strings["Imaginarily married"] = "Con matrimonio immaginario"; -App::$strings["Partners"] = "Partner"; -App::$strings["Cohabiting"] = "Convivente"; -App::$strings["Common law"] = "Matrimonio regolare"; -App::$strings["Happy"] = "Felice"; -App::$strings["Not looking"] = "Non in cerca"; -App::$strings["Swinger"] = "Scambista"; -App::$strings["Betrayed"] = "Tradito/a"; -App::$strings["Separated"] = "Separato/a"; -App::$strings["Unstable"] = "Instabile"; -App::$strings["Divorced"] = "Divorziato/a"; -App::$strings["Imaginarily divorced"] = "Sogna il divorzio"; -App::$strings["Widowed"] = "Vedovo/a"; -App::$strings["Uncertain"] = "Incerto/a"; -App::$strings["It's complicated"] = "Relazione complicata"; -App::$strings["Don't care"] = "Chi se ne frega"; -App::$strings["Ask me"] = "Chiedimelo"; -App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; -App::$strings["guest:"] = "ospite:"; -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."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +App::$strings["(Unknown)"] = "(Sconosciuto)"; +App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; +App::$strings["Visible to you only."] = "Visibile solo a te."; +App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; +App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; +App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; +App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; +App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati."; +App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; +App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; +App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; +App::$strings["Connection not found."] = "Contatto non trovato."; +App::$strings["profile photo"] = "foto del profilo"; +App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; +App::$strings["[no subject]"] = "[nessun titolo]"; +App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente."; +App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; App::$strings["prev"] = "prec"; App::$strings["first"] = "inizio"; App::$strings["last"] = "fine"; @@ -1877,6 +1568,7 @@ App::$strings["newer"] = "più nuovi"; App::$strings["No connections"] = "Nessun contatto"; App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; App::$strings["poke"] = "poke"; +App::$strings["poked"] = "ha mandato un poke"; App::$strings["ping"] = "ping"; App::$strings["pinged"] = "ha effettuato un ping"; App::$strings["prod"] = "spintone"; @@ -1939,33 +1631,396 @@ App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; App::$strings["activity"] = "l'attività"; App::$strings["Design Tools"] = "Strumenti di design"; App::$strings["Pages"] = "Pagine"; -App::$strings["Logged out."] = "Uscita effettuata."; -App::$strings["Failed authentication"] = "Autenticazione fallita"; -App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; -App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; -App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; -App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; -App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; -App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; -App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; -App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; -App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; -App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; -App::$strings["General Features"] = "Funzionalità di base"; -App::$strings["Content Expiration"] = "Scadenza"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; -App::$strings["Multiple Profiles"] = "Profili multipli"; -App::$strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; -App::$strings["Advanced Profiles"] = "Profili avanzati"; -App::$strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo"; -App::$strings["Profile Import/Export"] = "Importa/esporta il profilo"; -App::$strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi"; +App::$strings["System"] = "Sistema"; +App::$strings["New App"] = "Nuova app"; +App::$strings["Suggestions"] = "Suggerimenti"; +App::$strings["See more..."] = "Altro..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; +App::$strings["Add New Connection"] = "Aggiungi un contatto"; +App::$strings["Enter channel address"] = "Indirizzo del canale"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; +App::$strings["Notes"] = "Note"; +App::$strings["Remove term"] = "Rimuovi termine"; +App::$strings["Saved Searches"] = "Ricerche salvate"; +App::$strings["add"] = "aggiungi"; +App::$strings["Saved Folders"] = "Cartelle salvate"; +App::$strings["Everything"] = "Tutto"; +App::$strings["Archives"] = "Archivi"; +App::$strings["Refresh"] = "Aggiorna"; +App::$strings["Account settings"] = "Il tuo account"; +App::$strings["Channel settings"] = "Impostazioni del canale"; +App::$strings["Additional features"] = "Funzionalità opzionali"; +App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; +App::$strings["Display settings"] = "Aspetto"; +App::$strings["Manage locations"] = "Gestione repliche"; +App::$strings["Export channel"] = "Esporta il canale"; +App::$strings["Connected apps"] = "App connesse"; +App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; +App::$strings["Private Mail Menu"] = "Menu messaggi privati"; +App::$strings["Combined View"] = "Vista combinata"; +App::$strings["Inbox"] = "In arrivo"; +App::$strings["Outbox"] = "Inviati"; +App::$strings["New Message"] = "Nuovo messaggio"; +App::$strings["Conversations"] = "Conversazioni"; +App::$strings["Received Messages"] = "Ricevuti"; +App::$strings["Sent Messages"] = "Inviati"; +App::$strings["No messages."] = "Nessun messaggio."; +App::$strings["Delete conversation"] = "Elimina la conversazione"; +App::$strings["Events Menu"] = "Menu eventi"; +App::$strings["Day View"] = "Eventi del giorno"; +App::$strings["Week View"] = "Eventi della settimana"; +App::$strings["Month View"] = "Eventi del mese"; +App::$strings["Events Tools"] = "Gestione eventi"; +App::$strings["Export Calendar"] = "Esporta calendario"; +App::$strings["Import Calendar"] = "Importa calendario"; +App::$strings["Chatrooms"] = "Chat"; +App::$strings["Overview"] = "Riepilogo"; +App::$strings["Chat Members"] = "Partecipanti"; +App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; +App::$strings["Suggested Chatrooms"] = "Chat suggerite"; +App::$strings["photo/image"] = "foto/immagine"; +App::$strings["Click to show more"] = "Clicca per mostrare tutto"; +App::$strings["Rating Tools"] = "Valutazione"; +App::$strings["Rate Me"] = "Valutami"; +App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; +App::$strings["Forums"] = "Forum"; +App::$strings["Tasks"] = "Attività"; +App::$strings["Documentation"] = "Guida"; +App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto"; +App::$strings["For Members"] = "Per gli utenti"; +App::$strings["For Administrators"] = "Per gli amministratori"; +App::$strings["For Developers"] = "Per sviluppatori"; +App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; +App::$strings["Inspect queue"] = "Coda di attesa"; +App::$strings["DB updates"] = "Aggiornamenti al DB"; +App::$strings["Admin"] = "Amministrazione"; +App::$strings["Plugin Features"] = "Plugin"; +App::$strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; +App::$strings["Channel location missing."] = "Manca l'indirizzo del canale."; +App::$strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; +App::$strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; +App::$strings["Protocol disabled."] = "Protocollo disabilitato."; +App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; +App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; +App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; +App::$strings["Public Timeline"] = "Diario pubblico"; +App::$strings["Image/photo"] = "Immagine"; +App::$strings["Encrypted content"] = "Contenuto cifrato"; +App::$strings["Install %s element: "] = "Installa l'elemento %s:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; +App::$strings["$1 wrote:"] = "$1 ha scritto:"; +App::$strings["Directory Options"] = "Visibilità negli elenchi pubblici"; +App::$strings["Safe Mode"] = "Modalità SafeSearch"; +App::$strings["Public Forums Only"] = "Solo forum pubblici"; +App::$strings["This Website Only"] = "Solo in questo sito"; +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."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +App::$strings["Logout"] = "Esci"; +App::$strings["End this session"] = "Chiudi questa sessione"; +App::$strings["Home"] = "Bacheca"; +App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni"; +App::$strings["Your profile page"] = "Il tuo profilo"; +App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; +App::$strings["Edit Profile"] = "Modifica il profilo"; +App::$strings["Edit your profile"] = "Modifica il tuo profilo"; +App::$strings["Your photos"] = "Le tue foto"; +App::$strings["Your files"] = "I tuoi file"; +App::$strings["Your chatrooms"] = "Le tue chat"; +App::$strings["Bookmarks"] = "Segnalibri"; +App::$strings["Your bookmarks"] = "I tuoi segnalibri"; +App::$strings["Your webpages"] = "Le tue pagine web"; +App::$strings["Sign in"] = "Accedi"; +App::$strings["%s - click to logout"] = "%s - clicca per uscire"; +App::$strings["Remote authentication"] = "Accedi dal tuo hub"; +App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; +App::$strings["Home Page"] = "Bacheca"; +App::$strings["Create an account"] = "Crea un account"; +App::$strings["Help and documentation"] = "Guida e documentazione"; +App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; +App::$strings["Channel Directory"] = "Elenchi pubblici dei canali"; +App::$strings["Your grid"] = "La tua rete"; +App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; +App::$strings["Channel home"] = "Bacheca del canale"; +App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; +App::$strings["Notices"] = "Avvisi"; +App::$strings["Notifications"] = "Notifiche"; +App::$strings["See all notifications"] = "Vedi tutte le notifiche"; +App::$strings["Private mail"] = "Messaggi privati"; +App::$strings["See all private messages"] = "Guarda tutti i messaggi privati"; +App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; +App::$strings["Event Calendar"] = "Calendario"; +App::$strings["See all events"] = "Guarda tutti gli eventi"; +App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; +App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; +App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; +App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; +App::$strings["Loading..."] = "Caricamento in corso..."; +App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; +App::$strings["Please wait..."] = "Attendere..."; +App::$strings["New window"] = "Nuova finestra"; +App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; +App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; +App::$strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +App::$strings["Find Channels"] = "Ricerca canali"; +App::$strings["Enter name or interest"] = "Scrivi un nome o un interesse"; +App::$strings["Connect/Follow"] = "Aggiungi"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; +App::$strings["Random Profile"] = "Profilo casuale"; +App::$strings["Invite Friends"] = "Invita amici"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; +App::$strings["%d connection in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); +App::$strings["show more"] = "mostra tutto"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; +App::$strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +App::$strings["Categories:"] = "Categorie:"; +App::$strings["Filed under:"] = "Classificato come:"; +App::$strings["View in context"] = "Vedi nel contesto"; +App::$strings["remove"] = "rimuovi"; +App::$strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; +App::$strings["View Source"] = "Vedi il sorgente"; +App::$strings["Follow Thread"] = "Segui la discussione"; +App::$strings["Unfollow Thread"] = "Non seguire la discussione"; +App::$strings["Activity/Posts"] = "Attività e Post"; +App::$strings["Edit Connection"] = "Modifica il contatto"; +App::$strings["Message"] = "Messaggio"; +App::$strings["%s likes this."] = "Piace a %s."; +App::$strings["%s doesn't like this."] = "Non piace a %s."; +App::$strings["%2\$d people like this."] = array( + 0 => "", + 1 => "Piace a %2\$d persone.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "", + 1 => "Non piace a %2\$d persone.", +); +App::$strings["and"] = "e"; +App::$strings[", and %d other people"] = array( + 0 => "", + 1 => "e altre %d persone", +); +App::$strings["%s like this."] = "Piace a %s."; +App::$strings["%s don't like this."] = "Non piace a %s."; +App::$strings["Set your location"] = "La tua località"; +App::$strings["Clear browser location"] = "Rimuovi la località data dal browser"; +App::$strings["Tag term:"] = "Tag:"; +App::$strings["Where are you right now?"] = "Dove sei ora?"; +App::$strings["Page link name"] = "Nome del link alla pagina"; +App::$strings["Post as"] = "Pubblica come "; +App::$strings["Toggle voting"] = "Abilita/disabilita il voto"; +App::$strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)"; +App::$strings["Set publish date"] = "Data di uscita programmata"; +App::$strings["OK"] = "OK"; +App::$strings["Discover"] = "Scopri"; +App::$strings["Imported public streams"] = "Contenuti pubblici importati"; +App::$strings["Commented Order"] = "Commenti recenti"; +App::$strings["Sort by Comment Date"] = "Per data del commento"; +App::$strings["Posted Order"] = "Post recenti"; +App::$strings["Sort by Post Date"] = "Per data di creazione"; +App::$strings["Posts that mention or involve you"] = "Post che ti riguardano"; +App::$strings["Activity Stream - by date"] = "Elenco attività - per data"; +App::$strings["Starred"] = "Preferiti"; +App::$strings["Favourite Posts"] = "Post preferiti"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Post marcati come spam"; +App::$strings["Status Messages and Posts"] = "Post e messaggi di stato"; +App::$strings["About"] = "Informazioni"; +App::$strings["Profile Details"] = "Dettagli del profilo"; +App::$strings["Photo Albums"] = "Album foto"; +App::$strings["Files and Storage"] = "Archivio file"; +App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; +App::$strings["Manage Webpages"] = "Gestisci le pagine web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Partecipa", + 1 => "Partecipano", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Non partecipa", + 1 => "Non partecipano", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indeciso", + 1 => "Indecisi", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "D'accordo", + 1 => "D'accordo", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Non d'accordo", + 1 => "Non d'accordo", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Astenuto", + 1 => "Astenuti", +); +App::$strings["Frequently"] = "Frequentemente"; +App::$strings["Hourly"] = "Ogni ora"; +App::$strings["Twice daily"] = "Due volte al giorno"; +App::$strings["Daily"] = "Ogni giorno"; +App::$strings["Weekly"] = "Ogni settimana"; +App::$strings["Monthly"] = "Ogni mese"; +App::$strings["Currently Male"] = "Al momento maschio"; +App::$strings["Currently Female"] = "Al momento femmina"; +App::$strings["Mostly Male"] = "Prevalentemente maschio"; +App::$strings["Mostly Female"] = "Prevalentemente femmina"; +App::$strings["Transgender"] = "Transgender"; +App::$strings["Intersex"] = "Intersex"; +App::$strings["Transsexual"] = "Transessuale"; +App::$strings["Hermaphrodite"] = "Ermafrodito"; +App::$strings["Neuter"] = "Neutro"; +App::$strings["Non-specific"] = "Non specificato"; +App::$strings["Other"] = "Altro"; +App::$strings["Undecided"] = "Indeciso"; +App::$strings["Males"] = "Maschi"; +App::$strings["Females"] = "Femmine"; +App::$strings["Gay"] = "Gay"; +App::$strings["Lesbian"] = "Lesbica"; +App::$strings["No Preference"] = "Senza preferenza"; +App::$strings["Bisexual"] = "Bisessuale"; +App::$strings["Autosexual"] = "Autosessuale"; +App::$strings["Abstinent"] = "Astinente"; +App::$strings["Virgin"] = "Vergine"; +App::$strings["Deviant"] = "Deviato"; +App::$strings["Fetish"] = "Feticista"; +App::$strings["Oodles"] = "Un sacco"; +App::$strings["Nonsexual"] = "Asessuato"; +App::$strings["Single"] = "Single"; +App::$strings["Lonely"] = "Da solo"; +App::$strings["Available"] = "Disponibile"; +App::$strings["Unavailable"] = "Non disponibile"; +App::$strings["Has crush"] = "Ha una cotta"; +App::$strings["Infatuated"] = "Infatuato/a"; +App::$strings["Dating"] = "Disponibile a un incontro"; +App::$strings["Unfaithful"] = "Infedele"; +App::$strings["Sex Addict"] = "Sesso-dipendente"; +App::$strings["Friends/Benefits"] = "Amici con qualcosa in più"; +App::$strings["Casual"] = "Casual"; +App::$strings["Engaged"] = "Impegnato"; +App::$strings["Married"] = "Sposato/a"; +App::$strings["Imaginarily married"] = "Con matrimonio immaginario"; +App::$strings["Partners"] = "Partner"; +App::$strings["Cohabiting"] = "Convivente"; +App::$strings["Common law"] = "Matrimonio regolare"; +App::$strings["Happy"] = "Felice"; +App::$strings["Not looking"] = "Non in cerca"; +App::$strings["Swinger"] = "Scambista"; +App::$strings["Betrayed"] = "Tradito/a"; +App::$strings["Separated"] = "Separato/a"; +App::$strings["Unstable"] = "Instabile"; +App::$strings["Divorced"] = "Divorziato/a"; +App::$strings["Imaginarily divorced"] = "Sogna il divorzio"; +App::$strings["Widowed"] = "Vedovo/a"; +App::$strings["Uncertain"] = "Incerto/a"; +App::$strings["It's complicated"] = "Relazione complicata"; +App::$strings["Don't care"] = "Chi se ne frega"; +App::$strings["Ask me"] = "Chiedimelo"; +App::$strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite"; +App::$strings["Only me"] = "Solo io"; +App::$strings["Public"] = "Pubblico"; +App::$strings["Anybody in the \$Projectname network"] = "Tutti sulla rete \$Projectname"; +App::$strings["Any account on %s"] = "Tutti gli account su %s"; +App::$strings["Any of my connections"] = "Chiunque tra i miei contatti"; +App::$strings["Only connections I specifically allow"] = "Solo chi riceve il mio permesso"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Chiunque sia autenticato (inclusi visitatori di altre reti)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Tutti i contatti inclusi quelli non ancora approvati"; +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"] = "Email non valida"; +App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; +App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; +App::$strings["An invitation is required."] = "È necessario un invito."; +App::$strings["Invitation could not be verified."] = "L'invito non può essere verificato."; +App::$strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +App::$strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; +App::$strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; +App::$strings["Registration request at %s"] = "Richiesta di registrazione su %s"; +App::$strings["Administrator"] = "Amministratore"; +App::$strings["your registration password"] = "la password di registrazione"; +App::$strings["Registration details for %s"] = "Dettagli della registrazione di %s"; +App::$strings["Account approved."] = "Account approvato."; +App::$strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +App::$strings["Account verified. Please login."] = "Registrazione verificata. Adesso puoi effettuare login."; +App::$strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; +App::$strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +App::$strings["Item was not found."] = "Elemento non trovato."; +App::$strings["No source file."] = "Nessun file di origine."; +App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; +App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; +App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; +App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; +App::$strings["Path not available."] = "Percorso non disponibile."; +App::$strings["Empty pathname"] = "Il percorso del file è vuoto"; +App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; +App::$strings["Path not found."] = "Percorso del file non trovato."; +App::$strings["mkdir failed."] = "mkdir fallito."; +App::$strings["database storage failed."] = "scrittura su database fallita."; +App::$strings["Empty path"] = "La posizione è vuota"; +App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; +App::$strings["Empty name"] = "Nome vuoto"; +App::$strings["Name too long"] = "Nome troppo lungo"; +App::$strings["No account identifier"] = "Account senza identificativo"; +App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; +App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; +App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; +App::$strings["Default Profile"] = "Profilo predefinito"; +App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; +App::$strings["Create New Profile"] = "Crea un nuovo profilo"; +App::$strings["Visible to everybody"] = "Visibile a tutti"; +App::$strings["Gender:"] = "Sesso:"; +App::$strings["Status:"] = "Stato:"; +App::$strings["Homepage:"] = "Home page:"; +App::$strings["Online Now"] = "Online adesso"; +App::$strings["Like this channel"] = "Mi piace questo canale"; +App::$strings["j F, Y"] = "j F Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Compleanno:"; +App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; +App::$strings["Tags:"] = "Tag:"; +App::$strings["Political Views:"] = "Orientamento politico:"; +App::$strings["Religion:"] = "Religione:"; +App::$strings["Hobbies/Interests:"] = "Interessi e hobby:"; +App::$strings["Likes:"] = "Mi piace:"; +App::$strings["Dislikes:"] = "Non mi piace:"; +App::$strings["Contact information and Social Networks:"] = "Contatti e social network:"; +App::$strings["My other channels:"] = "I miei altri canali:"; +App::$strings["Musical interests:"] = "Gusti musicali:"; +App::$strings["Books, literature:"] = "Libri, letteratura:"; +App::$strings["Television:"] = "Televisione:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; +App::$strings["Love/Romance:"] = "Amore:"; +App::$strings["Work/employment:"] = "Lavoro:"; +App::$strings["School/education:"] = "Scuola:"; +App::$strings["Like this thing"] = "Mi piace"; +App::$strings["General Features"] = "Funzionalità di base"; +App::$strings["Content Expiration"] = "Scadenza"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; +App::$strings["Multiple Profiles"] = "Profili multipli"; +App::$strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; +App::$strings["Advanced Profiles"] = "Profili avanzati"; +App::$strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo"; +App::$strings["Profile Import/Export"] = "Importa/esporta il profilo"; +App::$strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi"; App::$strings["Web Pages"] = "Pagine web"; App::$strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale"; -App::$strings["Provide a wiki for your channel"] = "Fornisce una wiki per il tuo canale"; App::$strings["Hide Rating"] = "Nascondi le valutazioni"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Nascondi i bottoni delle valutazioni sul tuo canale e sul profilo. Nota: le persone potranno comunque esprimere una valutazione altrove."; App::$strings["Private Notes"] = "Note private"; @@ -1999,175 +2054,87 @@ App::$strings["Search by Date"] = "Ricerca per data"; App::$strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date"; App::$strings["Privacy Groups"] = "Gruppi di canali"; App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; -App::$strings["Saved Searches"] = "Ricerche salvate"; App::$strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; App::$strings["Network Personal Tab"] = "Attività personale"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; -App::$strings["Network New Tab"] = "Contenuti nuovi"; -App::$strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; -App::$strings["Affinity Tool"] = "Filtro per affinità"; -App::$strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; -App::$strings["Connection Filtering"] = "Filtro sui contatti"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; -App::$strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti"; -App::$strings["Post/Comment Tools"] = "Gestione post e commenti"; -App::$strings["Community Tagging"] = "Tag della comunità"; -App::$strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti"; -App::$strings["Post Categories"] = "Categorie dei post"; -App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; -App::$strings["Emoji Reactions"] = "Reazioni emoji"; -App::$strings["Add emoji reaction ability to posts"] = "Permetti le reazioni emoji ai post"; -App::$strings["Saved Folders"] = "Cartelle salvate"; -App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; -App::$strings["Dislike Posts"] = "Non mi piace"; -App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; -App::$strings["Star Posts"] = "Post con stella"; -App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; -App::$strings["Tag Cloud"] = "Nuvola di tag"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "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."; -App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali"; -App::$strings["edit"] = "modifica"; -App::$strings["Edit group"] = "Modifica il gruppo"; -App::$strings["Add privacy group"] = "Crea un gruppo di canali"; -App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo"; -App::$strings["add"] = "aggiungi"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -App::$strings["Starts:"] = "Inizio:"; -App::$strings["Finishes:"] = "Fine:"; -App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; -App::$strings["Not specified"] = "Non specificato"; -App::$strings["Needs Action"] = "Necessita di un intervento"; -App::$strings["Completed"] = "Completato"; -App::$strings["In Process"] = "In corso"; -App::$strings["Cancelled"] = "Annullato"; -App::$strings["Not a valid email address"] = "Email non valida"; -App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; -App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; -App::$strings["An invitation is required."] = "È necessario un invito."; -App::$strings["Invitation could not be verified."] = "L'invito non può essere verificato."; -App::$strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -App::$strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; -App::$strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; -App::$strings["Registration request at %s"] = "Richiesta di registrazione su %s"; -App::$strings["your registration password"] = "la password di registrazione"; -App::$strings["Registration details for %s"] = "Dettagli della registrazione di %s"; -App::$strings["Account approved."] = "Account approvato."; -App::$strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -App::$strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; -App::$strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; -App::$strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; -App::$strings["Channel location missing."] = "Manca l'indirizzo del canale."; -App::$strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; -App::$strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; -App::$strings["Protocol disabled."] = "Protocollo disabilitato."; -App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; -App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; -App::$strings["Item was not found."] = "Elemento non trovato."; -App::$strings["No source file."] = "Nessun file di origine."; -App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; -App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; -App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; -App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; -App::$strings["Path not available."] = "Percorso non disponibile."; -App::$strings["Empty pathname"] = "Il percorso del file è vuoto"; -App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; -App::$strings["Path not found."] = "Percorso del file non trovato."; -App::$strings["mkdir failed."] = "mkdir fallito."; -App::$strings["database storage failed."] = "scrittura su database fallita."; -App::$strings["Empty path"] = "La posizione è vuota"; -App::$strings["Image/photo"] = "Immagine"; -App::$strings["Encrypted content"] = "Contenuto cifrato"; -App::$strings["Install %s element: "] = "Installa l'elemento %s:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; -App::$strings["$1 wrote:"] = "$1 ha scritto:"; -App::$strings["(Unknown)"] = "(Sconosciuto)"; -App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; -App::$strings["Visible to you only."] = "Visibile solo a te."; -App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; -App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; -App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; -App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; -App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati."; -App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; -App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; -App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; -App::$strings["Connection not found."] = "Contatto non trovato."; -App::$strings["profile photo"] = "foto del profilo"; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; +App::$strings["Network New Tab"] = "Contenuti nuovi"; +App::$strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; +App::$strings["Affinity Tool"] = "Filtro per affinità"; +App::$strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; +App::$strings["Connection Filtering"] = "Filtro sui contatti"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; +App::$strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti"; +App::$strings["Post/Comment Tools"] = "Gestione post e commenti"; +App::$strings["Community Tagging"] = "Tag della comunità"; +App::$strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti"; +App::$strings["Post Categories"] = "Categorie dei post"; +App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; +App::$strings["Emoji Reactions"] = ""; +App::$strings["Add emoji reaction ability to posts"] = ""; +App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; +App::$strings["Dislike Posts"] = "Non mi piace"; +App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; +App::$strings["Star Posts"] = "Post con stella"; +App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; +App::$strings["Tag Cloud"] = "Nuvola di tag"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; App::$strings["Embedded content"] = "Contenuti incorporati"; App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; -App::$strings["System"] = "Sistema"; -App::$strings["New App"] = "Nuova app"; -App::$strings["Suggestions"] = "Suggerimenti"; -App::$strings["See more..."] = "Altro..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; -App::$strings["Add New Connection"] = "Aggiungi un contatto"; -App::$strings["Enter channel address"] = "Indirizzo del canale"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; -App::$strings["Notes"] = "Note"; -App::$strings["Remove term"] = "Rimuovi termine"; -App::$strings["Everything"] = "Tutto"; -App::$strings["Archives"] = "Archivi"; -App::$strings["Refresh"] = "Aggiorna"; -App::$strings["Account settings"] = "Il tuo account"; -App::$strings["Channel settings"] = "Impostazioni del canale"; -App::$strings["Additional features"] = "Funzionalità opzionali"; -App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; -App::$strings["Display settings"] = "Aspetto"; -App::$strings["Manage locations"] = "Gestione repliche"; -App::$strings["Export channel"] = "Esporta il canale"; -App::$strings["Connected apps"] = "App connesse"; -App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; -App::$strings["Private Mail Menu"] = "Menu messaggi privati"; -App::$strings["Combined View"] = "Vista combinata"; -App::$strings["Conversations"] = "Conversazioni"; -App::$strings["Received Messages"] = "Ricevuti"; -App::$strings["Sent Messages"] = "Inviati"; -App::$strings["No messages."] = "Nessun messaggio."; -App::$strings["Delete conversation"] = "Elimina la conversazione"; -App::$strings["Events Tools"] = "Gestione eventi"; -App::$strings["Export Calendar"] = "Esporta calendario"; -App::$strings["Import Calendar"] = "Importa calendario"; -App::$strings["Overview"] = "Riepilogo"; -App::$strings["Chat Members"] = "Partecipanti"; -App::$strings["Wiki List"] = "Elenco wiki"; -App::$strings["Wiki Pages"] = "Pagine wiki"; -App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; -App::$strings["Suggested Chatrooms"] = "Chat suggerite"; -App::$strings["photo/image"] = "foto/immagine"; -App::$strings["Click to show more"] = "Clicca per mostrare tutto"; -App::$strings["Rating Tools"] = "Valutazione"; -App::$strings["Rate Me"] = "Valutami"; -App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; -App::$strings["Forums"] = "Forum"; -App::$strings["Tasks"] = "Attività"; -App::$strings["Documentation"] = "Guida"; -App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto"; -App::$strings["For Members"] = "Per gli utenti"; -App::$strings["For Administrators"] = "Per gli amministratori"; -App::$strings["For Developers"] = "Per sviluppatori"; -App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; -App::$strings["Inspect queue"] = "Coda di attesa"; -App::$strings["DB updates"] = "Aggiornamenti al DB"; -App::$strings["Plugin Features"] = "Plugin"; -App::$strings[" and "] = "e"; -App::$strings["public profile"] = "profilo pubblico"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; -App::$strings["Attachments:"] = "Allegati:"; -App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; +App::$strings["Who can see this?"] = "Chi può vederlo?"; +App::$strings["Custom selection"] = "Selezione personalizzata"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = ""; +App::$strings["Show"] = "Mostra"; +App::$strings["Don't show"] = "Non mostrare"; +App::$strings["Other networks and post services"] = "Invio ad altre reti o a siti esterni"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = ""; +App::$strings["Logged out."] = "Uscita effettuata."; +App::$strings["Failed authentication"] = "Autenticazione fallita"; +App::$strings["Birthday"] = "Compleanno"; +App::$strings["Age: "] = "Età:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG"; +App::$strings["never"] = "mai"; +App::$strings["less than a second ago"] = "meno di un secondo fa"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s fa"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "anno", + 1 => "anni", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "mese", + 1 => "mesi", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "settimana", + 1 => "settimane", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "giorno", + 1 => "giorni", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "ora", + 1 => "ore", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuto", + 1 => "minuti", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "secondo", + 1 => "secondi", +); +App::$strings["%1\$s's birthday"] = "Compleanno di %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "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."; +App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali"; +App::$strings["edit"] = "modifica"; +App::$strings["Edit group"] = "Modifica il gruppo"; +App::$strings["Add privacy group"] = "Crea un gruppo di canali"; +App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo"; App::$strings["Delete this item?"] = "Eliminare questo elemento?"; -App::$strings["%s show less"] = "%s riduci"; -App::$strings["%s expand"] = "%s mostra tutto"; -App::$strings["%s collapse"] = "%s minimizza"; +App::$strings["[-] show less"] = "[-] riduci"; +App::$strings["[+] expand"] = "[+] mostra tutto"; +App::$strings["[-] collapse"] = "[-] riduci"; App::$strings["Password too short"] = "Password troppo corta"; App::$strings["Passwords do not match"] = "Le password non corrispondono"; App::$strings["everybody"] = "tutti"; @@ -2222,78 +2189,72 @@ App::$strings["__ctx:calendar__ month"] = "mese"; App::$strings["__ctx:calendar__ week"] = "settimana"; App::$strings["__ctx:calendar__ day"] = "giorno"; App::$strings["__ctx:calendar__ All day"] = "Tutto il giorno"; -App::$strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -App::$strings["Find Channels"] = "Ricerca canali"; -App::$strings["Enter name or interest"] = "Scrivi un nome o un interesse"; -App::$strings["Connect/Follow"] = "Aggiungi"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; -App::$strings["Random Profile"] = "Profilo casuale"; -App::$strings["Invite Friends"] = "Invita amici"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; -App::$strings["%d connection in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -App::$strings["show more"] = "mostra tutto"; -App::$strings["Directory Options"] = "Visibilità negli elenchi pubblici"; -App::$strings["Safe Mode"] = "Modalità SafeSearch"; -App::$strings["Public Forums Only"] = "Solo forum pubblici"; -App::$strings["This Website Only"] = "Solo in questo sito"; -App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; -App::$strings["[no subject]"] = "[nessun titolo]"; -App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente."; -App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; -App::$strings["Who can see this?"] = "Chi può vederlo?"; -App::$strings["Custom selection"] = "Selezione personalizzata"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"."; -App::$strings["Show"] = "Mostra"; -App::$strings["Don't show"] = "Non mostrare"; -App::$strings["Other networks and post services"] = "Invio ad altre reti o a siti esterni"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
Questi permessi definiscono chi ha diritto di vedere il post."; -App::$strings["Birthday"] = "Compleanno"; -App::$strings["Age: "] = "Età:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG"; -App::$strings["never"] = "mai"; -App::$strings["less than a second ago"] = "meno di un secondo fa"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s fa"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "anno", - 1 => "anni", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "mese", - 1 => "mesi", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "settimana", - 1 => "settimane", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "giorno", - 1 => "giorni", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "ora", - 1 => "ore", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuto", - 1 => "minuti", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "secondo", - 1 => "secondi", -); -App::$strings["%1\$s's birthday"] = "Compleanno di %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s"; -App::$strings["Public Timeline"] = "Diario pubblico"; +App::$strings["view full size"] = "guarda nelle dimensioni reali"; +App::$strings["No Subject"] = "Nessun titolo"; +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"] = "L'immagine supera il limite massimo di %lu bytes"; +App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; +App::$strings["a new photo"] = "una nuova foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; +App::$strings["Upload New Photos"] = "Carica nuove foto"; App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; +App::$strings["New Page"] = "Nuova pagina web"; +App::$strings["Title"] = "Titolo"; +App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; +App::$strings["Can view my default channel profile"] = "Può vedere il profilo predefinito del canale"; +App::$strings["Can view my connections"] = "Può vedere i miei contatti"; +App::$strings["Can view my file storage and photos"] = "Può vedere il mio archivio file e foto"; +App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; +App::$strings["Can send me their channel stream and posts"] = "È tra i canali che seguo"; +App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; +App::$strings["Can comment on or like my posts"] = "Può commentare o aggiungere \"mi piace\" ai miei post"; +App::$strings["Can send me private mail messages"] = "Può inviarmi messaggi privati"; +App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; +App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; +App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; +App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; +App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; +App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; +App::$strings["Can source my public posts in derived channels"] = "Può usare i miei post pubblici per creare canali derivati"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; +App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; +App::$strings["Social Networking"] = "Social network"; +App::$strings["Social - Mostly Public"] = "Social - Prevalentemente pubblico"; +App::$strings["Social - Restricted"] = "Social - Con restrizioni"; +App::$strings["Social - Private"] = "Social - Privato"; +App::$strings["Community Forum"] = "Forum di discussione"; +App::$strings["Forum - Mostly Public"] = "Social - Prevalentemente pubblico"; +App::$strings["Forum - Restricted"] = "Forum - Con restrizioni"; +App::$strings["Forum - Private"] = "Forum - Privato"; +App::$strings["Feed Republish"] = "Aggregatore di feed esterni"; +App::$strings["Feed - Mostly Public"] = "Feed - Prevalentemente pubblico"; +App::$strings["Feed - Restricted"] = "Feed - Con restrizioni"; +App::$strings["Special Purpose"] = "Per finalità speciali"; +App::$strings["Special - Celebrity/Soapbox"] = "Speciale - Pagina per fan"; +App::$strings["Special - Group Repository"] = "Speciale - Repository di gruppo"; +App::$strings["Custom/Expert Mode"] = "Personalizzazione per esperti"; +App::$strings[" and "] = "e"; +App::$strings["public profile"] = "profilo pubblico"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; +App::$strings["Attachments:"] = "Allegati:"; +App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; App::$strings["Focus (Hubzilla default)"] = "Focus (predefinito)"; App::$strings["Theme settings"] = "Impostazioni del tema"; App::$strings["Select scheme"] = "Scegli uno schema"; @@ -2333,7 +2294,6 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore."; App::$strings["Update Error at %s"] = "Errore di aggiornamento su %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Registrati per accedere ai servizi e alle applicazioni di Hubzilla"; -App::$strings["Login/Email"] = "Login/Email"; App::$strings["Password"] = "Password"; App::$strings["Remember me"] = "Resta connesso"; App::$strings["Forgot your password?"] = "Hai dimenticato la password?"; diff --git a/view/js/main.js b/view/js/main.js index a3fade0ea..a288f98f5 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/js/mod_cloud.js b/view/js/mod_cloud.js deleted file mode 100644 index f7f9092c0..000000000 --- a/view/js/mod_cloud.js +++ /dev/null @@ -1,190 +0,0 @@ -/** - * JavaScript for mod/cloud - */ - -$(document).ready(function () { - // call initialization file - if (window.File && window.FileList && window.FileReader) { - UploadInit(); - } -}); - -// -// initialize -function UploadInit() { - - var fileselect = $("#files-upload"); - var filedrag = $("#cloud-drag-area"); - var submit = $("#upload-submit"); - - // is XHR2 available? - var xhr = new XMLHttpRequest(); - if (xhr.upload) { - - // file select - fileselect.on("change", UploadFileSelectHandler); - - // file submit - submit.on("click", fileselect, UploadFileSelectHandler); - - // file drop - filedrag.on("dragover", DragDropUploadFileHover); - filedrag.on("dragleave", DragDropUploadFileHover); - filedrag.on("drop", DragDropUploadFileSelectHandler); - } - - window.filesToUpload = 0; - window.fileUploadsCompleted = 0; -} - -// file drag hover -function DragDropUploadFileHover(e) { - e.stopPropagation(); - e.preventDefault(); - e.currentTarget.className = (e.type == "dragover" ? "hover" : ""); -} - -// file selection via drag/drop -function DragDropUploadFileSelectHandler(e) { - // cancel event and hover styling - DragDropUploadFileHover(e); - - // fetch FileList object - var files = e.target.files || e.originalEvent.dataTransfer.files; - - $('.new-upload').remove(); - - // process all File objects - for (var i = 0, f; f = files[i]; i++) { - prepareHtml(f, i); - UploadFile(f, i); - } -} - -// file selection via input -function UploadFileSelectHandler(e) { - // fetch FileList object - if(e.type === 'click') { - e.preventDefault(); - var files = e.data[0].files; - } - else { - var files = e.target.files; - } - - $('.new-upload').remove(); - - // process all File objects - for (var i = 0, f; f = files[i]; i++) { - prepareHtml(f, i); - if(e.type === 'click') - UploadFile(f, i); - } -} - -function prepareHtml(f, i) { - $("#cloud-index tr:nth-child(2)").after( - '' + - '' + - '' + f.name + '' + - '' + - '' + formatSizeUnits(f.size) + '' + - '' - ); -} - -function formatSizeUnits(bytes){ - if (bytes>=1000000000) {bytes=(bytes/1000000000).toFixed(2)+' GB';} - else if (bytes>=1000000) {bytes=(bytes/1000000).toFixed(2)+' MB';} - else if (bytes>=1000) {bytes=(bytes/1000).toFixed(2)+' KB';} - else if (bytes>1) {bytes=bytes+' bytes';} - else if (bytes==1) {bytes=bytes+' byte';} - else {bytes='0 byte';} - return bytes; -} - -// this is basically a js port of include/text.php getIconFromType() function -function getIconFromType(type) { - var map = { - //Common file - '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/epub+zip': 'fa-book', - //Spreadsheet - 'application/vnd.oasis.opendocument.spreadsheet': 'fa-file-excel-o', - 'application/vnd.ms-excel': 'fa-file-excel-o', - //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', - //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', - //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' - }; - - var iconFromType = 'fa-file-o'; - - if (type in map) { - iconFromType = map[type]; - } - - return iconFromType; -} - -// upload files -function UploadFile(file, idx) { - - window.filesToUpload = window.filesToUpload + 1; - - var xhr = new XMLHttpRequest(); - - xhr.withCredentials = true; // Include the SESSION cookie info for authentication - - (xhr.upload || xhr).addEventListener('progress', function (e) { - var done = e.position || e.loaded; - var total = e.totalSize || e.total; - // Dynamically update the percentage complete displayed in the file upload list - $('#upload-progress-' + idx).html(Math.round(done / total * 100) + '%'); - $('#new-upload-' + idx).css('background-size', Math.round(done / total * 100) + '%'); - }); - - xhr.addEventListener('load', function (e) { - - //console.log('xhr upload complete', e); - window.fileUploadsCompleted = window.fileUploadsCompleted + 1; - - // When all the uploads have completed, refresh the page - if (window.filesToUpload > 0 && window.fileUploadsCompleted === window.filesToUpload) { - window.fileUploadsCompleted = window.filesToUpload = 0; - - // After uploads complete, refresh browser window to display new files - window.location.href = window.location.href; - } - }); - - // POST to the entire cloud path - xhr.open('post', window.location.pathname, true); - - var data = new FormData(document.getElementById("ajax-upload-files")); - - data.append('file', file); - - xhr.send(data); -} diff --git a/view/nb-no/hmessages.po b/view/nb-no/hmessages.po index 7165d2647..bcb926d90 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-07-22 00:02-0700\n" -"PO-Revision-Date: 2016-07-25 08:54+0000\n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" +"PO-Revision-Date: 2016-06-10 09:14+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/Friendica/red-matrix/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -18,156 +18,11 @@ 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:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 msgid "Collection" msgstr "Samling" @@ -191,17 +46,16 @@ msgstr "Tidsplan innboks" msgid "Schedule Outbox" msgstr "Tidsplan utboks" -#: ../../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 "Ukjent" #: ../../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 "Filer" @@ -214,23 +68,22 @@ msgid "Shared" msgstr "Delt" #: ../../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 "Lag" #: ../../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 "Last opp" #: ../../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 "Navn" @@ -240,7 +93,7 @@ msgid "Type" msgstr "Type" #: ../../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 "Størrelse" @@ -249,32 +102,34 @@ msgstr "Størrelse" msgid "Last Modified" msgstr "Sist endret" -#: ../../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 "Endre" -#: ../../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 "Slett" @@ -300,73 +155,74 @@ msgstr "Lag ny mappe" msgid "Upload file" msgstr "Last opp fil" -#: ../../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 "Tillatelse avvist" -#: ../../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 "Tillatelse avslått." @@ -374,9 +230,9 @@ msgstr "Tillatelse avslått." msgid "Not Found" msgstr "Ikke funnet" -#: ../../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 "Siden ikke funnet." @@ -392,13 +248,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/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 "Forespurt profil er ikke tilgjengelig." @@ -406,366 +262,615 @@ 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/Chatsvc.php:117 -msgid "Away" -msgstr "Borte" - -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" -msgstr "Online" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Byggeklossens navn" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Fikk ikke tilgang til kontaktinformasjonen." +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Byggeklosser" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Fant ikke valgt profil." +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Byggeklossens tittel" -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "Connection updated." -msgstr "Forbindelsen er oppdatert." +#: ../../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/Connedit.php:250 -msgid "Failed to update connection record." -msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen." +#: ../../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/Connedit.php:300 -msgid "is now connected to" -msgstr "er nå forbundet til" +#: ../../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/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:1708 -msgid "No" -msgstr "Nei" +#: ../../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/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:1708 -msgid "Yes" -msgstr "Ja" +#: ../../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/Connedit.php:435 -msgid "Could not access address book record." -msgstr "Fikk ikke tilgang til informasjonen i adresseboken." +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Tillatelse avvist." -#: ../../Zotlabs/Module/Connedit.php:455 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig." +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l, F j" -#: ../../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/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Lenke til kilde" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Connection has been removed." -msgstr "Forbindelsen har blitt fjernet." +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Endre hendelse" -#: ../../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/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Lag hendelse" -#: ../../Zotlabs/Module/Connedit.php:552 -#, php-format -msgid "View %s's profile" -msgstr "Vis %s sin profil" +#: ../../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/Connedit.php:556 -msgid "Refresh Permissions" -msgstr "Oppfrisk tillatelser" +#: ../../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/Connedit.php:559 -msgid "Fetch updated permissions" -msgstr "Hent oppdaterte tillatelser" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Eksport" -#: ../../Zotlabs/Module/Connedit.php:563 -msgid "Recent Activity" -msgstr "Nylig aktivitet" +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importer" -#: ../../Zotlabs/Module/Connedit.php:566 -msgid "View recent posts and comments" -msgstr "Vis nylige innlegg og kommentarer" +#: ../../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/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Ikke blokker lenger" +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Idag" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Blokker" +#: ../../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/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/Channel.php:41 +msgid "Posts and comments" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "This connection is blocked!" -msgstr "Denne forbindelsen er blokkert!" +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Unignore" -msgstr "Ikke ignorer lenger" +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." -#: ../../Zotlabs/Module/Connedit.php:578 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Ignorer" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Rommet ble ikke funnet" -#: ../../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/Chat.php:197 +msgid "Leave Room" +msgstr "Forlat rom" -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "This connection is ignored!" -msgstr "Denne forbindelsen er ignorert!" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Unarchive" -msgstr "Ikke arkiver lenger" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Jeg er borte akkurat nå" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Archive" -msgstr "Arkiver" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Jeg er online" -#: ../../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/Chat.php:202 +msgid "Bookmark this room" +msgstr "Bokmerk dette rommet" -#: ../../Zotlabs/Module/Connedit.php:590 -msgid "This connection is archived!" -msgstr "Denne forbindelsen er arkivert!" +#: ../../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/Connedit.php:594 -msgid "Unhide" -msgstr "Ikke skjul lenger" +#: ../../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/Connedit.php:594 +#: ../../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" + +#: ../../Zotlabs/Module/Chatsvc.php:122 +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." + +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Fant ikke valgt profil." + +#: ../../Zotlabs/Module/Connedit.php:227 +msgid "Connection updated." +msgstr "Forbindelsen er oppdatert." + +#: ../../Zotlabs/Module/Connedit.php:229 +msgid "Failed to update connection record." +msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen." + +#: ../../Zotlabs/Module/Connedit.php:276 +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 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "No" +msgstr "Nei" + +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "Yes" +msgstr "Ja" + +#: ../../Zotlabs/Module/Connedit.php:411 +msgid "Could not access address book record." +msgstr "Fikk ikke tilgang til informasjonen i adresseboken." + +#: ../../Zotlabs/Module/Connedit.php:425 +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 +msgid "Unable to set address book parameters." +msgstr "Ikke i stand til å angi parametre for adresseboken." + +#: ../../Zotlabs/Module/Connedit.php:503 +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 +msgid "View Profile" +msgstr "Vis profil" + +#: ../../Zotlabs/Module/Connedit.php:522 +#, php-format +msgid "View %s's profile" +msgstr "Vis %s sin profil" + +#: ../../Zotlabs/Module/Connedit.php:526 +msgid "Refresh Permissions" +msgstr "Oppfrisk tillatelser" + +#: ../../Zotlabs/Module/Connedit.php:529 +msgid "Fetch updated permissions" +msgstr "Hent oppdaterte tillatelser" + +#: ../../Zotlabs/Module/Connedit.php:533 +msgid "Recent Activity" +msgstr "Nylig aktivitet" + +#: ../../Zotlabs/Module/Connedit.php:536 +msgid "View recent posts and comments" +msgstr "Vis nylige innlegg og kommentarer" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +msgid "Unblock" +msgstr "Ikke blokker lenger" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +msgid "Block" +msgstr "Blokker" + +#: ../../Zotlabs/Module/Connedit.php:543 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen" + +#: ../../Zotlabs/Module/Connedit.php:544 +msgid "This connection is blocked!" +msgstr "Denne forbindelsen er blokkert!" + +#: ../../Zotlabs/Module/Connedit.php:548 +msgid "Unignore" +msgstr "Ikke ignorer lenger" + +#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" +msgstr "Ignorer" + +#: ../../Zotlabs/Module/Connedit.php:551 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen" + +#: ../../Zotlabs/Module/Connedit.php:552 +msgid "This connection is ignored!" +msgstr "Denne forbindelsen er ignorert!" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Unarchive" +msgstr "Ikke arkiver lenger" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Archive" +msgstr "Arkiver" + +#: ../../Zotlabs/Module/Connedit.php:559 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold" + +#: ../../Zotlabs/Module/Connedit.php:560 +msgid "This connection is archived!" +msgstr "Denne forbindelsen er arkivert!" + +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Unhide" +msgstr "Ikke skjul lenger" + +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Hide" msgstr "Skjul" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:567 msgid "Hide or Unhide this connection from your other connections" msgstr "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "This connection is hidden!" msgstr "Denne forbindelsen er skjult!" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Delete this connection" msgstr "Slett denne forbindelsen" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 msgid "Me" msgstr "Meg" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 msgid "Family" msgstr "Familie" -#: ../../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 "Venner" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Bekjente" -#: ../../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 "Alle" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Approve this connection" msgstr "Godta denne forbindelsen" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Accept connection to allow communication" msgstr "Godta denne forbindelsen for å tillate kommunikasjon" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:659 msgid "Set Affinity" msgstr "Angi nærhet" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:662 msgid "Set Profile" msgstr "Angi profil" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity & Profile" msgstr "Angi nærhet og profil" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:698 msgid "none" msgstr "ingen" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 msgid "Connection Default Permissions" msgstr "Forbindelsens standard tillatelser" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 #, php-format msgid "Connection: %s" msgstr "Forbindelse: %s" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Apply these permissions automatically" msgstr "Bruk disse tillatelsene automatisk" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Connection requests will be approved without your interaction" msgstr "Forespørsler om forbindelse vil bli godkjent automatisk" -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:705 msgid "This connection's primary address is" msgstr "Denne forbindelsens primære adresse er" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Available locations:" msgstr "Tilgjengelige plasseringer:" -#: ../../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 "Tillatelsene angitt på denne siden gjøres gjeldende for alle nye forbindelser." -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "Connection Tools" -msgstr "Forbindelsesverktøy" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "Slide to adjust your degree of friendship" msgstr "Flytt for å justere din grad av vennskap" -#: ../../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 "Vurdering" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:715 msgid "Slide to adjust your rating" msgstr "Flytt for å justere din vurdering" -#: ../../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 "Velg om du vil forklare vurderingen" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Custom Filter" msgstr "Tilpasset filter" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Only import posts with this text" msgstr "Bare importer innlegg med disse ordene" -#: ../../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 "ord per linje eller #merkelapper eller /mønster/ eller språk lang=xx, la stå blankt for å importere alle innlegg" -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:720 msgid "Do not import posts with this text" msgstr "Ikke importer innlegg med denne teksten" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "This information is public!" msgstr "Denne informasjonen er offentlig!" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:727 msgid "Connection Pending Approval" msgstr "Forbindelse venter på godkjenning" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "inherited" msgstr "arvet" -#: ../../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 +#: ../../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 "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. " -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:734 msgid "Their Settings" msgstr "Deres innstillinger" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:735 msgid "My Settings" msgstr "Mine innstillinger" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Individual Permissions" msgstr "Individuelle tillatelser" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -773,7 +878,7 @@ msgid "" " settings here." msgstr "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan ikke endre arvede innstillingene her." -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:739 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -781,146 +886,42 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan endre disse innstillingene her, men de vil ikke få noen effekt før de arvede innstillingene endres." -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Last update:" msgstr "Siste oppdatering:" -#: ../../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 "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/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d vurdering" +msgstr[1] "%d vurderinger" -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Fornavn" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Kjønn:" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Etternavn" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Status:" -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Kallenavn" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Hjemmeside:" -#: ../../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" -msgid_plural "%d ratings" -msgstr[0] "%d vurdering" -msgstr[1] "%d vurderinger" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Kjønn:" - -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Status:" - -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Hjemmeside:" - -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 msgid "Age:" msgstr "Alder:" -#: ../../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 "Plassering:" @@ -929,18 +930,18 @@ msgstr "Plassering:" msgid "Description:" msgstr "Beskrivelse:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 msgid "Hometown:" msgstr "Hjemby:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 msgid "About:" msgstr "Om:" #: ../../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 "Koble" @@ -1016,406 +1017,122 @@ 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/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Fortsett" +#: ../../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:90 -msgid "Premium Channel Setup" -msgstr "Premiumkanal-oppsett" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:81 +msgid "Item not found" +msgstr "Elementet ble ikke funnet." -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Slå på restriksjoner for forbindelse med premiumkanal" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Tittel (valgfri)" -#: ../../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/Editblock.php:133 +msgid "Edit Block" +msgstr "Endre byggekloss" -#: ../../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/Common.php:14 +msgid "No channel." +msgstr "Ingen kanal." -#: ../../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/Common.php:43 +msgid "Common connections" +msgstr "Felles forbindelser" -#: ../../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/Common.php:48 +msgid "No connections in common." +msgstr "Ingen forbindelser felles." -#: ../../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/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Blokkert" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Begrenset kanal eller premiumkanal" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignorert" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Kalenderhendelsene er importert." +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Skjult" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Ingen kalenderhendelser funnet." +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Arkivert" -#: ../../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/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1535 +msgid "New" +msgstr "Nye" -#: ../../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/Connections.php:138 +msgid "New Connections" +msgstr "Nye forbindelser" -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Hendelsestittel og starttidspunkt er påkrevd." +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Vis ventende (nye) forbindelser" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Hendelsen ble ikke funnet." +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Alle forbindelser" -#: ../../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/Connections.php:148 +msgid "Show all connections" +msgstr "Vis alle forbindelser" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Endre tittel på hendelse" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Vis bare forbindelser som er blokkert" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Tittel på hendelse" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Vis bare ignorerte forbindelser" -#: ../../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/Connections.php:178 +msgid "Only show archived connections" +msgstr "Vis bare arkiverte forbindelser" -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparert liste)" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Vis bare skjulte forbindelser" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Endre kategori" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Venter på godkjenning" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Kategori" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Endre startdato og tidspunkt" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Endre forbindelse" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Startdato og tidspunkt" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Slett forbindelse" -#: ../../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/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../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/Editpost.php:35 -msgid "Item is not editable" -msgstr "Elementet kan ikke endres" - -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Endre innlegg" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Bilder" - -#: ../../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/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 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Blokkert" - -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignorert" - -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Skjult" - -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Arkivert" - -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 -msgid "New" -msgstr "Nye" - -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nye forbindelser" - -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Vis ventende (nye) forbindelser" - -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Alle forbindelser" - -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Vis alle forbindelser" - -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Vis bare forbindelser som er blokkert" - -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Vis bare ignorerte forbindelser" - -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Vis bare arkiverte forbindelser" - -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Vis bare skjulte forbindelser" - -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "Venter på godkjenning" - -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Endre forbindelse" - -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Slett forbindelse" - -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Kanaladresse" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Kanaladresse" #: ../../Zotlabs/Module/Connections.php:267 msgid "Network" @@ -1446,15 +1163,15 @@ msgstr "Ignorer forbindelse" msgid "Recent activity" msgstr "Nylig aktivitet" -#: ../../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 "Forbindelser" #: ../../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 "Søk" @@ -1467,7 +1184,7 @@ msgid "Connections search" msgstr "Søk blant forbindelser" #: ../../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 "Bildet ble lastet opp, men beskjæring av bildet mislyktes." @@ -1477,66 +1194,66 @@ msgid "Cover Photos" msgstr "Forsidebilder" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 +#: ../../Zotlabs/Module/Profile_photo.php:133 msgid "Image resize failed." msgstr "Endring av bildestørrelse mislyktes." #: ../../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 "Kan ikke behandle bildet" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 +#: ../../Zotlabs/Module/Profile_photo.php:217 msgid "Image upload failed." msgstr "Opplasting av bildet mislyktes." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 +#: ../../Zotlabs/Module/Profile_photo.php:236 msgid "Unable to process image." msgstr "Kan ikke behandle bildet." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 msgid "female" msgstr "kvinne" -#: ../../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 "%1$s oppdaterte %2$s sitt" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 msgid "male" msgstr "mann" -#: ../../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 "%1$s oppdaterte %2$s sitt" -#: ../../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 "%1$s oppdaterte %2$s deres" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 msgid "cover photo" msgstr "forsidebilde" #: ../../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 "Bildet er ikke tilgjengelig." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:365 msgid "Upload File:" msgstr "Last opp fil:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:366 msgid "Select a profile:" msgstr "Velg en profil:" @@ -1545,256 +1262,315 @@ msgid "Upload Cover Photo" msgstr "Last opp forsidebilde" #: ../../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 "eller" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "skip this step" msgstr "hopp over dette steget" #: ../../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 "velg et bilde fra dine fotoalbum" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 +#: ../../Zotlabs/Module/Profile_photo.php:390 msgid "Crop Image" msgstr "Beskjær bildet" #: ../../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 "Vennligst juster bildebeskjæringen for optimal visning." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:393 msgid "Done Editing" msgstr "Avslutt redigering" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "nettside" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Elementet kan ikke endres" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "byggekloss" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" +msgstr "Endre innlegg" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "layout" +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "Kalenderhendelsene er importert." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "meny" +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "Ingen kalenderhendelser funnet." -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "%s element installert" +#: ../../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/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "Installasjon av %s-element mislyktes" +#: ../../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/Cal.php:69 -msgid "Permissions denied." -msgstr "Tillatelse avvist." +#: ../../Zotlabs/Module/Events.php:114 +msgid "Event title and start time are required." +msgstr "Hendelsestittel og starttidspunkt er påkrevd." -#: ../../Zotlabs/Module/Cal.php:337 -msgid "Import" -msgstr "Importer" +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "Hendelsen ble ikke funnet." -#: ../../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: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/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)" +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Endre tittel på hendelse" -#: ../../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:449 +msgid "Event title" +msgstr "Tittel på hendelse" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Rommet ble ikke funnet" +#: ../../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/Chat.php:197 -msgid "Leave Room" -msgstr "Forlat rom" +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Kategorier (kommaseparert liste)" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Slett rom" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Endre kategori" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Jeg er borte akkurat nå" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Kategori" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Jeg er online" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Endre startdato og tidspunkt" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Bokmerk dette rommet" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Startdato og tidspunkt" -#: ../../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: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/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:458 +msgid "Edit finish date and time" +msgstr "Endre sluttdato og tidspunkt" -#: ../../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:458 +msgid "Finish date and time" +msgstr "Sluttdato og tidspunkt" -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funksjonen er avskrudd." +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "Juster i forhold til tilskuerens tidssone" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nytt chatrom" +#: ../../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/Chat.php:233 -msgid "Chatroom name" -msgstr "Navn på chatrom" +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" +msgstr "Endre beskrivelse" -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Chat utgår (antall minutter)" +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Beskrivelse" -#: ../../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/Events.php:464 +msgid "Edit Location" +msgstr "Endre plassering" -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$s sine chatrom" +#: ../../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:251 -msgid "No chatrooms available" -msgstr "Ingen tilgjengelige chatrom" +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Del denne hendelsen" -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Lag ny" +#: ../../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:255 -msgid "Expiration" -msgstr "Utløper" +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Tillatelser - innstillinger" -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" +msgstr "Avanserte alternativer" + +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "Endre hendelse" + +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "Slett hendelse" + +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "kalender" + +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" +msgstr "Hendelse slettet" + +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" +msgstr "Mislyktes med å slette hendelse" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:92 ../../include/conversation.php:1632 +msgid "Photos" +msgstr "Bilder" + +#: ../../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/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/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)" + +#: ../../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:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Lagre" -#: ../../Zotlabs/Module/Dreport.php:44 +#: ../../Zotlabs/Module/Dreport.php:27 msgid "Invalid message" msgstr "Ugyldig melding" -#: ../../Zotlabs/Module/Dreport.php:76 +#: ../../Zotlabs/Module/Dreport.php:59 msgid "no results" msgstr "ingen resultater" -#: ../../Zotlabs/Module/Dreport.php:91 +#: ../../Zotlabs/Module/Dreport.php:64 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Leveringsrapport for %1$s" + +#: ../../Zotlabs/Module/Dreport.php:78 msgid "channel sync processed" msgstr "Kanalsynkronisering er behandlet" -#: ../../Zotlabs/Module/Dreport.php:95 +#: ../../Zotlabs/Module/Dreport.php:82 msgid "queued" msgstr "lagt i kø" -#: ../../Zotlabs/Module/Dreport.php:99 +#: ../../Zotlabs/Module/Dreport.php:86 msgid "posted" msgstr "lagt inn" -#: ../../Zotlabs/Module/Dreport.php:103 +#: ../../Zotlabs/Module/Dreport.php:90 msgid "accepted for delivery" msgstr "akseptert for levering" -#: ../../Zotlabs/Module/Dreport.php:107 +#: ../../Zotlabs/Module/Dreport.php:94 msgid "updated" msgstr "oppdatert" -#: ../../Zotlabs/Module/Dreport.php:110 +#: ../../Zotlabs/Module/Dreport.php:97 msgid "update ignored" msgstr "oppdatering ignorert" -#: ../../Zotlabs/Module/Dreport.php:113 +#: ../../Zotlabs/Module/Dreport.php:100 msgid "permission denied" msgstr "tillatelse avvist" -#: ../../Zotlabs/Module/Dreport.php:117 +#: ../../Zotlabs/Module/Dreport.php:104 msgid "recipient not found" msgstr "mottaker ble ikke funnet" -#: ../../Zotlabs/Module/Dreport.php:120 +#: ../../Zotlabs/Module/Dreport.php:107 msgid "mail recalled" msgstr "melding tilbakekalt" -#: ../../Zotlabs/Module/Dreport.php:123 +#: ../../Zotlabs/Module/Dreport.php:110 msgid "duplicate mail received" msgstr "duplikat av melding mottatt" -#: ../../Zotlabs/Module/Dreport.php:126 +#: ../../Zotlabs/Module/Dreport.php:113 msgid "mail delivered" msgstr "melding mottatt" -#: ../../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 +#: ../../Zotlabs/Module/Editlayout.php:126 +#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 msgid "Layout Name" msgstr "Layout-navn" -#: ../../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 "Layoutens beskrivelse (valgfritt)" -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editlayout.php:135 msgid "Edit Layout" msgstr "Endre layout" -#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:143 msgid "Page link" -msgstr "Sidelenke" +msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 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." @@ -1804,7 +1580,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:3902 +#: ../../include/items.php:3893 msgid "Privacy group not found." msgstr "Personverngruppen ble ikke funnet" @@ -1848,70 +1624,44 @@ 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/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installert." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Del innhold fra Firefox til $Projectname" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Feil oppsett for app-en." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Skru på Firefox $Projectname tilbyderen" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Innbyggingskode" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Tillat programforbindelse" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Endre app" +#: ../../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 -msgid "Create App" -msgstr "Lag app" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Vennligst logg inn for å fortsette." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Navn på 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:116 -msgid "Location (URL) of app" -msgstr "Plassering (URL) til app" +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Søk i dokumentasjon" -#: ../../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" -msgstr "Søk i dokumentasjon" - -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Hjelp:" +#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 +#: ../../Zotlabs/Module/Help.php:79 +msgid "Help:" +msgstr "Hjelp:" #: ../../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 "Hjelp" @@ -1919,2967 +1669,2983 @@ msgstr "Hjelp" msgid "$Projectname Documentation" msgstr "$Projectname dokumentasjon" -#: ../../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 +#: ../../Zotlabs/Module/Filestorage.php:88 msgid "Permission Denied." msgstr "Tillatelse avvist." -#: ../../Zotlabs/Module/Filestorage.php:103 +#: ../../Zotlabs/Module/Filestorage.php:104 msgid "File not found." msgstr "Filen ble ikke funnet." -#: ../../Zotlabs/Module/Filestorage.php:146 +#: ../../Zotlabs/Module/Filestorage.php:147 msgid "Edit file permissions" msgstr "Endre filtillatelser" -#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:156 msgid "Set/edit permissions" msgstr "Angi/endre tillatelser" -#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:157 msgid "Include all files and sub folders" msgstr "Inkluder alle filer og undermapper" -#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:158 msgid "Return to file list" msgstr "Gå tilbake til filoversikten" -#: ../../Zotlabs/Module/Filestorage.php:159 +#: ../../Zotlabs/Module/Filestorage.php:160 msgid "Copy/paste this code to attach file to a post" msgstr "Kopier og lim inn denne koden for å legge til filen i et innlegg" -#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:161 msgid "Copy/paste this URL to link file from a web page" msgstr "Kopier og lim inn denne URL-en for å lenke til filen fra en webside" -#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Filestorage.php:163 msgid "Share this file" msgstr "Del denne filen" -#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Module/Filestorage.php:164 msgid "Show URL to this file" msgstr "Vis URLen til denne filen" -#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Filestorage.php:165 msgid "Notify your contacts about this file" msgstr "Varsle dine kontakter om denne filen" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 -msgid "Layouts" -msgstr "Layout" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Apper" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Hjelp med Comanche sidebeskrivelsesspråk" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elementet er ikke tilgjengelig." -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Layout-beskrivelse" +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Din tjenesteplan tillater bare %d kanaler." -#: ../../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/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Ingenting å importere." -#: ../../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/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Ikke i stand til å laste ned data fra gammel tjener" -#: ../../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/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Importert fil er tom." -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Last ned PDL-fil" +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Advarsel: databaseversjoner avviker med %1$d oppdateringer." -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Liker/Liker ikke" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." +msgstr "Klonet kanal ble ikke funnet. Import mislyktes." -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Denne handlingen er begrenset til medlemmer." +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Ingen kanal. Import mislyktes." -#: ../../Zotlabs/Module/Like.php:25 +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import ferdig." + +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." +msgstr "Du må være innlogget for å bruke denne funksjonen." + +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Importer kanal" + +#: ../../Zotlabs/Module/Import.php:538 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Vennligst logg inn med din $Projectname ID eller registrer deg som et nytt $Projectname-medlem for å fortsette" +"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/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Ugyldig forespørsel." +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Fil som skal lastes opp" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "kanal" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "ting" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Din gamle identitetsadresse (xyz@example.com)" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Kanalen er utilgjengelig." +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Din gamle innloggings e-postadresse" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Forrige handling er omgjort." +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "Ditt gamle innloggingspassord" -#: ../../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/Import.php:544 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 -msgid "status" -msgstr "status" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Gjør dette nettstedet til min primære plassering" -#: ../../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/Import.php:546 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)" -#: ../../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/Import.php:547 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig." -#: ../../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/Item.php:178 +msgid "Unable to locate original post." +msgstr "Ikke i stand til å finne opprinnelig innlegg." -#: ../../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/Item.php:427 +msgid "Empty post discarded." +msgstr "Tomt innlegg forkastet." -#: ../../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/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "Kjørbar innholdstype er ikke tillat for denne kanalen." -#: ../../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/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "Duplikat av innlegg forhindret." + +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Systemfeil. Innlegg ble ikke lagret." + +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "Ikke i stand til å få tak i informasjon om innlegg fra databasen." -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Item.php:1248 #, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s deltar ikke på %2$ss %3$s" +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/Like.php:433 +#: ../../Zotlabs/Module/Item.php:1255 #, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s deltar kanskje på %2$ss %3$s" +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du har nådd din grense på %1$.0f websider." -#: ../../Zotlabs/Module/Like.php:536 -msgid "Action completed." -msgstr "Handling ferdig." +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +msgid "Layouts" +msgstr "Layout" -#: ../../Zotlabs/Module/Like.php:537 -msgid "Thank you." -msgstr "Tusen takk." +#: ../../Zotlabs/Module/Layouts.php:183 +msgid "Comanche page description language help" +msgstr "Hjelp med Comanche sidebeskrivelsesspråk" -#: ../../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/Layouts.php:187 +msgid "Layout Description" +msgstr "Layout-beskrivelse" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profilen er slettet." +#: ../../Zotlabs/Module/Layouts.php:192 +msgid "Download PDL file" +msgstr "Last ned PDL-fil" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profil-" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Ny profil opprettet." +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Velkommen til %s" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Profilen er utilgjengelig for klonen." +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Fornavn" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Profilen er utilgjengelig for eksport." +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Etternavn" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Profilnavn er påkrevd." +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Kallenavn" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Sivilstand" +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Fullt navn" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Romantisk partner" +#: ../../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/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Liker" +#: ../../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/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Liker ikke" +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Profilbilde 16px" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Arbeid/sysselsetting" +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Profilbilde 32px" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religion" +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Profilbilde 48px" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Politiske synspunkter" +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Profilbilde 64px" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Seksuelle preferanser" +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Profilbilde 80px" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Hjemmeside" +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Profilbilde 128px" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interesser" +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Tidssone" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Hjemmeside URL" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profilen er oppdatert." +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" +msgstr "Språk" -#: ../../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/Id.php:31 +msgid "Birth Year" +msgstr "Fødselsår" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Endre profildetaljer" +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Fødselsmåne" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Vis denne profilen" +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Fødselsdag" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 -msgid "Edit visibility" -msgstr "Endre synlighet" +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Fødselsdato" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Profilverktøy" +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Kjønn" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Endre forsidebilde" +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Mannlig" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 -msgid "Change profile photo" -msgstr "Endre profilbilde" +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Kvinnelig" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Lag en ny profil ved å bruke disse innstillingene" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "nettside" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Klon denne profilen" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "byggekloss" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Slett denne profilen" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "layout" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Legg til profilting" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "meny" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Personlig" +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s element installert" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Forhold" +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Installasjon av %s-element mislyktes" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Forskjellig" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Liker/Liker ikke" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importer profil fra fil" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Denne handlingen er begrenset til medlemmer." -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Eksporter profil til fil" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Vennligst logg inn med din $Projectname ID eller registrer deg som et nytt $Projectname-medlem for å fortsette" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Ditt kjønn" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Ugyldig forespørsel." -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Sivilstand" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "kanal" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Seksuelle preferanser" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "ting" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Profilnavn" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Kanalen er utilgjengelig." -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Dette er din standardprofil." +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Forrige handling er omgjort." -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Ditt fulle navn" +#: ../../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/Profiles.php:714 -msgid "Title/Description" -msgstr "Tittel/beskrivelse" +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 +msgid "status" +msgstr "status" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Gateadresse" +#: ../../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/Profiles.php:718 -msgid "Locality/City" -msgstr "Sted/by" +#: ../../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/Profiles.php:719 -msgid "Region/State" -msgstr "Region/fylke" +#: ../../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/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "Postnummer/ZIP-kode" +#: ../../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/Profiles.php:721 -msgid "Country" -msgstr "Land" +#: ../../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/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Hvem (hvis det er aktuelt)" +#: ../../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/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/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/Profiles.php:732 -msgid "Hometown" -msgstr "Hjemby" +#: ../../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/Profiles.php:733 -msgid "Political views" -msgstr "Politiske synspunkter" +#: ../../Zotlabs/Module/Like.php:537 +msgid "Action completed." +msgstr "Handling ferdig." -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Religiøse synspunkter" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Thank you." +msgstr "Tusen takk." -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Nøkkelord bruk i katalogoppføringer" +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Import ferdig" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Eksempel: fisking fotografering programvare" +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importer elementer" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Musikkinteresser" +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil." -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Bøker, litteratur" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Grensen for totalt antall invitasjoner er overskredet." -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "TV/fjernsyn" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : ikke en gyldig e-postadresse." -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film/dans/kultur/underholdning" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Bli med oss på $Projectname" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobbier/Interesser" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted." -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Kjærlighet/romantikk" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : meldingslevering feilet." -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Skole/utdanning" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d melding sendt." +msgstr[1] "%d meldinger sendt." -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Kontaktinformasjon og sosiale nettverk" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Du har ikke flere invitasjoner tilgjengelig" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Mine andre kanaler" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Send invitasjoner" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 -msgid "Profile Image" -msgstr "Profilbilde" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Skriv e-postadresser, en per linje:" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 -msgid "Edit Profiles" -msgstr "Endre profiler" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Din melding:" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Din tjenesteplan tillater bare %d kanaler." +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Du er velkommen til å bli med i mitt fellesskap på $Projectname." -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Ingenting å importere." +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Du må oppgi denne invitasjonskoden:" -#: ../../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/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registrer ved enhver $Projectname-lokasjon (de er alle forbundet med hverandre)" -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Importert fil er tom." +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Skriv inn min $Projectname-adresse i nettstedets søkefelt." -#: ../../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/Invite.php:142 +msgid "or visit" +msgstr "eller besøke" -#: ../../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/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klikk [Forbindelse]" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Ingen kanal. Import mislyktes." +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Ekstern personverninformasjon er ikke tilgjengelig." -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import ferdig." +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Synlig for:" -#: ../../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/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Plassering er ikke funnet." -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importer kanal" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Oppslag på plassering mislyktes." -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Locs.php:66 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." +"Please select another location to become primary before removing the primary" +" location." +msgstr "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering." -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Fil som skal lastes opp" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Synkroniserer plasseringer" -#: ../../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/Locs.php:105 +msgid "No locations found." +msgstr "Ingen plasseringer ble funnet." -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Din gamle identitetsadresse (xyz@example.com)" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Håndter kanalplasseringer" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Din gamle innloggings e-postadresse" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adresse" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Ditt gamle innloggingspassord" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "" -#: ../../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" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media." +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Slett" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Gjør dette nettstedet til min primære plassering" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "" -#: ../../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/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Vennligst vent flere minutter mellom hver etterfølgende operasjon." -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Module/Locs.php:124 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." +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Når mulig, fjern en plassering ved å logge inn på det nettstedet eller den hub-en og fjern din kanal." -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Bruk dette skjemaet for å fjerne plasseringen hvis huben ikke er i drift lenger." -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Velkommen til %s" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hubben ble ikke funnet." -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Ikke i stand til å finne opprinnelig innlegg." +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Ikke i stand til å slå opp mottaker." -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Tomt innlegg forkastet." +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Ikke i stand til å kommunisere med forespurt kanal." -#: ../../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/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Kan ikke bekrefte forespurt kanal." -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Duplikat av innlegg forhindret." +#: ../../Zotlabs/Module/Mail.php:78 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Valgt kanal har restriksjoner for private meldinger. Sending feilet." -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Systemfeil. Innlegg ble ikke lagret." +#: ../../Zotlabs/Module/Mail.php:143 +msgid "Messages" +msgstr "Meldinger" -#: ../../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/Mail.php:178 +msgid "Message recalled." +msgstr "Innlegg tilbakekalt." -#: ../../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: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/Mail.php:191 +msgid "Conversation removed." +msgstr "Samtale fjernet." -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Informasjon om sideeier kunne ikke hentes." +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Utløper YYYY-MM-DD HH:MM" -#: ../../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/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "Forespurt kanal er ikke tilgjengelig i dette nettverket." -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Albumet ble ikke funnet." +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Send privat melding" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Slett album" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "Til:" -#: ../../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/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Emne:" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Slett bilde" +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Legg ved fil" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Ingen bilder valgt" +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Send" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Tilgang til dette elementet er begrenset." +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Angi utløpsdato" -#: ../../Zotlabs/Module/Photos.php:619 -#, 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/Mail.php:340 +msgid "Delete message" +msgstr "Slett melding" -#: ../../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/Mail.php:341 +msgid "Delivery report" +msgstr "Leveringsrapport" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Last opp bilder" +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Tilbakekall innlegg" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Skriv et albumnavn" +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "Innlegget har blitt tilbakekalt." -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "eller velg et eksisterende album (dobbeltklikk)" +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Slett samtale" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Lag et statusinnlegg for denne opplastingen" +#: ../../Zotlabs/Module/Mail.php:363 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Ingen sikret kommunikasjon tilgjengelig. Du kan muligens greie å svare via senderens profilside." -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Bildetekst (valgfritt):" +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Send Reply" +msgstr "Send svar" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Beskrivelse (valgfritt):" +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Din melding til %s (%s):" -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "Albumnavnet kunne ikke dekodes" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler." -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Kontaktbilder" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Lag en ny kanal" -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Vis nyeste først" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Kanalstyring" -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Vis eldste først" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Gjeldende kanal" -#: ../../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/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Bytt til en av dine kanaler ved å velge den." -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Endre album" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Standardkanal" -#: ../../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/Manage.php:169 +msgid "Make Default" +msgstr "Gjør til standard" -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" -msgstr "Bilde er utilgjengelig" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nye meldinger" -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Bruk som profilbilde" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nye introduksjoner" -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Bruk som forsidebilde" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Privat bilde" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Ingen gyldig konto funnet." -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Vis i full størrelse" +#: ../../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/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Fjern" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Nettstedsmedlem (%s)" -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Endre bilde" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Forespurt om å tilbakestille passord hos %s" -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Roter med klokka (mot høyre)" +#: ../../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/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Roter mot klokka (venstre)" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Tilbakestill passord" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Skriv et nytt albumnavn" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Ditt passord har blitt tilbakestilt som forespurt." -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "eller velg et eksisterende album (dobbeltklikk)" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Ditt nye passord er" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Overskrift" +#: ../../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/Photos.php:1042 -msgid "Add a Tag" -msgstr "Legg til merkelapp" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "klikke her for å logge inn" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging." -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Flag som voksent i albumvisning" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Ditt passord er endret hos %s" -#: ../../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/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Glemt passord ditt?" -#: ../../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/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/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Vennligst vent" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-postadresse" -#: ../../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/Lostpass.php:130 +msgid "Reset" +msgstr "Tilbakestill" -#: ../../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/Menu.php:49 +msgid "Unable to update menu." +msgstr "Ikke i stand til å oppdatere meny." -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Liker" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Ikke i stand til å lage meny." -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Liker ikke" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Menynavn" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "Enig" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Unikt navn (ikke synlig på websiden) - påkrevet" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Uenig" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Avstår" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Deltar" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menytittel" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Deltar ikke" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Synlig på websiden - la stå tomt for ingen tittel" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Deltar kanskje" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Tillat bokmerker" -#: ../../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/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menyen kan brukes til å lagre lagrede bokmerker" -#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Send inn og fortsett" -#: ../../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/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menyer" -#: ../../Zotlabs/Module/Photos.php:1233 -msgid "Photo Tools" -msgstr "Fotoverktøy" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Bokmerker tillatt" -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "I dette bildet:" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Slett denne menyen" -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Kart" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Endre menyinnholdet" -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Liker" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Endre denne menyen" -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Liker ikke" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menyen kunne ikke bli slettet." -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Lukk" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menyen ble ikke funnet." -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Vis album" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Endre meny" -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Nye bilder" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Legg til eller fjern punkter i denne menyen" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Ekstern personverninformasjon er ikke tilgjengelig." +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Menynavn" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Synlig for:" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Må være unik, ses bare av deg" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Import ferdig" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Menytittel" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importer elementer" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Menytittelen andre ser" -#: ../../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." +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Tillat bokmerker" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Grensen for totalt antall invitasjoner er overskredet." +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Ikke funnet." -#: ../../Zotlabs/Module/Invite.php:53 +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : ikke en gyldig e-postadresse." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Bli med oss på $Projectname" +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s er %2$s" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted." +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Stemning" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : meldingslevering feilet." +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Angi ditt nåværende humør og fortell dine venner" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d melding sendt." -msgstr[1] "%d meldinger sendt." +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profiltreff" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Du har ikke flere invitasjoner tilgjengelig" +#: ../../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/Invite.php:133 -msgid "Send invitations" -msgstr "Send invitasjoner" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "er interessert i:" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Skriv e-postadresser, en per linje:" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Ingen treff" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Din melding:" +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Gruppen finnes ikke" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Du er velkommen til å bli med i mitt fellesskap på $Projectname." +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Ingen slik kanal" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Du må oppgi denne invitasjonskoden:" +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "forum" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registrer ved enhver $Projectname-lokasjon (de er alle forbundet med hverandre)" +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Søkeresultat for:" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Skriv inn min $Projectname-adresse i nettstedets søkefelt." +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Personverngruppen er tom" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "eller besøke" +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Personverngruppe:" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klikk [Forbindelse]" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Ugyldig forbindelse." -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Plassering er ikke funnet." +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Ingen flere systemvarsler." -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Oppslag på plassering mislyktes." +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Systemvarsler" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering." +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Klarer ikke å lage element." -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Synkroniserer plasseringer" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Ikke i stand til å oppdatere menyelement." -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Ingen plasseringer ble funnet." +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Ikke i stand til å legge til menyelement." -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Håndter kanalplasseringer" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Menyelement Tillatelser" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Hoved" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(klikk for å åpne/lukke)" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Slett" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Synkroniser nå" +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Lenkenavn" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Vennligst vent flere minutter mellom hver etterfølgende operasjon." +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Lenke- eller undermeny-mål" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Når mulig, fjern en plassering ved å logge inn på det nettstedet eller den hub-en og fjern din kanal." +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Skriv URL-en til lenken eller velg et menynavn for å lage en undermeny" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Bruk dette skjemaet for å fjerne plasseringen hvis huben ikke er i drift lenger." +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Bruk magic-autent hvis mulig" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hubben ble ikke funnet." +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Åpne lenke i nytt vindu" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Ikke i stand til å slå opp mottaker." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Ordne i liste" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Ikke i stand til å kommunisere med forespurt kanal." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Høyere tall vil synke mot bunnen av listen" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Kan ikke bekrefte forespurt kanal." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Send inn og avslutt" -#: ../../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/Mitem.php:162 +msgid "Submit and continue" +msgstr "Send inn og fortsett" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Meldinger" +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Meny:" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Innlegg tilbakekalt." +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Lenkemål" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Samtale fjernet." +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Endre meny" -#: ../../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/Mitem.php:179 +msgid "Edit element" +msgstr "Endre element" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Forespurt kanal er ikke tilgjengelig i dette nettverket." +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Slett element" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Send privat melding" +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nytt element" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "Til:" +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Endre denne menybeholderen" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Emne:" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Legg til menyelement" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Legg ved fil" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Slett dette menyelementet" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Send" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Endre dette menyelementet" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Angi utløpsdato" +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Menyelement ble ikke funnet." -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Slett melding" +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Menyelement slettet." -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Leveringsrapport" +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menyelement kunne ikke bli slettet." -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Tilbakekall innlegg" +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Endre menyelement" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Innlegget har blitt tilbakekalt." +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Lenketekst" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Slett samtale" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Navn eller overskrift" -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Ingen sikret kommunikasjon tilgjengelig. Du kan muligens greie å svare via senderens profilside." +#: ../../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/Mail.php:359 -msgid "Send Reply" -msgstr "Send svar" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Velg et kort kallenavn" -#: ../../Zotlabs/Module/Mail.php:364 +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 #, php-format -msgid "Your message for %s (%s):" -msgstr "Din melding til %s (%s):" +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/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler." +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Kanalrolle og personvern" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Lag en ny kanal" +#: ../../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/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Kanalstyring" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Les mer om roller" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Gjeldende kanal" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Lag kanal" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Bytt til en av dine kanaler ved å velge den." +#: ../../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/Manage.php:168 -msgid "Default Channel" -msgstr "Standardkanal" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "eller importer en eksisterende kanal fra et annet sted." -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Gjør til standard" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ugyldig forespørselsidentifikator." -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nye meldinger" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Forkast" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nye introduksjoner" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Merk alle systemvarsler som sett" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Delegert kanal" +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "Informasjon om sideeier kunne ikke hentes." -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Ikke i stand til å oppdatere meny." +#: ../../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/Menu.php:60 -msgid "Unable to create menu." -msgstr "Ikke i stand til å lage meny." +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Albumet ble ikke funnet." -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Menynavn" +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Slett album" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Unikt navn (ikke synlig på websiden) - påkrevet" +#: ../../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/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menytittel" +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Slett bilde" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Synlig på websiden - la stå tomt for ingen tittel" +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Ingen bilder valgt" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Tillat bokmerker" +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "Tilgang til dette elementet er begrenset." -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menyen kan brukes til å lagre lagrede bokmerker" +#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Send inn og fortsett" +#: ../../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/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menyer" +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Last opp bilder" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Bokmerker tillatt" +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Skriv et albumnavn" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Slett denne menyen" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "eller velg et eksisterende album (dobbeltklikk)" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Endre menyinnholdet" +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Lag et statusinnlegg for denne opplastingen" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Endre denne menyen" +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Bildetekst (valgfritt):" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menyen kunne ikke bli slettet." +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Beskrivelse (valgfritt):" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menyen ble ikke funnet." +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "Albumnavnet kunne ikke dekodes" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Endre meny" +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Kontaktbilder" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Legg til eller fjern punkter i denne menyen" +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Vis nyeste først" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Menynavn" +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Vis eldste først" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Må være unik, ses bare av deg" +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Vis foto" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Menytittel" +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Endre album" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Menytittelen andre ser" +#: ../../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/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Tillat bokmerker" +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Bilde er utilgjengelig" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Ikke funnet." +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Bruk som profilbilde" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Ingen gyldig konto funnet." +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din." +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Privat bilde" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Nettstedsmedlem (%s)" +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Vis i full størrelse" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Forespurt om å tilbakestille passord hos %s" +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Fjern" -#: ../../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/Photos.php:1032 +msgid "Edit photo" +msgstr "Endre bilde" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Tilbakestill passord" +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Roter med klokka (mot høyre)" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Ditt passord har blitt tilbakestilt som forespurt." +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Roter mot klokka (venstre)" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Ditt nye passord er" +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Skriv et nytt albumnavn" -#: ../../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/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "eller velg et eksisterende album (dobbeltklikk)" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "klikke her for å logge inn" +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Overskrift" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging." +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Legg til merkelapp" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Ditt passord er endret hos %s" +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Glemt passord ditt?" +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Flag som voksent i albumvisning" -#: ../../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/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Jeg liker dette (skru av og på)" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-postadresse" +#: ../../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/Lostpass.php:130 -msgid "Reset" -msgstr "Tilbakestill" +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Vennligst vent" -#: ../../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/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Dette er deg" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Stemning" +#: ../../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/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Angi ditt nåværende humør og fortell dine venner" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Liker" -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Gruppen finnes ikke" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "Liker ikke" -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Ingen slik kanal" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "Enig" -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Uenig" -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Søkeresultat for:" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Avstår" -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "Personverngruppen er tom" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Deltar" -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Personverngruppe:" +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Deltar ikke" -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Ugyldig forbindelse." +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Deltar kanskje" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Ingen flere systemvarsler." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Systemvarsler" +#: ../../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/Match.php:26 -msgid "Profile Match" -msgstr "Profiltreff" +#: ../../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/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/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/Match.php:67 -msgid "is interested in:" -msgstr "er interessert i:" +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Ingen treff" +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "I dette bildet:" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Innlegg og kommentarer" +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Kart" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Bare innlegg" +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Liker" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Liker ikke" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Klarer ikke å lage element." +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Lukk" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Ikke i stand til å oppdatere menyelement." +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Vis album" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Ikke i stand til å legge til menyelement." +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Nye bilder" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Menyelement Tillatelser" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "sendte deg en privat melding" -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(klikk for å åpne/lukke)" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "la til din kanal" -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Lenkenavn" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l F d" -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Lenke- eller undermeny-mål" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[idag]" -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Skriv URL-en til lenken eller velg et menynavn for å lage en undermeny" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "la ut en hendelse" -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Bruk magic-autent hvis mulig" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Ikke i stand til å finne hubben din." -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Åpne lenke i nytt vindu" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Innlegg vellykket." -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Ordne i liste" +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protokollfeil. Ingen ID ble returnert." -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Høyere tall vil synke mot bunnen av listen" +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Innlogging mislyktes." -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Send inn og avslutt" +#: ../../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/Mitem.php:162 -msgid "Submit and continue" -msgstr "Send inn og fortsett" +#: ../../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/Mitem.php:170 -msgid "Menu:" -msgstr "Meny:" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Konfigurasjonsbehandler" -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Lenkemål" +#: ../../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/Mitem.php:176 -msgid "Edit menu" -msgstr "Endre meny" +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Layout er oppdatert." -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Endre element" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Endre beskrivelsen av systemsiden" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Slett element" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Layouten ble ikke funnet." -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nytt element" +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Modulnavn:" -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Endre denne menybeholderen" +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Layout-hjelp" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Legg til menyelement" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Prikk" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Slett dette menyelementet" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Dult noen" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Endre dette menyelementet" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Prikke/oppildne" -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menyelement ble ikke funnet." +#: ../../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/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menyelement slettet." +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Mottaker" -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menyelement kunne ikke bli slettet." +#: ../../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/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Endre menyelement" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Gjør dette innlegget privat" -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Lenketekst" +#: ../../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/Admin.php:77 -msgid "Theme settings updated." -msgstr "Temainnstillinger er oppdatert." +#: ../../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/Admin.php:197 -msgid "# Accounts" -msgstr "# Kontoer" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profilen er slettet." -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# blokkerte kontoer" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profil-" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# utgåtte kontoer" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Ny profil opprettet." -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# kontoer som holder på å gå ut" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Profilen er utilgjengelig for klonen." -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# Kanaler" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Profilen er utilgjengelig for eksport." -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# hoved" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Profilnavn er påkrevd." -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# kloner" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Sivilstand" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Meldingskøer" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Romantisk partner" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Programvaren din bør oppdateres" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Liker" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" -msgstr "Administrasjon" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Liker ikke" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Sammendrag" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Arbeid/sysselsetting" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Registrerte kontoer" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religion" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "Ventende registreringer" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Politiske synspunkter" -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Registrerte kanaler" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Seksuelle preferanser" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" -msgstr "Aktive tilleggsfunksjoner" +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Hjemmeside" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versjon" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interesser" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Depotversjon (master)" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profilen er oppdatert." -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Depotversjon (dev)" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Nettstedsinnstillinger er oppdatert." +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Endre profildetaljer" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 -msgid "Default" -msgstr "Standard" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Vis denne profilen" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 -msgid "mobile" -msgstr "mobil" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:959 +msgid "Edit visibility" +msgstr "Endre synlighet" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "eksperimentell" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "ikke støttet" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Ja - med godkjenning" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +msgid "Change profile photo" +msgstr "Endre profilbilde" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "Mitt nettsted er ikke en offentlig tjeneste" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Lag en ny profil ved å bruke disse innstillingene" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "Mitt nettsted gir kun tilgang mot betaling" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Klon denne profilen" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "Mitt nettsted har kun gratis tilgang" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Slett denne profilen" -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Legg til profilting" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 -msgid "Site" -msgstr "Nettsted" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 +msgid "Personal" +msgstr "Personlig" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Registrering" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" -msgstr "Last opp fil" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Forskjellig" -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" -msgstr "Retningslinjer" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importer profil fra fil" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avansert" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Eksporter profil til fil" -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" -msgstr "Nettstedets navn" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" -msgstr "Banner/Logo" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" -msgstr "Administratorinformasjon" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "Systemspråk" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Dette er din standardprofil." -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "Systemtema" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" -msgstr "Mobilt systemtema" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" -msgstr "Tema for mobile enheter" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" -msgstr "Tillat strømmer som forbindelser" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" -msgstr "(Tung bruk av systemressurser)" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" -msgstr "Største bildestørrelse" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset." +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" -msgstr "Tillater dette nettstedet registrering av nye medlemmer?" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" -msgstr "Kun inviterte" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Tillat bare nye medlemsregistreringer med en invitasjonskode. Ovenstående retningslinjer for registrering må være satt til Ja." +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" -msgstr "Registreringstekst" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." -msgstr "Vil bli vist på en fremtredende måte på registreringssiden." +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Nettstedets hjemmeside som vises til besøkende (standard: innloggingsboks)" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "eksempel: 'public' for å vise offentlig strøm av innlegg, 'page/sys/home/ for å vise en system-webside called 'home\" eller 'include:home.html' for å inkludere en fil." +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Eksempel: fisking fotografering programvare" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" -msgstr "Bevar URL-en til nettstedets hjemmeside" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Musikkinteresser" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige plasseringen i stedet for å omdirigere" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Bøker, litteratur" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" -msgstr "Kontoer forlatt etter x dager" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "TV/fjernsyn" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense." +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" -msgstr "Tillatte vennedomener" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobbier/Interesser" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener." +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" -msgstr "Tillate e-postdomener" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" -msgstr "Ikke tillatte e-postdomener" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Mine andre kanaler" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt, med mindre tillate domener er blitt definert." +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +msgid "Profile Image" +msgstr "Profilbilde" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" -msgstr "Bekreft e-postadresser" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 +#: ../../include/channel.php:937 +msgid "Edit Profiles" +msgstr "Endre profiler" -#: ../../Zotlabs/Module/Admin.php:519 +#: ../../Zotlabs/Module/Profile_photo.php:179 msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Sett hake for å sjekke e-postadresser brukt ved kontoregistrering (anbefales)." +"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/Admin.php:520 -msgid "Force publish" -msgstr "Tving publisering" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Last opp profilbilde:" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog." +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ugyldig profil-identifikator." -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" -msgstr "Importer offentlige innholdsstrømmer" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Endre profilsynlighet" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Importer og gi tilgang til offentlig innhold trukket inn fra andre nettsteder. Advarsel: dette innholdet er ikke moderert." +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profil" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" -msgstr "Logg inn på hjemmesiden" +#: ../../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/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert." +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Synlig for" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" -msgstr "Skru på kontekstsensitiv hjelp" +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Offentlige huber" -#: ../../Zotlabs/Module/Admin.php:523 +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Vis hjelp for den gjeldende siden når Hjelp-knappen trykkes." +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Nettstedene på listen tillater offentlig registrering i $Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger." -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" -msgstr "Katalogtjener URL" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Nettstedets URL" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" -msgstr "Standard katalogtjener" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Tilgangstype" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" -msgstr "Brukernavn mellomtjener" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Retningslinjer for registrering" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" -msgstr "Mellomtjener URL" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" -msgstr "Nettverk tidsavbrudd" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)." +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Vurderinger" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" -msgstr "Leveringsinterval" +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Vurder" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere." +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Nettsted:" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" -msgstr "Leveranser per prosess" +#: ../../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/Admin.php:531 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Antall leveranser som forsøkes i en enkelt operativsystemprosess. Juster om nødvendig for å fininnstille systemets yteevne. Anbefaling: 1-5." +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Vurdering (denne informasjonen er offentlig)" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" -msgstr "Spørreintervall" - -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet." +#: ../../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/Admin.php:533 -msgid "Maximum Load Average" -msgstr "Største belastningsgjennomsnitt" +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Ingen vurderinger" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Vurdering:" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Antall dager før importert innhold (nettet/nettverk) utgår" +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Nettsted:" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" -msgstr "0 dersom importert innhold ikke skal utgå" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Beskrivelse:" -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "Off" -msgstr "Av" +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." +msgstr "Temainnstillinger er oppdatert." -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "On" -msgstr "På" +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" +msgstr "# Kontoer" -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" -msgstr "Lås funksjon %s" +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" +msgstr "# blokkerte kontoer" -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" -msgstr "Håndter tilleggsfunksjoner" +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" +msgstr "# utgåtte kontoer" -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" -msgstr "Ingen tjener funnet" +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" +msgstr "# kontoer som holder på å gå ut" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" +msgstr "# Kanaler" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" -msgstr "for kanalen" +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" +msgstr "# hoved" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" -msgstr "på tjener" +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" +msgstr "# kloner" -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" -msgstr "Tjener" +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" +msgstr "Meldingskøer" -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Standardinnstillingen er at ufiltrert HTML er tillat ved innebygging av media. Dette er grunnleggende usikkert." +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "Anbefalt innstilling er å bare tillate ufiltrert HTML fra følgende nettsteder:" +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 +#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 +#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 +#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 +#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 +#: ../../Zotlabs/Module/Admin.php:1731 +msgid "Administration" +msgstr "Administrasjon" -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" +msgstr "Sammendrag" -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Alt annet innebygget innhold vil bli filtrert, med mindre innebygget innhold fra det nettstedet er eksplisitt blokkert." +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" +msgstr "Registrerte kontoer" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 -msgid "Security" -msgstr "Sikkerhet" +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +msgid "Pending registrations" +msgstr "Ventende registreringer" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" -msgstr "Blokker offentlig tilgang" +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" +msgstr "Registrerte kanaler" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn." +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +msgid "Active plugins" +msgstr "Aktive tilleggsfunksjoner" -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Sett HTTP header \"Transport Security\"" +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" +msgstr "Versjon" -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Sett HTTP header \"Content Security Policy\"" +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" -msgstr "Tillat kommunikasjon med bare disse nettstedene" +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Et nettsted per linje. La det stå tomt for å tillate kommunikasjon med ethvert nettsted som standard" +#: ../../Zotlabs/Module/Admin.php:373 +msgid "Site settings updated." +msgstr "Nettstedsinnstillinger er oppdatert." -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" -msgstr "Blokker kommunikasjon fra disse nettstedene" +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +msgid "Default" +msgstr "Standard" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" -msgstr "Tillat kommunikasjon med bare disse kanalene" +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +msgid "mobile" +msgstr "mobil" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "En kanal (hash) per linje. La det stå tomt for å tillate enhver kanal som standard" +#: ../../Zotlabs/Module/Admin.php:412 +msgid "experimental" +msgstr "eksperimentell" -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" -msgstr "Blokker kommunikasjon fra disse kanalene" +#: ../../Zotlabs/Module/Admin.php:414 +msgid "unsupported" +msgstr "ikke støttet" -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Bare tillat innebygging fra sikrede (SSL) nettsteder og lenker." +#: ../../Zotlabs/Module/Admin.php:460 +msgid "Yes - with approval" +msgstr "Ja - med godkjenning" -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Tillat ufiltrert innebygging av HTML-innhold bare fra disse domenene" +#: ../../Zotlabs/Module/Admin.php:466 +msgid "My site is not a public server" +msgstr "Mitt nettsted er ikke en offentlig tjeneste" -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." -msgstr "Et nettsted per linje. Det er standard at innebygget innhold er filtrert." +#: ../../Zotlabs/Module/Admin.php:467 +msgid "My site has paid access only" +msgstr "Mitt nettsted gir kun tilgang mot betaling" -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" -msgstr "Blokker innbygget HTML fra disse domenene" +#: ../../Zotlabs/Module/Admin.php:468 +msgid "My site has free access only" +msgstr "Mitt nettsted har kun gratis tilgang" -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" -msgstr "Oppdateringen har blitt merket som en suksess" +#: ../../Zotlabs/Module/Admin.php:469 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste" -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Utføring av %s feilet. Sjekk systemlogger." +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +msgid "Site" +msgstr "Nettsted" -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Oppdatering %s ble gjennomført med suksess." +#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 +msgid "Registration" +msgstr "Registrering" -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket." +#: ../../Zotlabs/Module/Admin.php:494 +msgid "File upload" +msgstr "Last opp fil" -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." -msgstr "Oppdatering av funksjon %s kunne ikke finnes." +#: ../../Zotlabs/Module/Admin.php:495 +msgid "Policies" +msgstr "Retningslinjer" -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." -msgstr "Ingen mislykkede oppdateringer." +#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avansert" -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" -msgstr "Mislykkede oppdateringer" +#: ../../Zotlabs/Module/Admin.php:500 +msgid "Site name" +msgstr "Nettstedets navn" -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" -msgstr "Marker suksess (hvis oppdateringen ble gjennomført manuelt)" +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Banner/Logo" +msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" -msgstr "Prøv å gjennomføre dette oppdateringstrinnet automatisk" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "Administrator Information" +msgstr "Administratorinformasjon" -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" -msgstr "Køstatistikk" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her" -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" -msgstr "Totalt antall oppføringer" +#: ../../Zotlabs/Module/Admin.php:503 +msgid "System language" +msgstr "Systemspråk" -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" -msgstr "Prioritet" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "System theme" +msgstr "Systemtema" -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" -msgstr "Mål-URL" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger" -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" -msgstr "Merk hub som permanent offline" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Mobile system theme" +msgstr "Mobilt systemtema" -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" -msgstr "Tøm køen for denne hubben" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Theme for mobile devices" +msgstr "Tema for mobile enheter" -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" -msgstr "Siste kjente kontakt" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "Allow Feeds as Connections" +msgstr "Tillat strømmer som forbindelser" -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s konto blokkert/ikke blokkert lenger" -msgstr[1] "%s kontoer blokkert/ikke blokkert lenger" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "(Heavy system resource usage)" +msgstr "(Tung bruk av systemressurser)" -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s konto slettet" -msgstr[1] "%s kontoer slettet" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "Maximum image size" +msgstr "Største bildestørrelse" -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "Kontoen ble ikke funnet" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset." -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "Kontoen '%s' slettet" +#: ../../Zotlabs/Module/Admin.php:509 +msgid "Does this site allow new member registration?" +msgstr "Tillater dette nettstedet registrering av nye medlemmer?" -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "Kontoen '%s' blokkert" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Invitation only" +msgstr "Kun inviterte" -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Kontoen '%s' er ikke blokkert lenger" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "Tillat bare nye medlemsregistreringer med en invitasjonskode. Ovenstående retningslinjer for registrering må være satt til Ja." -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 -msgid "Accounts" -msgstr "Kontoer" +#: ../../Zotlabs/Module/Admin.php:511 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?" -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "velg alle" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Register text" +msgstr "Registreringstekst" -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" -msgstr "Registreringer venter på bekreftelse" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Will be displayed prominently on the registration page." +msgstr "Vil bli vist på en fremtredende måte på registreringssiden." -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "Dato for forespørsel" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Nettstedets hjemmeside som vises til besøkende (standard: innloggingsboks)" -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "Ingen registreringer." +#: ../../Zotlabs/Module/Admin.php:513 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "eksempel: 'public' for å vise offentlig strøm av innlegg, 'page/sys/home/ for å vise en system-webside called 'home\" eller 'include:home.html' for å inkludere en fil." -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "Avslå" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Preserve site homepage URL" +msgstr "Bevar URL-en til nettstedets hjemmeside" -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" -msgstr "Alle kanaler" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige plasseringen i stedet for å omdirigere" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" -msgstr "Registreringsdato" +#: ../../Zotlabs/Module/Admin.php:515 +msgid "Accounts abandoned after x days" +msgstr "Kontoer forlatt etter x dager" -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" -msgstr "Siste innlogging" +#: ../../Zotlabs/Module/Admin.php:515 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense." -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" -msgstr "Utløper" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "Allowed friend domains" +msgstr "Tillatte vennedomener" -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" -msgstr "Tjenesteklasse" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener." -#: ../../Zotlabs/Module/Admin.php:1054 +#: ../../Zotlabs/Module/Admin.php:517 +msgid "Allowed email domains" +msgstr "Tillate e-postdomener" + +#: ../../Zotlabs/Module/Admin.php:517 msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valgte kontoer vil bli slettet!\\n\\nAlt disse kontoene har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette disse valgte kontoene?" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt" -#: ../../Zotlabs/Module/Admin.php:1055 +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Not allowed email domains" +msgstr "Ikke tillatte e-postdomener" + +#: ../../Zotlabs/Module/Admin.php:518 msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Kontoen {0} vl bli slettet!\\n\\nAlt denne kontoen har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette denne kontoen?" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt, med mindre tillate domener er blitt definert." -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s kanal er sensurert/ikke sensurert lenger" -msgstr[1] "%s kanaler er sensurert/ikke sensurert lenger" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "Verify Email Addresses" +msgstr "Bekreft e-postadresser" -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s kanal med kode tillatt/ikke tillatt" -msgstr[1] "%s kanaler med kode tillatt/ikke tillatt" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Sett hake for å sjekke e-postadresser brukt ved kontoregistrering (anbefales)." -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s kanal slettet" -msgstr[1] "%s kanaler slettet" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Force publish" +msgstr "Tving publisering" -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "Kanalen ble ikke funnet" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog." -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanalen '%s' er slettet" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Import Public Streams" +msgstr "Importer offentlige innholdsstrømmer" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanalen '%s' er sensurert" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Importer og gi tilgang til offentlig innhold trukket inn fra andre nettsteder. Advarsel: dette innholdet er ikke moderert." -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanalen '%s' er ikke sensurert lenger" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Login on Homepage" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Kanal '%s' kode tillatt" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert." -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Kanal '%s' kode ikke tillatt" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Enable context help" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 -msgid "Channels" -msgstr "Kanaler" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" -msgstr "Sensurer" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Directory Server URL" +msgstr "Katalogtjener URL" -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" -msgstr "Ikke sensurer lenger" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Default directory server" +msgstr "Standard katalogtjener" -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" -msgstr "Tillat kode" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Proxy user" +msgstr "Brukernavn mellomtjener" -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" -msgstr "Ikke tillat kode" +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Proxy URL" +msgstr "Mellomtjener URL" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 -msgid "Channel" -msgstr "Kanal" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Network timeout" +msgstr "Nettverk tidsavbrudd" -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)." -#: ../../Zotlabs/Module/Admin.php:1226 +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Delivery interval" +msgstr "Leveringsinterval" + +#: ../../Zotlabs/Module/Admin.php:530 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere." -#: ../../Zotlabs/Module/Admin.php:1227 +#: ../../Zotlabs/Module/Admin.php:531 +msgid "Deliveries per process" +msgstr "Leveranser per prosess" + +#: ../../Zotlabs/Module/Admin.php:531 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Antall leveranser som forsøkes i en enkelt operativsystemprosess. Juster om nødvendig for å fininnstille systemets yteevne. Anbefaling: 1-5." + +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Poll interval" +msgstr "Spørreintervall" + +#: ../../Zotlabs/Module/Admin.php:532 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet." + +#: ../../Zotlabs/Module/Admin.php:533 +msgid "Maximum Load Average" +msgstr "Største belastningsgjennomsnitt" + +#: ../../Zotlabs/Module/Admin.php:533 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50." + +#: ../../Zotlabs/Module/Admin.php:534 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Antall dager før importert innhold (nettet/nettverk) utgår" + +#: ../../Zotlabs/Module/Admin.php:534 +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 +msgid "Off" +msgstr "Av" + +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "On" +msgstr "På" + +#: ../../Zotlabs/Module/Admin.php:678 +#, php-format +msgid "Lock feature %s" +msgstr "Lås funksjon %s" + +#: ../../Zotlabs/Module/Admin.php:686 +msgid "Manage Additional Features" +msgstr "Håndter tilleggsfunksjoner" + +#: ../../Zotlabs/Module/Admin.php:703 +msgid "No server found" +msgstr "Ingen tjener funnet" + +#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +msgid "ID" +msgstr "ID" + +#: ../../Zotlabs/Module/Admin.php:710 +msgid "for channel" +msgstr "for kanalen" + +#: ../../Zotlabs/Module/Admin.php:710 +msgid "on server" +msgstr "på tjener" -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." -msgstr "Tilleggsfunksjonen %s er avskrudd." +#: ../../Zotlabs/Module/Admin.php:712 +msgid "Server" +msgstr "Tjener" -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." -msgstr "Tilleggsfunksjonen %s er påskrudd." +#: ../../Zotlabs/Module/Admin.php:746 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" -msgstr "Skru av" +#: ../../Zotlabs/Module/Admin.php:749 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" -msgstr "Skru på" +#: ../../Zotlabs/Module/Admin.php:750 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 -msgid "Plugins" -msgstr "Tilleggsfunksjoner" +#: ../../Zotlabs/Module/Admin.php:751 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" -msgstr "Skru av og på" +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +msgid "Security" +msgstr "Sikkerhet" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 -msgid "Settings" -msgstr "Innstillinger" +#: ../../Zotlabs/Module/Admin.php:758 +msgid "Block public" +msgstr "Blokker offentlig tilgang" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " -msgstr "Forfatter:" +#: ../../Zotlabs/Module/Admin.php:758 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn." -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " -msgstr "Vedlikeholder:" +#: ../../Zotlabs/Module/Admin.php:759 +msgid "Set \"Transport Security\" HTTP header" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " -msgstr "Minimum prosjektversjon:" +#: ../../Zotlabs/Module/Admin.php:760 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " -msgstr "Maksimum prosjektversjon:" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "Allow communications only from these sites" +msgstr "Tillat kommunikasjon med bare disse nettstedene" -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " -msgstr "Minimum PHP-versjon:" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Et nettsted per linje. La det stå tomt for å tillate kommunikasjon med ethvert nettsted som standard" -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " -msgstr "Krever:" +#: ../../Zotlabs/Module/Admin.php:762 +msgid "Block communications from these sites" +msgstr "Blokker kommunikasjon fra disse nettstedene" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" -msgstr "Skrudd av - versjonsinkompatibilitet" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "Allow communications only from these channels" +msgstr "Tillat kommunikasjon med bare disse kanalene" -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Skriv inn URL-en til det offentlige git-depoet til tillegget." +#: ../../Zotlabs/Module/Admin.php:763 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "En kanal (hash) per linje. La det stå tomt for å tillate enhver kanal som standard" -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" -msgstr "Git-URL-en til tillegget" +#: ../../Zotlabs/Module/Admin.php:764 +msgid "Block communications from these channels" +msgstr "Blokker kommunikasjon fra disse kanalene" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" -msgstr "Tilpasset depotnavn" +#: ../../Zotlabs/Module/Admin.php:765 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" -msgstr "(valgfritt)" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" -msgstr "Last ned depotet til tillegget" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "One site per line. By default embedded content is filtered." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" -msgstr "Installer nytt depot" +#: ../../Zotlabs/Module/Admin.php:767 +msgid "Block embedded HTML from these domains" +msgstr "Blokker innbygget HTML fra disse domenene" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Installer" +#: ../../Zotlabs/Module/Admin.php:785 +msgid "Update has been marked successful" +msgstr "Oppdateringen har blitt merket som en suksess" -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" -msgstr "Håndter depoter" +#: ../../Zotlabs/Module/Admin.php:795 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Utføring av %s feilet. Sjekk systemlogger." -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" -msgstr "Installerede tilleggsdepoter" +#: ../../Zotlabs/Module/Admin.php:798 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Oppdatering %s ble gjennomført med suksess." -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" -msgstr "Installer et nytt tillleggsdepot" +#: ../../Zotlabs/Module/Admin.php:802 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket." -#: ../../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:805 +#, php-format +msgid "Update function %s could not be found." +msgstr "Oppdatering av funksjon %s kunne ikke finnes." -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" -msgstr "Bytt gren" +#: ../../Zotlabs/Module/Admin.php:821 +msgid "No failed updates." +msgstr "Ingen mislykkede oppdateringer." -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." -msgstr "Ingen temaer er funnet." +#: ../../Zotlabs/Module/Admin.php:825 +msgid "Failed Updates" +msgstr "Mislykkede oppdateringer" -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" -msgstr "Skjermbilde" +#: ../../Zotlabs/Module/Admin.php:827 +msgid "Mark success (if update was manually applied)" +msgstr "Marker suksess (hvis oppdateringen ble gjennomført manuelt)" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 -msgid "Themes" -msgstr "Temaer" +#: ../../Zotlabs/Module/Admin.php:828 +msgid "Attempt to execute this update step automatically" +msgstr "Prøv å gjennomføre dette oppdateringstrinnet automatisk" -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" -msgstr "[Eksperimentelt]" +#: ../../Zotlabs/Module/Admin.php:859 +msgid "Queue Statistics" +msgstr "Køstatistikk" -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" -msgstr "[Ingen støtte]" +#: ../../Zotlabs/Module/Admin.php:860 +msgid "Total Entries" +msgstr "Totalt antall oppføringer" -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." -msgstr "Logginnstillinger er oppdatert." +#: ../../Zotlabs/Module/Admin.php:861 +msgid "Priority" +msgstr "Prioritet" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 -msgid "Logs" -msgstr "Logger" +#: ../../Zotlabs/Module/Admin.php:862 +msgid "Destination URL" +msgstr "Mål-URL" -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" -msgstr "Tøm" +#: ../../Zotlabs/Module/Admin.php:863 +msgid "Mark hub permanently offline" +msgstr "Merk hub som permanent offline" -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" -msgstr "Feilsøking" +#: ../../Zotlabs/Module/Admin.php:864 +msgid "Empty queue for this hub" +msgstr "Tøm køen for denne hubben" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" -msgstr "Loggfil" +#: ../../Zotlabs/Module/Admin.php:865 +msgid "Last known contact" +msgstr "Siste kjente kontakt" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Må kunne skrives til av webtjenesten. Relativ til din toppnivåkatalog på webtjeneren." +#: ../../Zotlabs/Module/Admin.php:901 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s konto blokkert/ikke blokkert lenger" +msgstr[1] "%s kontoer blokkert/ikke blokkert lenger" -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "Loggnivå" +#: ../../Zotlabs/Module/Admin.php:908 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s konto slettet" +msgstr[1] "%s kontoer slettet" -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "Nytt profilfelt" +#: ../../Zotlabs/Module/Admin.php:944 +msgid "Account not found" +msgstr "Kontoen ble ikke funnet" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "Feltets kallenavn" +#: ../../Zotlabs/Module/Admin.php:955 +#, php-format +msgid "Account '%s' deleted" +msgstr "Kontoen '%s' slettet" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "Systemnavnet til feltet" +#: ../../Zotlabs/Module/Admin.php:963 +#, php-format +msgid "Account '%s' blocked" +msgstr "Kontoen '%s' blokkert" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "Inndata-type" +#: ../../Zotlabs/Module/Admin.php:971 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Kontoen '%s' er ikke blokkert lenger" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "Feltnavn" +#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 +#: ../../include/widgets.php:1383 +msgid "Accounts" +msgstr "Kontoer" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" -msgstr "Merkelapp på profilsider" +#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +msgid "select all" +msgstr "velg alle" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" -msgstr "Hjelpetekst" +#: ../../Zotlabs/Module/Admin.php:1034 +msgid "Registrations waiting for confirm" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" -msgstr "Tilleggsinformasjon (valgfritt)" +#: ../../Zotlabs/Module/Admin.php:1035 +msgid "Request date" +msgstr "Dato for forespørsel" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" -msgstr "Feltdefinisjonen ble ikke funnet" +#: ../../Zotlabs/Module/Admin.php:1036 +msgid "No registrations." +msgstr "Ingen registreringer." -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" -msgstr "Endre profilfelt" +#: ../../Zotlabs/Module/Admin.php:1038 +msgid "Deny" +msgstr "Avslå" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 -msgid "Profile Fields" -msgstr "Profilfelter" +#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +msgid "All Channels" +msgstr "Alle kanaler" -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" -msgstr "Grunnleggende profilfelter" +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "Register date" +msgstr "Registreringsdato" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" -msgstr "Avanserte profilfelter" +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Last login" +msgstr "Siste innlogging" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" -msgstr "(i tillegg til grunnleggende felter)" +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Expires" +msgstr "Utløper" -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" -msgstr "Alle tilgjengelige felter" +#: ../../Zotlabs/Module/Admin.php:1052 +msgid "Service Class" +msgstr "Tjenesteklasse" -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" -msgstr "Tilpassede felter" +#: ../../Zotlabs/Module/Admin.php:1054 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Valgte kontoer vil bli slettet!\\n\\nAlt disse kontoene har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette disse valgte kontoene?" -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" -msgstr "Lag tilpasset felt" +#: ../../Zotlabs/Module/Admin.php:1055 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Kontoen {0} vl bli slettet!\\n\\nAlt denne kontoen har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette denne kontoen?" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Navn eller overskrift" +#: ../../Zotlabs/Module/Admin.php:1091 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s kanal er sensurert/ikke sensurert lenger" +msgstr[1] "%s kanaler er sensurert/ikke sensurert lenger" -#: ../../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/Admin.php:1100 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s kanal med kode tillatt/ikke tillatt" +msgstr[1] "%s kanaler med kode tillatt/ikke tillatt" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Velg et kort kallenavn" +#: ../../Zotlabs/Module/Admin.php:1106 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s kanal slettet" +msgstr[1] "%s kanaler slettet" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/Admin.php:1126 +msgid "Channel not found" +msgstr "Kanalen ble ikke funnet" + +#: ../../Zotlabs/Module/Admin.php:1136 #, 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" +msgid "Channel '%s' deleted" +msgstr "Kanalen '%s' er slettet" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanalrolle og personvern" +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanalen '%s' er sensurert" -#: ../../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/Admin.php:1148 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanalen '%s' er ikke sensurert lenger" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Les mer om roller" +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Kanal '%s' kode tillatt" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Lag kanal" +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Kanal '%s' kode ikke tillatt" -#: ../../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/Admin.php:1210 ../../include/widgets.php:1384 +msgid "Channels" +msgstr "Kanaler" -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "eller importer en eksisterende kanal fra et annet sted." +#: ../../Zotlabs/Module/Admin.php:1214 +msgid "Censor" +msgstr "Sensurer" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "sendte deg en privat melding" +#: ../../Zotlabs/Module/Admin.php:1215 +msgid "Uncensor" +msgstr "Ikke sensurer lenger" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "la til din kanal" +#: ../../Zotlabs/Module/Admin.php:1216 +msgid "Allow Code" +msgstr "Tillat kode" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l F d" +#: ../../Zotlabs/Module/Admin.php:1217 +msgid "Disallow Code" +msgstr "Ikke tillat kode" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[idag]" +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +msgid "Channel" +msgstr "Kanal" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "la ut en hendelse" +#: ../../Zotlabs/Module/Admin.php:1222 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ugyldig forespørselsidentifikator." +#: ../../Zotlabs/Module/Admin.php:1226 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Forkast" +#: ../../Zotlabs/Module/Admin.php:1227 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Merk alle systemvarsler som sett" +#: ../../Zotlabs/Module/Admin.php:1284 +#, php-format +msgid "Plugin %s disabled." +msgstr "Tilleggsfunksjonen %s er avskrudd." -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Prikk" +#: ../../Zotlabs/Module/Admin.php:1288 +#, php-format +msgid "Plugin %s enabled." +msgstr "Tilleggsfunksjonen %s er påskrudd." -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Dult noen" +#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +msgid "Disable" +msgstr "Skru av" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Prikke/oppildne" +#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +msgid "Enable" +msgstr "Skru på" -#: ../../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/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 +#: ../../include/widgets.php:1387 +msgid "Plugins" +msgstr "Tilleggsfunksjoner" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Mottaker" +#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +msgid "Toggle" +msgstr "Skru av og på" -#: ../../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/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 +msgid "Settings" +msgstr "Innstillinger" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Gjør dette innlegget privat" +#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +msgid "Author: " +msgstr "Forfatter:" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Ikke i stand til å finne hubben din." +#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +msgid "Maintainer: " +msgstr "Vedlikeholder:" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Innlegg vellykket." +#: ../../Zotlabs/Module/Admin.php:1341 +msgid "Minimum project version: " +msgstr "Minimum prosjektversjon:" -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protokollfeil. Ingen ID ble returnert." +#: ../../Zotlabs/Module/Admin.php:1342 +msgid "Maximum project version: " +msgstr "Maksimum prosjektversjon:" -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Innlogging mislyktes." +#: ../../Zotlabs/Module/Admin.php:1343 +msgid "Minimum PHP version: " +msgstr "Minimum PHP-versjon:" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ugyldig profil-identifikator." +#: ../../Zotlabs/Module/Admin.php:1344 +msgid "Requires: " +msgstr "Krever:" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Endre profilsynlighet" +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +msgid "Disabled - version incompatibility" +msgstr "Skrudd av - versjonsinkompatibilitet" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profil" +#: ../../Zotlabs/Module/Admin.php:1394 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klikk på en kontakt for å legge til eller fjerne." +#: ../../Zotlabs/Module/Admin.php:1395 +msgid "Plugin repo git URL" +msgstr "" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Synlig for" +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "Custom repo name" +msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert." +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "(optional)" +msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Konfigurasjonsbehandler" +#: ../../Zotlabs/Module/Admin.php:1397 +msgid "Download Plugin Repo" +msgstr "" -#: ../../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/Admin.php:1404 +msgid "Install new repo" +msgstr "" -#: ../../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/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +msgid "Install" +msgstr "Installer" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versjon %s" +#: ../../Zotlabs/Module/Admin.php:1427 +msgid "Manage Repos" +msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Installerte tilleggsfunksjoner/tillegg/apper:" +#: ../../Zotlabs/Module/Admin.php:1428 +msgid "Installed Plugin Repositories" +msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Ingen installerte tilleggsfunksjoner/tillegg/apper" +#: ../../Zotlabs/Module/Admin.php:1429 +msgid "Install a New Plugin Repository" +msgstr "" -#: ../../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/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +msgid "Update" +msgstr "Oppdater" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Merkelapp:" +#: ../../Zotlabs/Module/Admin.php:1436 +msgid "Switch branch" +msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Siste innhenting i bakgrunnen:" +#: ../../Zotlabs/Module/Admin.php:1550 +msgid "No themes found." +msgstr "Ingen temaer er funnet." -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Gjeldende belastningsgjennomsnitt:" +#: ../../Zotlabs/Module/Admin.php:1606 +msgid "Screenshot" +msgstr "Skjermbilde" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Kjører på webplasseringen" +#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 +#: ../../include/widgets.php:1388 +msgid "Themes" +msgstr "Temaer" -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Vennligst besøk hubzilla.org for å lære mer om $Projectname." +#: ../../Zotlabs/Module/Admin.php:1652 +msgid "[Experimental]" +msgstr "[Eksperimentelt]" -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Feilmeldinger og feilretting: vennligst besøk" +#: ../../Zotlabs/Module/Admin.php:1653 +msgid "[Unsupported]" +msgstr "[Ingen støtte]" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "$projectname problemer" +#: ../../Zotlabs/Module/Admin.php:1677 +msgid "Log settings updated." +msgstr "Logginnstillinger er oppdatert." -#: ../../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/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 +msgid "Logs" +msgstr "Logger" -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Nettstedsadministratorer" +#: ../../Zotlabs/Module/Admin.php:1734 +msgid "Clear" +msgstr "Tøm" -#: ../../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/Admin.php:1740 +msgid "Debugging" +msgstr "Feilsøking" -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Feilmeldingen var:" +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "Log file" +msgstr "Loggfil" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Autentisering mislyktes." +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Fjernautentisering" +#: ../../Zotlabs/Module/Admin.php:1742 +msgid "Log level" +msgstr "Loggnivå" -#: ../../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/Admin.php:2028 +msgid "New Profile Field" +msgstr "Nytt profilfelt" -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Autentiser" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "Field nickname" +msgstr "Feltets kallenavn" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Offentlige huber" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "System name of field" +msgstr "Systemnavnet til feltet" -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Nettstedene på listen tillater offentlig registrering i $Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger." +#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +msgid "Input type" +msgstr "Inndata-type" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Nettstedets URL" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Field Name" +msgstr "Feltnavn" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tilgangstype" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Label on profile pages" +msgstr "Merkelapp på profilsider" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Retningslinjer for registrering" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Help text" +msgstr "Hjelpetekst" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistikk" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Additional info (optional)" +msgstr "Tilleggsinformasjon (valgfritt)" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Programvare" +#: ../../Zotlabs/Module/Admin.php:2042 +msgid "Field definition not found" +msgstr "Feltdefinisjonen ble ikke funnet" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Vurderinger" +#: ../../Zotlabs/Module/Admin.php:2048 +msgid "Edit Profile Field" +msgstr "Endre profilfelt" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Vurder" +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +msgid "Profile Fields" +msgstr "" -#: ../../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/Admin.php:2107 +msgid "Basic Profile Fields" +msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Last opp profilbilde:" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "Advanced Profile Fields" +msgstr "" -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Byggeklossens navn" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "(In addition to basic fields)" +msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Byggeklosser" +#: ../../Zotlabs/Module/Admin.php:2110 +msgid "All available fields" +msgstr "" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Byggeklossens tittel" +#: ../../Zotlabs/Module/Admin.php:2111 +msgid "Custom Fields" +msgstr "" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Nettsted:" +#: ../../Zotlabs/Module/Admin.php:2115 +msgid "Create Custom Field" +msgstr "" -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installert." -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Vurdering (denne informasjonen er offentlig)" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Feil oppsett for app-en." -#: ../../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/Appman.php:104 +msgid "Embed code" +msgstr "Innbyggingskode" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Ingen vurderinger" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Endre app" -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Vurdering:" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Lag app" -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Nettsted:" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Navn på app" -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Beskrivelse:" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Plassering (URL) til app" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Apper" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Bildeikon URL" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Tittel (valgfri)" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x80 pixler - valgfritt" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Endre byggekloss" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Ingen kanal." +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versjons-ID" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Felles forbindelser" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Pris på app" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Ingen forbindelser felles." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Plassering (URL) for å kjøpe app" #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4984,154 +4750,120 @@ 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:149 -#: ../../boot.php:1686 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 msgid "Register" msgstr "Registrer" -#: ../../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/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Gå videre for å lage din første kanal" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Vennligst logg inn." -#: ../../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 "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet." -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "Slett denne kontoen" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "ADVARSEL:" -#: ../../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 "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket." -#: ../../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 "Denne handlingen er permanent og kan ikke angres!" -#: ../../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 "Vennligst skriv ditt passord for å få bekreftelse:" -#: ../../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 "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket" -#: ../../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 "Som standard vil bare forekomster av kanalene lokalisert på denne hubben bli slettet fra nettverket" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Remove Account" msgstr "Slett konto" -#: ../../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 "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet." -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "Fjern denne kanalen" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "This channel will be completely removed from the network. " msgstr "Denne kanalen vil bli fullstendig fjernet fra nettverket." -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "Remove this channel and all its clones from the network" msgstr "Fjern denne kanalen og alle dens kloner fra nettverket" -#: ../../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 "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 msgid "Remove Channel" msgstr "Fjern kanal" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Eksporter kanal" - -#: ../../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/Uexport.php:58 -msgid "Export Content" -msgstr "Eksporter innhold" - -#: ../../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 "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." +"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/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Eksporter dine innlegg fra et bestemt år" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Feilmeldingen var:" -#: ../../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:48 +msgid "Authentication failed." +msgstr "Autentisering mislyktes." -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "For å velge alle innlegg for et gitt år, slik som iår, besøk %2$s" +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Fjernautentisering" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2$s" +#: ../../Zotlabs/Module/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:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)." +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Autentiser" #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -5147,652 +4879,609 @@ msgstr "Søkeresultater for: %s" msgid "No service class restrictions found." msgstr "Ingen restriksjoner er funnet i tjenesteklasse." -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:69 msgid "Name is required" msgstr "Navn er påkrevd" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:73 msgid "Key and Secret are required" msgstr "Nøkkel og hemmelighet er påkrevd" -#: ../../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 +#: ../../Zotlabs/Module/Settings.php:225 msgid "Not valid email." msgstr "Ikke gyldig e-post." -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../Zotlabs/Module/Settings.php:228 msgid "Protected email address. Cannot change to that email." msgstr "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen." -#: ../../Zotlabs/Module/Settings.php:286 +#: ../../Zotlabs/Module/Settings.php:237 msgid "System failure storing new email. Please try again." msgstr "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen." -#: ../../Zotlabs/Module/Settings.php:303 +#: ../../Zotlabs/Module/Settings.php:254 msgid "Password verification failed." msgstr "Passordbekreftelsen mislyktes." -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../Zotlabs/Module/Settings.php:261 msgid "Passwords do not match. Password unchanged." msgstr "Passordene stemmer ikke overens. Passord uforandret." -#: ../../Zotlabs/Module/Settings.php:314 +#: ../../Zotlabs/Module/Settings.php:265 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Tomme passord er ikke tillatt. Passord uforandret." -#: ../../Zotlabs/Module/Settings.php:328 +#: ../../Zotlabs/Module/Settings.php:279 msgid "Password changed." msgstr "Passord endret." -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../Zotlabs/Module/Settings.php:281 msgid "Password update failed. Please try again." msgstr "Passord oppdatering mislyktes. Vennligst prøv igjen." -#: ../../Zotlabs/Module/Settings.php:579 +#: ../../Zotlabs/Module/Settings.php:525 msgid "Settings updated." msgstr "Innstillinger oppdatert." -#: ../../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 "Legg til program" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:592 msgid "Name of application" msgstr "Navn på program" -#: ../../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 "Automatisk laget - kan endres om du vil. Største lengde 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 "Omdirigering" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../Zotlabs/Module/Settings.php:595 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 msgid "Icon url" msgstr "Ikon-URL" -#: ../../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 "Valgfritt" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:607 msgid "Application not found." msgstr "Programmet ble ikke funnet." -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:650 msgid "Connected Apps" msgstr "Tilkoblede app-er" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:654 msgid "Client key starts with" msgstr "Klientnøkkel starter med" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:655 msgid "No name" msgstr "Ikke noe navn" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:656 msgid "Remove authorization" msgstr "Fjern tillatelse" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Settings.php:669 msgid "No feature settings configured" msgstr "Ingen funksjonsinnstillinger er konfigurert" -#: ../../Zotlabs/Module/Settings.php:730 +#: ../../Zotlabs/Module/Settings.php:676 msgid "Feature/Addon Settings" msgstr "Funksjons-/Tilleggsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:699 msgid "Account Settings" msgstr "Kontoinnstillinger" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:700 msgid "Current Password" msgstr "Nåværende passord" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:701 msgid "Enter New Password" msgstr "Skriv nytt passord" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Confirm New Password" msgstr "Bekreft nytt passord" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Leave password fields blank unless changing" msgstr "La passordfeltene stå blanke om det ikke skal endres" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 msgid "Email Address:" msgstr "E-postadresse:" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../Zotlabs/Module/Settings.php:706 msgid "Remove this account including all its channels" msgstr "Slett denne kontoen inkludert alle dens kanaler" -#: ../../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 dropbox 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 +#: ../../Zotlabs/Module/Settings.php:729 msgid "Additional Features" msgstr "Ekstra funksjoner" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Connector Settings" msgstr "Koblingsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../Zotlabs/Module/Settings.php:792 msgid "No special theme for mobile devices" msgstr "Ikke noe spesielt tema for mobile enheter" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:795 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Eksperimentelt)" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:837 msgid "Display Settings" msgstr "Visningsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:838 msgid "Theme Settings" msgstr "Temainnstillinger" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:839 msgid "Custom Theme Settings" msgstr "Tilpassede temainnstillinger" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:840 msgid "Content Settings" msgstr "Innholdsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:846 msgid "Display Theme:" msgstr "Visningstema:" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:847 msgid "Mobile Theme:" msgstr "Mobiltema:" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "Preload images before rendering the page" msgstr "Last inn bildene før gjengivelsen av siden" -#: ../../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 "Den personlige opplevelsen av lastetiden vil være lenger, men siden vil være klar når den vises" -#: ../../Zotlabs/Module/Settings.php:950 +#: ../../Zotlabs/Module/Settings.php:849 msgid "Enable user zoom on mobile devices" msgstr "Skru på brukerstyrt zoom på mobile enheter" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Update browser every xx seconds" msgstr "Oppdater nettleser hvert xx sekunder" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 sekunder, ikke noe maksimum" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum number of conversations to load at any time:" msgstr "Maksimalt antall samtaler å laste samtidig:" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum of 100 items" msgstr "Maksimum 100 elementer" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:852 msgid "Show emoticons (smilies) as images" msgstr "Vis emoticons (smilefjes) som bilder" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../Zotlabs/Module/Settings.php:853 msgid "Link post titles to source" msgstr "Lenk innleggets tittel til kilden" -#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:854 msgid "System Page Layout Editor - (advanced)" msgstr "Systemsidens layoutbehandler - (avansert)" -#: ../../Zotlabs/Module/Settings.php:958 +#: ../../Zotlabs/Module/Settings.php:857 msgid "Use blog/list mode on channel page" msgstr "Bruk blogg-/listemodus på kanalsiden" -#: ../../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 "(kommentarer vist separat)" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:858 msgid "Use blog/list mode on grid page" msgstr "Bruk blogg-/liste-modus på nettverkssiden" -#: ../../Zotlabs/Module/Settings.php:960 +#: ../../Zotlabs/Module/Settings.php:859 msgid "Channel page max height of content (in pixels)" msgstr "Kanalsidens makshøyde for innhold (i pixler)" -#: ../../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 "klikk for å utvide innhold som overstiger denne høyden" -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:860 msgid "Grid page max height of content (in pixels)" msgstr "Nettverkssidens makshøyde for innhold (i piksler)" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:894 msgid "Nobody except yourself" msgstr "Ingen unntatt deg selv" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:895 msgid "Only those you specifically allow" msgstr "Bare de du spesifikt tillater" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:896 msgid "Approved connections" msgstr "Godkjente forbindelser" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:897 msgid "Any connections" msgstr "Enhver forbindelse" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:898 msgid "Anybody on this website" msgstr "Enhver ved dette nettstedet" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:899 msgid "Anybody in this network" msgstr "Enhver i dette nettverket" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:900 msgid "Anybody authenticated" msgstr "Enhver som er autentisert" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:901 msgid "Anybody on the internet" msgstr "Enhver på Internett" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../Zotlabs/Module/Settings.php:976 msgid "Publish your default profile in the network directory" msgstr "Publiser din standardprofil i nettverkskatalogen" -#: ../../Zotlabs/Module/Settings.php:1076 +#: ../../Zotlabs/Module/Settings.php:981 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Your channel address is" msgstr "Din kanaladresse er" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1032 msgid "Channel Settings" msgstr "Kanalinnstillinger" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1039 msgid "Basic Settings" msgstr "Grunninnstillinger" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 msgid "Full Name:" msgstr "Fullt navn:" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1042 msgid "Your Timezone:" msgstr "Din tidssone:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Default Post Location:" msgstr "Standard plassering ved innlegg:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Geographical location to display on your posts" msgstr "Geografisk plassering som vises på dine innlegg" -#: ../../Zotlabs/Module/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1044 msgid "Use Browser Location:" msgstr "Bruk nettleseren sin plassering:" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "Adult Content" msgstr "Voksent innhold" -#: ../../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 "Denne kanalen vil ofte eller jevnlig publisere voksent innhold. (Vennligst merk alt voksent materiale og/eller nakenhet med #NSFW)" -#: ../../Zotlabs/Module/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1048 msgid "Security and Privacy Settings" msgstr "Sikkerhets- og personverninnstillinger" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../Zotlabs/Module/Settings.php:1051 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Dine tillatelser er allerede satt. Klikk for å se/justere." -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Hide my online presence" msgstr "Skjul min tilstedeværelse online" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Prevents displaying in your profile that you are online" msgstr "Forhindrer visning på din profil av at du er online " -#: ../../Zotlabs/Module/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Simple Privacy Settings:" msgstr "Enkle personverninnstillinger:" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Settings.php:1056 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Svært offentlig - ekstremt åpent (bør brukes med varsomhet)" -#: ../../Zotlabs/Module/Settings.php:1152 +#: ../../Zotlabs/Module/Settings.php:1057 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Typisk - standard er offentlig, personvern når ønsket (likner på tillatelser i sosiale nettverk, men med forbedret personvern)" -#: ../../Zotlabs/Module/Settings.php:1153 +#: ../../Zotlabs/Module/Settings.php:1058 msgid "Private - default private, never open or public" msgstr "Privat - standard er privat, aldri åpen eller offentlig" -#: ../../Zotlabs/Module/Settings.php:1154 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "Blocked - default blocked to/from everybody" msgstr "Blokkert - standard blokkert til/fra alle" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "Allow others to tag your posts" msgstr "Tillat andre å merke dine innlegg" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant" -#: ../../Zotlabs/Module/Settings.php:1158 +#: ../../Zotlabs/Module/Settings.php:1063 msgid "Advanced Privacy Settings" msgstr "Avanserte personverninnstillinger" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "Expire other channel content after this many days" msgstr "Annet kanal innhold utløper etter så mange dager" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "0 or blank to use the website limit." -msgstr "0 eller ikke noe for å bruke nettstedets grense." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 #, php-format msgid "This website expires after %d days." -msgstr "Dette nettstedet utgår etter %d dager." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "This website does not expire imported content." -msgstr "Dette nettstedet lar ikke importert innhold utgå." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "The website limit takes precedence if lower than your limit." -msgstr "Nettstedets grense bestemmer hvis lavere enn din grense." +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "Maximum Friend Requests/Day:" msgstr "Maksimalt antall venneforespørsler per dag:" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "May reduce spam activity" msgstr "Kan redusere søppelpostaktivitet" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1067 msgid "Default Post and Publish Permissions" -msgstr "Standard innleggs- og publiseringstillatelser" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../Zotlabs/Module/Settings.php:1069 msgid "Use my default audience setting for the type of object published" -msgstr "Bruk min standard målgruppeinnstilling for objekttypen som publiseres" +msgstr "" -#: ../../Zotlabs/Module/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1072 msgid "Channel permissions category:" msgstr "Kategori med kanaltillatelser:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Maximum private messages per day from unknown people:" msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Useful to reduce spamming" msgstr "Nyttig for å redusere søppelpost" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1081 msgid "Notification Settings" msgstr "Varslingsinnstillinger" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1082 msgid "By default post a status message when:" msgstr "Legg inn en statusmelding når du:" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1083 msgid "accepting a friend request" msgstr "aksepterer en venneforespørsel" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1084 msgid "joining a forum/community" msgstr "blir med i et forum/miljø" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "making an interesting profile change" msgstr "gjør en interessant profilendring" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1086 msgid "Send a notification email when:" msgstr "Send en varsel-e-post når:" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1087 msgid "You receive a connection request" msgstr "Du har mottatt en forespørsel om forbindelse" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1088 msgid "Your connections are confirmed" msgstr "Dine forbindelser er bekreftet" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../Zotlabs/Module/Settings.php:1089 msgid "Someone writes on your profile wall" msgstr "Noen skriver på din profilvegg" -#: ../../Zotlabs/Module/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1090 msgid "Someone writes a followup comment" msgstr "Noen skriver en oppfølgende kommentar" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1091 msgid "You receive a private message" msgstr "Du mottar en privat melding" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1092 msgid "You receive a friend suggestion" msgstr "Du mottok et venneforslag" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1093 msgid "You are tagged in a post" msgstr "Du merkes i et innlegg" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../Zotlabs/Module/Settings.php:1094 msgid "You are poked/prodded/etc. in a post" msgstr "Du ble prikket/oppildnet/og så vider i et innlegg" -#: ../../Zotlabs/Module/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1097 msgid "Show visual notifications including:" msgstr "Vis visuelle varslinger om:" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1099 msgid "Unseen grid activity" msgstr "Usett nettverksaktivitet" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1100 msgid "Unseen channel activity" msgstr "Usett kanalaktivitet" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1101 msgid "Unseen private messages" msgstr "Usette private meldinger" -#: ../../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 "Anbefalt" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1102 msgid "Upcoming events" msgstr "Kommende hendelser" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1103 msgid "Events today" msgstr "Hendelser idag" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Upcoming birthdays" msgstr "Kommende fødselsdager" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Not available in all themes" msgstr "Ikke tilgjengelig i alle temaer" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1105 msgid "System (personal) notifications" msgstr "System (personlige) varslinger" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "System info messages" msgstr "System infomeldinger" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1107 msgid "System critical alerts" msgstr "System kritiske varsel" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "New connections" msgstr "Nye forbindelser" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1109 msgid "System Registrations" msgstr "Systemregistreringer" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1110 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Notify me of events this many days in advance" msgstr "Varsle meg om hendelser dette antall dager på forhånd" -#: ../../Zotlabs/Module/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Must be greater than 0" msgstr "Må være større enn 0" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../Zotlabs/Module/Settings.php:1114 msgid "Advanced Account/Page Type Settings" msgstr "Avanserte innstillinger for konto/sidetype" -#: ../../Zotlabs/Module/Settings.php:1210 +#: ../../Zotlabs/Module/Settings.php:1115 msgid "Change the behaviour of this account for special situations" msgstr "Endre oppførselen til denne kontoen i spesielle situasjoner" -#: ../../Zotlabs/Module/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1118 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Vennligst skru på ekspertmodus (under Innstillinger > Ekstra funksjoner) for å justere!" -#: ../../Zotlabs/Module/Settings.php:1214 +#: ../../Zotlabs/Module/Settings.php:1119 msgid "Miscellaneous Settings" msgstr "Diverse innstillinger" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "Default photo upload folder" msgstr "Standard mappe for opplasting av bilder" -#: ../../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 - nåværende år, %m - nåværende måned" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "Default file upload folder" msgstr "Standard mappe for opplasting av filer" -#: ../../Zotlabs/Module/Settings.php:1218 +#: ../../Zotlabs/Module/Settings.php:1123 msgid "Personal menu to display in your channel pages" msgstr "Personlig meny som kan vises på dine kanalsider" -#: ../../Zotlabs/Module/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Remove this channel." msgstr "Fjern denne kanalen." -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1126 msgid "Firefox Share $Projectname provider" msgstr "$Projectname Firefox Share tilbyder" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Start calendar week on monday" msgstr "Start uken med mandag i kalenderen" @@ -5825,7 +5514,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:722 +#: ../../Zotlabs/Module/Setup.php:721 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Vennligst les filen \"install/INSTALL.txt\"." @@ -5929,11 +5618,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 "PHP-versjon 5.5 eller høyere er påkrevet." +msgstr "" #: ../../Zotlabs/Module/Setup.php:389 msgid "PHP version" -msgstr "PHP-versjon" +msgstr "" #: ../../Zotlabs/Module/Setup.php:404 msgid "Could not find a command line version of PHP in the web server PATH." @@ -6025,200 +5714,199 @@ 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:500 ../../Zotlabs/Module/Setup.php:502 +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite-modul" -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../Zotlabs/Module/Setup.php:501 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: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 "Feil: proc_open er påkrevd, men er enten ikke installert eller har blitt avskrudd i php.ini" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../Zotlabs/Module/Setup.php:515 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:518 +#: ../../Zotlabs/Module/Setup.php:519 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:522 +#: ../../Zotlabs/Module/Setup.php:523 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:526 +#: ../../Zotlabs/Module/Setup.php:527 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:530 +#: ../../Zotlabs/Module/Setup.php:531 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:534 +#: ../../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 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: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 "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: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 "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan." -#: ../../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 "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: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 "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:558 +#: ../../Zotlabs/Module/Setup.php:563 msgid ".htconfig.php is writable" msgstr ".htconfig.php kan skrives til" -#: ../../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 "Red bruker malmotoren Smarty3 for å gjengi sine webvisninger. Smarty3 kompilerer malene om til PHP for å framskynde gjengivelsen." -#: ../../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 "For å kunne lagre disse kompilerte malene, så må webtjeneren ha skrivetilgang til katalogen %s under hovedmappen." +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 "Vennligst sikre at brukeren som din web-tjeneste kjører som (for eksempel www-data) har skrivetilgang til denne katalogen." -#: ../../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 "Merknad: som et sikkerhetstiltak bør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:583 #, php-format msgid "%s is writable" msgstr "%s kan skrives til" -#: ../../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 "" +"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." -#: ../../Zotlabs/Module/Setup.php:598 +#: ../../Zotlabs/Module/Setup.php:603 msgid "store is writable" msgstr "lageret kan skrives til" -#: ../../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 "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet." -#: ../../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 "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: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 "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: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 "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: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 "Dette kan gi problemer med brukervennlighet (ikke bare på ditt eget nettsted), så vi må insistere på dette kravet." -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Setup.php:641 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere." -#: ../../Zotlabs/Module/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 +#: ../../Zotlabs/Module/Setup.php:643 msgid "SSL certificate validation" msgstr "SSL sertifikat-kontroll" -#: ../../Zotlabs/Module/Setup.php:647 +#: ../../Zotlabs/Module/Setup.php:649 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:" -#: ../../Zotlabs/Module/Setup.php:650 +#: ../../Zotlabs/Module/Setup.php:652 msgid "Url rewrite is working" msgstr "URL rewrite virker" -#: ../../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 "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:683 +#: ../../Zotlabs/Module/Setup.php:685 msgid "Errors encountered creating database tables." msgstr "Feil oppstod under opprettelsen av databasetabeller." -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:719 msgid "

What next

" msgstr "

Hva gjenstår

" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:720 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6240,62 +5928,64 @@ msgstr "Fjern alle filer" msgid "Remove this file" msgstr "Fjern denne filen" -#: ../../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/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versjon %s" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Ting lagt til" +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Installerte tilleggsfunksjoner/tillegg/apper:" -#: ../../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 "Ingen installerte tilleggsfunksjoner/tillegg/apper" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Vis ting" +#: ../../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:266 -msgid "item not found." -msgstr "element ble ikke funnet." +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Merkelapp:" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Endre ting" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Siste innhenting i bakgrunnen:" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Velg en profil" +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Gjeldende belastningsgjennomsnitt:" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Legg inn en aktivitet" +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Kjører på webplasseringen" -#: ../../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:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Vennligst besøk hubzilla.org for å lære mer om $Projectname." -#: ../../Zotlabs/Module/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:77 +msgid "Bug reports and issues: please visit" +msgstr "Feilmeldinger og feilretting: vennligst besøk" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL til ting (valgfritt)" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "$projectname problemer" -#: ../../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/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:349 -msgid "Add Thing to your Profile" -msgstr "Legg til ting i din profil" +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Nettstedsadministratorer" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6313,8 +6003,8 @@ msgstr "Kilden er oppdatert." 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 "Kanalkilder" @@ -6348,7 +6038,7 @@ msgstr "Kanalnavn" msgid "" "Add the following categories to posts imported from this source (comma " "separated)" -msgstr "Legg til følgende kategorier til innlegg importert fra denne kilden (kommeseparert)" +msgstr "" #: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 msgid "Source not found." @@ -6390,1016 +6080,687 @@ 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:263 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 msgid "post" msgstr "innlegg" -#: ../../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 "kommentar" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s merket %3$s til %2$s med %4$s" - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Merkelapp fjernet" - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Fjern merkelapp fra element" - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Velg merkelapp å fjerne:" - -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Websider" - -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Handlinger" - -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Sidelenke" - -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Sidetittel" - -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "" - -#: ../../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/Wiki.php:93 -msgid "Sandbox" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:95 -msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "OK" - -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "" - -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Ingen forbindelser." - -#: ../../Zotlabs/Module/Viewconnections.php:78 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besøk %s sin profil [%s]" - -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" -msgstr "Vis forbindelser" - -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Kilde til element" - -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Tillat programforbindelse" - -#: ../../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/Api.php:72 -msgid "Please login to continue." -msgstr "Vennligst logg inn for å fortsette." - -#: ../../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" -msgstr "Xchan oppslag" - -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Slå opp xchan som begynner med (eller webbie):" - -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "Mangler romnavn" - -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "Duplikat romnavn" - -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "Ugyldig rom-spesifisering" - -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "Rommet ble ikke funnet." - -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "Rommet er fullt" - -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 -msgid "$Projectname Notification" -msgstr "$Projectname varsling" - -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 -msgid "$projectname" -msgstr "$projectname" - -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 -msgid "Thank You," -msgstr "Tusen takk," - -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 -#, php-format -msgid "%s Administrator" -msgstr "%s administrator" - -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:Notify] Ny melding mottatt hos %s" - -#: ../../Zotlabs/Lib/Enotify.php:106 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s sendte deg en ny privat melding på %3$s." - -#: ../../Zotlabs/Lib/Enotify.php:107 +#: ../../Zotlabs/Module/Tagger.php:100 #, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s sendte deg %2$s." +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s merket %3$s til %2$s med %4$s" -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" -msgstr "en privat melding" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Merkelapp fjernet" -#: ../../Zotlabs/Lib/Enotify.php:108 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Vennligst besøk %s for å se og/eller svare på dine private meldinger." +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Fjern merkelapp fra element" -#: ../../Zotlabs/Lib/Enotify.php:164 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]a %4$s[/zrl]" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Velg merkelapp å fjerne:" -#: ../../Zotlabs/Lib/Enotify.php:172 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]%4$s's %5$s[/zrl]" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Tingen er oppdatert" -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]din %4$s[/zrl]" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Objektlagring: mislyktes" -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:Notify] Kommentar til samtale #%1$d av %2$s" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Ting lagt til" -#: ../../Zotlabs/Lib/Enotify.php:193 +#: ../../Zotlabs/Module/Thing.php:196 #, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s kommenterte på et element eller en samtale du følger" +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Vennligst besøk %s for å se og/eller svare i samtalen" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Vis ting" -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:Notify] %s skrev et innlegg på din profilvegg" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "element ble ikke funnet." -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s skrev et innlegg på din profilvegg på %3$s" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Endre ting" -#: ../../Zotlabs/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s skrev et innlegg på [zrl=%3$s]din vegg[/zrl]" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Velg en profil" -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla:Notify] %s merket deg" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Legg inn en aktivitet" -#: ../../Zotlabs/Lib/Enotify.php:231 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s merket deg på %3$s" +#: ../../Zotlabs/Module/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/Lib/Enotify.php:232 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]merket deg[/zrl]." +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Navn på ting for eksempel noe" -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla:Notify] %1$s prikket deg" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL til ting (valgfritt)" -#: ../../Zotlabs/Lib/Enotify.php:245 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s dyttet deg på %3$s" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "URL til bilde av ting (valgfritt)" -#: ../../Zotlabs/Lib/Enotify.php:246 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]dyttet deg[/zrl]." +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Legg til ting i din profil" -#: ../../Zotlabs/Lib/Enotify.php:262 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla:Notify] %s merket ditt innlegg" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Eksporter kanal" -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s merket ditt innlegg på %3$s" +#: ../../Zotlabs/Module/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/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s merket [zrl=%3$s]ditt innlegg[/zrl]" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Eksporter innhold" -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla:Notify] Introduksjon mottatt" +#: ../../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/Lib/Enotify.php:277 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, du har mottatt en ny forespørsel om forbindelse fra '%2$s' hos %3$s" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Eksporter dine innlegg fra et bestemt år" -#: ../../Zotlabs/Lib/Enotify.php:278 +#: ../../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/Uexport.php:63 #, php-format msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, du mottok [zrl=%2$s]en ny forespørsel om forbindelse[/zrl] fra %3$s." +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "For å velge alle innlegg for et gitt år, slik som iår, besøk %2$s" -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#: ../../Zotlabs/Module/Uexport.php:64 #, php-format -msgid "You may visit their profile at %s" -msgstr "Du kan besøke profilen deres på %s" +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2$s" -#: ../../Zotlabs/Lib/Enotify.php:284 +#: ../../Zotlabs/Module/Uexport.php:65 #, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse." +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)." -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:Notify] Venneforslag mottatt" +#: ../../Zotlabs/Module/Viewconnections.php:62 +msgid "No connections." +msgstr "Ingen forbindelser." -#: ../../Zotlabs/Lib/Enotify.php:292 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, du har mottatt en venneforespørsel fra '%2$s' hos %3$s" +msgid "Visit %s's profile [%s]" +msgstr "Besøk %s sin profil [%s]" -#: ../../Zotlabs/Lib/Enotify.php:293 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, du har mottatt [zrl=%2$s]et venneforslaget[/zrl] angående %3$s fra %4$s. " +#: ../../Zotlabs/Module/Viewconnections.php:104 +msgid "View Connections" +msgstr "Vis forbindelser" -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "Navn:" +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Kilde til element" -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "Bilde:" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Websider" -#: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Vennligst besøk %s for å godkjenne eller avslå dette forslaget." +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Handlinger" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:Notify]" +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Sidelenke" -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "laget et nytt innlegg" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Sidetittel" -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" -msgstr "kommenterte på %s sitt innlegg" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Xchan oppslag" -#: ../../Zotlabs/Lib/Apps.php:205 +#: ../../Zotlabs/Module/Xchan.php:13 +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:206 +#: ../../Zotlabs/Lib/Apps.php:205 msgid "Bug Report" -msgstr "Feilmelding" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:207 +#: ../../Zotlabs/Lib/Apps.php:206 msgid "View Bookmarks" -msgstr "Vis bokmerker" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:208 +#: ../../Zotlabs/Lib/Apps.php:207 msgid "My Chatrooms" -msgstr "Mine chatrom" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:210 +#: ../../Zotlabs/Lib/Apps.php:209 msgid "Firefox Share" -msgstr "Firefox-deling" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:211 +#: ../../Zotlabs/Lib/Apps.php:210 msgid "Remote Diagnostics" -msgstr "Fjerndiagnostisering" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 msgid "Suggest Channels" msgstr "Foreslå kanaler" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 msgid "Login" msgstr "Logg inn" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 msgid "Grid" msgstr "Nett" -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 msgid "Channel Home" msgstr "Kanalhjem" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 +#: ../../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:224 ../../include/nav.php:169 +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 msgid "Directory" msgstr "Katalog" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 msgid "Mail" msgstr "Melding" -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 msgid "Chat" msgstr "Chat" -#: ../../Zotlabs/Lib/Apps.php:231 +#: ../../Zotlabs/Lib/Apps.php:229 msgid "Probe" msgstr "Undersøk" -#: ../../Zotlabs/Lib/Apps.php:232 +#: ../../Zotlabs/Lib/Apps.php:230 msgid "Suggest" msgstr "Forreslå" -#: ../../Zotlabs/Lib/Apps.php:233 +#: ../../Zotlabs/Lib/Apps.php:231 msgid "Random Channel" msgstr "Tilfeldig kanal" -#: ../../Zotlabs/Lib/Apps.php:234 +#: ../../Zotlabs/Lib/Apps.php:232 msgid "Invite" msgstr "Inviter" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 msgid "Features" msgstr "Funksjoner" -#: ../../Zotlabs/Lib/Apps.php:237 +#: ../../Zotlabs/Lib/Apps.php:235 msgid "Post" msgstr "Innlegg" -#: ../../Zotlabs/Lib/Apps.php:339 +#: ../../Zotlabs/Lib/Apps.php:335 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:659 -msgid "Select" -msgstr "Velg" - -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "Lagre i mappe" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Jeg vil delta" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "Jeg deltar ikke" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Jeg vil kanskje delta" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Jeg er enig" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "Jeg er uenig" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Jeg avstår" - -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Legg til stjerne" - -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Fjern stjerne" - -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Skru av og på stjernestatus" - -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "stjernemerket" - -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Innleggets signatur er bekreftet" +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" +msgstr "Mangler romnavn" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Innleggets signatur er feil" +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" +msgstr "Duplikat romnavn" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Legg til merkelapp" +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." +msgstr "Ugyldig rom-spesifisering" -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 -msgid "like" -msgstr "liker" +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." +msgstr "Rommet ble ikke funnet." -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "misliker" +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" +msgstr "Rommet er fullt" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "Share This" -msgstr "Del dette" +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +msgid "$Projectname Notification" +msgstr "$Projectname varsling" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "share" -msgstr "del" +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +msgid "$projectname" +msgstr "$projectname" -#: ../../Zotlabs/Lib/ThreadItem.php:275 -msgid "Delivery Report" -msgstr "Leveringsrapport" +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +msgid "Thank You," +msgstr "Tusen takk," -#: ../../Zotlabs/Lib/ThreadItem.php:293 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d kommentar" -msgstr[1] "%d kommentarer" +msgid "%s Administrator" +msgstr "%s administrator" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#: ../../Zotlabs/Lib/Enotify.php:100 #, php-format -msgid "View %s's profile - %s" -msgstr "Vis %s sin profil - %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:326 -msgid "to" -msgstr "til" - -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "via" -msgstr "via" - -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "Wall-to-Wall" -msgstr "vegg-til-vegg" - -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via Wall-To-Wall:" -msgstr "via vegg-til-vegg:" +msgid "%s " +msgstr "%s " -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/Enotify.php:104 #, php-format -msgid "from %s" -msgstr "fra %s" +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Notify] Ny melding mottatt hos %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/Enotify.php:106 #, php-format -msgid "last edited: %s" -msgstr "sist endret: %s" +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s sendte deg en ny privat melding på %3$s." -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/Enotify.php:107 #, php-format -msgid "Expires: %s" -msgstr "Utløper: %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:370 -msgid "Save Bookmarks" -msgstr "Lagre bokmerker" - -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Add to Calendar" -msgstr "Legg til i kalender" +msgid "%1$s sent you %2$s." +msgstr "%1$s sendte deg %2$s." -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Mark all seen" -msgstr "Merk alle som sett" +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" +msgstr "en privat melding" -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 +#: ../../Zotlabs/Lib/Enotify.php:108 #, php-format -msgid "%s show all" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 -msgid "Bold" -msgstr "Uthevet" - -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 -msgid "Italic" -msgstr "Kursiv" - -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 -msgid "Underline" -msgstr "Understreket" - -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 -msgid "Quote" -msgstr "Sitat" - -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 -msgid "Code" -msgstr "Kode" - -#: ../../Zotlabs/Lib/ThreadItem.php:716 -msgid "Image" -msgstr "Bilde" - -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Insert Link" -msgstr "Sett inn lenke" - -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Video" -msgstr "Video" - -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Synlig for ditt standard publikum" - -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Bare meg" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Offentlig" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Enhver i $Projectname -nettverket" +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Vennligst besøk %s for å se og/eller svare på dine private meldinger." -#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#: ../../Zotlabs/Lib/Enotify.php:164 #, php-format -msgid "Any account on %s" -msgstr "Enhver konto på %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Enhver av mine forbindelser" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Bare forbindelser som jeg spesifikt tillater" - -#: ../../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)" - -#: ../../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" - -#: ../../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." +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]a %4$s[/zrl]" -#: ../../Zotlabs/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" +#: ../../Zotlabs/Lib/Enotify.php:172 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]%4$s's %5$s[/zrl]" -#: ../../Zotlabs/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" +#: ../../Zotlabs/Lib/Enotify.php:181 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]din %4$s[/zrl]" -#: ../../Zotlabs/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" +#: ../../Zotlabs/Lib/Enotify.php:192 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla:Notify] Kommentar til samtale #%1$d av %2$s" -#: ../../Zotlabs/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" +#: ../../Zotlabs/Lib/Enotify.php:193 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s kommenterte på et element eller en samtale du følger" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Ingen brukernavn ble funnet i importfilen." +#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 +#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 +#: ../../Zotlabs/Lib/Enotify.php:269 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Vennligst besøk %s for å se og/eller svare i samtalen" -#: ../../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." +#: ../../Zotlabs/Lib/Enotify.php:202 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla:Notify] %s skrev et innlegg på din profilvegg" -#: ../../include/dba/dba_driver.php:171 +#: ../../Zotlabs/Lib/Enotify.php:204 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kan ikke finne DNS-informasjon om databasetjener '%s'" +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s skrev et innlegg på din profilvegg på %3$s" -#: ../../include/photos.php:114 +#: ../../Zotlabs/Lib/Enotify.php:206 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s skrev et innlegg på [zrl=%3$s]din vegg[/zrl]" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Bildefilen er tom." +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla:Notify] %s merket deg" -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Bildelagring mislyktes." +#: ../../Zotlabs/Lib/Enotify.php:231 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s merket deg på %3$s" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "et nytt bilde" +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]merket deg[/zrl]." -#: ../../include/photos.php:303 +#: ../../Zotlabs/Lib/Enotify.php:244 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s la inn %2$s til %3$s" +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla:Notify] %1$s prikket deg" -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Fotoalbum" +#: ../../Zotlabs/Lib/Enotify.php:245 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s dyttet deg på %3$s" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Last opp nye bilder" +#: ../../Zotlabs/Lib/Enotify.php:246 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]dyttet deg[/zrl]." -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Logg ut" +#: ../../Zotlabs/Lib/Enotify.php:262 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla:Notify] %s merket ditt innlegg" -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Avslutt denne økten" +#: ../../Zotlabs/Lib/Enotify.php:263 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s merket ditt innlegg på %3$s" -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Hjem" +#: ../../Zotlabs/Lib/Enotify.php:264 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s merket [zrl=%3$s]ditt innlegg[/zrl]" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Dine innlegg og samtaler" +#: ../../Zotlabs/Lib/Enotify.php:276 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla:Notify] Introduksjon mottatt" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Din profilside" +#: ../../Zotlabs/Lib/Enotify.php:277 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, du har mottatt en ny forespørsel om forbindelse fra '%2$s' hos %3$s" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Håndter/endre profiler" +#: ../../Zotlabs/Lib/Enotify.php:278 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, du mottok [zrl=%2$s]en ny forespørsel om forbindelse[/zrl] fra %3$s." -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Endre profil" +#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Du kan besøke profilen deres på %s" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Endre din profil" +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse." -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Dine bilder" +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Notify] Venneforslag mottatt" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Dine filer" +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, du har mottatt en venneforespørsel fra '%2$s' hos %3$s" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Dine chatterom" +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, du har mottatt [zrl=%2$s]et venneforslaget[/zrl] angående %3$s fra %4$s. " -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Bokmerker" +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" +msgstr "Navn:" -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Dine bokmerker" +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" +msgstr "Bilde:" -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Dine websider" +#: ../../Zotlabs/Lib/Enotify.php:303 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Vennligst besøk %s for å godkjenne eller avslå dette forslaget." -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Notify]" -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Logg på" +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" +msgstr "laget et nytt innlegg" -#: ../../include/nav.php:129 +#: ../../Zotlabs/Lib/Enotify.php:668 #, php-format -msgid "%s - click to logout" -msgstr "%s - klikk for å logge ut" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Fjernautentisering" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Klikk for å godkjennes mot din hjemme-hub" +msgid "commented on %s's post" +msgstr "kommenterte på %s sitt innlegg" -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Hjemmeside" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +msgid "Private Message" +msgstr "Privat melding" -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Lag en konto" +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +msgid "Select" +msgstr "Velg" -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Hjelp og dokumentasjon" +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "Lagre i mappe" -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Programmer, verktøy, lenker, spill" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Jeg vil delta" -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "Jeg deltar ikke" -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Kanalkatalog" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Jeg vil kanskje delta" -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Ditt nett" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "Jeg er enig" -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Marker alle nettvarsler som sett" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "Jeg er uenig" -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Kanalhjem" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "Jeg avstår" -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Merk alle kanalvarsler som sett" +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" +msgstr "Legg til stjerne" -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Varsel" +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" +msgstr "Fjern stjerne" -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Varsler" +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" +msgstr "Skru av og på stjernestatus" -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Se alle varsler" +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" +msgstr "stjernemerket" -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Privat post" +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +msgid "Message signature validated" +msgstr "Innleggets signatur er bekreftet" -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Se alle private meldinger" +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +msgid "Message signature incorrect" +msgstr "Innleggets signatur er feil" -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Merk alle private meldinger som sett" +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" +msgstr "Legg til merkelapp" -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Innboks" +#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +msgid "like" +msgstr "liker" -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Utboks" +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "misliker" -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Ny melding" +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "Share This" +msgstr "Del dette" -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Kalender" +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "share" +msgstr "del" -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Se alle hendelser" +#: ../../Zotlabs/Lib/ThreadItem.php:275 +msgid "Delivery Report" +msgstr "Leveringsrapport" -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Merk alle hendelser som sett" +#: ../../Zotlabs/Lib/ThreadItem.php:293 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d kommentar" +msgstr[1] "%d kommentarer" -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Håndter dine kanaler" +#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#, php-format +msgid "View %s's profile - %s" +msgstr "Vis %s sin profil - %s" -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Konto-/kanal-innstillinger" +#: ../../Zotlabs/Lib/ThreadItem.php:326 +msgid "to" +msgstr "til" -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Administrator" +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "via" +msgstr "via" -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Nettstedsoppsett og -konfigurasjon" +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "Wall-to-Wall" +msgstr "vegg-til-vegg" -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Laster..." +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "via Wall-To-Wall:" +msgstr "via vegg-til-vegg:" -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@navn, #merkelapp, ?dokumentasjon, innhold" +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#, php-format +msgid "from %s" +msgstr "fra %s" -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Vennligst vent..." +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#, php-format +msgid "last edited: %s" +msgstr "sist endret: %s" -#: ../../include/network.php:704 -msgid "view full size" -msgstr "vis full størrelse" +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#, php-format +msgid "Expires: %s" +msgstr "Utløper: %s" -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrator" +#: ../../Zotlabs/Lib/ThreadItem.php:370 +msgid "Save Bookmarks" +msgstr "Lagre bokmerker" -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Uten emne" +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Add to Calendar" +msgstr "Legg til i kalender" -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" +#: ../../Zotlabs/Lib/ThreadItem.php:380 +msgid "Mark all seen" +msgstr "Merk alle som sett" -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" +#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] Vis alle" -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU-Social" +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +msgid "Bold" +msgstr "Uthevet" -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +msgid "Italic" +msgstr "Kursiv" -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +msgid "Underline" +msgstr "Understreket" -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +msgid "Quote" +msgstr "Sitat" -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +msgid "Code" +msgstr "Kode" -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../Zotlabs/Lib/ThreadItem.php:716 +msgid "Image" +msgstr "Bilde" -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Insert Link" +msgstr "Sett inn lenke" -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Video" +msgstr "Video" -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Ny side" +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Ingen brukernavn ble funnet i importfilen." -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Tittel" +#: ../../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 @@ -7435,1416 +6796,1586 @@ msgstr "ønsker" msgid "likes" msgstr "liker" -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "misliker" +#: ../../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" + +#: ../../include/text.php:472 +msgid "older" +msgstr "eldre" + +#: ../../include/text.php:474 +msgid "newer" +msgstr "nyere" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "Ingen forbindelser" + +#: ../../include/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "Vis alle %s forbindelser" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen" +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "prikk" -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Mangler navn" +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "prikket" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Navnet er for langt" +#: ../../include/text.php:1039 +msgid "ping" +msgstr "varsle" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Ingen kontoidentifikator" +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "varslet" -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Kallenavn er påkrevd." +#: ../../include/text.php:1040 +msgid "prod" +msgstr "oppildne" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Reservert kallenavn. Vennligst velg et annet." +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "oppildnet" -#: ../../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/text.php:1041 +msgid "slap" +msgstr "daske" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Klarer ikke å hente den lagede identiteten" +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "dasket" -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Standardprofil" +#: ../../include/text.php:1042 +msgid "finger" +msgstr "fingre" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Forespurt kanal er ikke tilgjengelig." +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "fingret" -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Lag ny profil" +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "tilbakevise" -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Synlig for alle" +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "tilbakeviste" -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Kjønn:" +#: ../../include/text.php:1055 +msgid "happy" +msgstr "glad" -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Status:" +#: ../../include/text.php:1056 +msgid "sad" +msgstr "trist" -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Hjemmeside:" +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "dempet" -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Online nå" +#: ../../include/text.php:1058 +msgid "tired" +msgstr "trøtt" -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Lik denne kanalen" +#: ../../include/text.php:1059 +msgid "perky" +msgstr "oppkvikket" -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F, Y" +#: ../../include/text.php:1060 +msgid "angry" +msgstr "sint" -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "lamslått" -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Fødselsdag:" +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "forundret" -#: ../../include/channel.php:1232 -#, php-format -msgid "for %1$d %2$s" -msgstr "for %1$d %2$s" +#: ../../include/text.php:1063 +msgid "interested" +msgstr "interessert" -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Seksuell preferanse:" +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "bitter" -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Merkelapper:" +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "munter" -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Politiske synspunkter:" +#: ../../include/text.php:1066 +msgid "alive" +msgstr "levende" -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "irritert" -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Hobbyer/interesser:" +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "nervøs" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Liker:" +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "gretten" -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Misliker:" +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "foruroliget" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformasjon og sosiale nettverk:" +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustrert" -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Mine andre kanaler:" +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "lei seg" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Musikkinteresse:" +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivert" -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Bøker, litteratur:" +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "avslappet" -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "TV:" +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "overrasket" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/kultur/underholdning:" +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "mandag" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Kjærlighet/romantikk:" +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "tirsdag" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Arbeid/sysselsetting:" +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "onsdag" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Skole/utdannelse:" +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "torsdag" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Lik denne tingen" +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "fredag" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nytt vindu" +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "lørdag" -#: ../../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/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "søndag" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Brukeren '%s' er slettet" +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "januar" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s er nå forbundet med %2$s" +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "februar" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s prikket %2$s" +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "mars" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "prikket" +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "april" -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vis %s sin profile @ %s" +#: ../../include/text.php:1261 +msgid "May" +msgstr "mai" -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Kategorier:" +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "juni" -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Sortert under:" +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "juli" -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "Vis i sammenheng" +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "august" -#: ../../include/conversation.php:850 -msgid "remove" -msgstr "fjern" +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "september" -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" -msgstr "Slett valgte elementer" +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "oktober" -#: ../../include/conversation.php:951 -msgid "View Source" -msgstr "Vis kilde" +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "november" -#: ../../include/conversation.php:952 -msgid "Follow Thread" -msgstr "Følg tråd" +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "desember" -#: ../../include/conversation.php:953 -msgid "Unfollow Thread" -msgstr "Ikke følg tråd" +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Ukjent vedlegg" -#: ../../include/conversation.php:958 -msgid "Activity/Posts" -msgstr "Aktivitet/Innlegg" +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "ukjent" -#: ../../include/conversation.php:960 -msgid "Edit Connection" -msgstr "Endre forbindelse" +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "fjern kategori" -#: ../../include/conversation.php:961 -msgid "Message" -msgstr "Melding" +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "fjern fra fil" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s likes this." -msgstr "%s liker dette." +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "standard" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s doesn't like this." -msgstr "%s liker ikke dette." +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Sidens layout" -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d person liker dette." -msgstr[1] "%2$d personer liker dette." +#: ../../include/text.php:1761 +msgid "You can create your own with the layouts tool" +msgstr "Du kan lage din egen med layout-verktøyet" -#: ../../include/conversation.php:1084 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d person liker ikke dette." -msgstr[1] "%2$d personer liker ikke dette." +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Sidens innholdstype" -#: ../../include/conversation.php:1090 -msgid "and" -msgstr "og" +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Velg et annet språk" -#: ../../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/text.php:1953 +msgid "activity" +msgstr "aktivitet" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s like this." -msgstr "%s liker dette." +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Designverktøy" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s don't like this." -msgstr "%s liker ikke dette." +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Sider" -#: ../../include/conversation.php:1133 -msgid "Set your location" -msgstr "Angi din plassering" +#: ../../include/widgets.php:103 +msgid "System" +msgstr "System" -#: ../../include/conversation.php:1134 -msgid "Clear browser location" -msgstr "Fjern nettleserplassering" +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "" -#: ../../include/conversation.php:1182 -msgid "Tag term:" -msgstr "Merkelapp:" +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Forslag" -#: ../../include/conversation.php:1183 -msgid "Where are you right now?" -msgstr "Hvor er du akkurat nå?" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Se mer..." -#: ../../include/conversation.php:1221 -msgid "Page link name" -msgstr "Sidens lenkenavn" +#: ../../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/conversation.php:1224 -msgid "Post as" -msgstr "Lag innlegg som" +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Legg til ny forbindelse" -#: ../../include/conversation.php:1238 -msgid "Toggle voting" -msgstr "Skru av eller på stemming" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Skriv kanaladressen" -#: ../../include/conversation.php:1246 -msgid "Categories (optional, comma-separated list)" -msgstr "Kategorier (valgfri, kommaseparert liste)" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari" -#: ../../include/conversation.php:1269 -msgid "Set publish date" -msgstr "Angi publiseringsdato" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Merknader" -#: ../../include/conversation.php:1518 -msgid "Discover" -msgstr "Oppdage" +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Fjern begrep" -#: ../../include/conversation.php:1521 -msgid "Imported public streams" -msgstr "Importerte offentlige strømmer" +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Lagrede søk" -#: ../../include/conversation.php:1526 -msgid "Commented Order" -msgstr "Kommentert" +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "legg til" -#: ../../include/conversation.php:1529 -msgid "Sort by Comment Date" -msgstr "Sorter etter kommentert dato" +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Lagrede mapper" -#: ../../include/conversation.php:1533 -msgid "Posted Order" -msgstr "Lagt inn" +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Alt" -#: ../../include/conversation.php:1536 -msgid "Sort by Post Date" -msgstr "Sorter etter innleggsdato" +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Arkiv" -#: ../../include/conversation.php:1544 -msgid "Posts that mention or involve you" -msgstr "Innlegg som nevner eller involverer deg" +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Forny" -#: ../../include/conversation.php:1553 -msgid "Activity Stream - by date" -msgstr "Aktivitetsstrøm - etter dato" +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Kontoinnstillinger" -#: ../../include/conversation.php:1559 -msgid "Starred" -msgstr "Stjerne" +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Kanalinnstillinger" -#: ../../include/conversation.php:1562 -msgid "Favourite Posts" -msgstr "Favorittinnlegg" +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Tilleggsfunksjoner" -#: ../../include/conversation.php:1569 -msgid "Spam" -msgstr "Søppel" +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Funksjons-/Tilleggsinnstillinger" -#: ../../include/conversation.php:1572 -msgid "Posts flagged as SPAM" -msgstr "Innlegg merket som SØPPEL" +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Visningsinnstillinger" -#: ../../include/conversation.php:1629 -msgid "Status Messages and Posts" -msgstr "Statusmeldinger og -innlegg" +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "" -#: ../../include/conversation.php:1638 -msgid "About" -msgstr "Om" +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Eksporter kanal" -#: ../../include/conversation.php:1641 -msgid "Profile Details" -msgstr "Profildetaljer" +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Tilkoblede app-er" -#: ../../include/conversation.php:1657 -msgid "Files and Storage" -msgstr "Filer og lagring" +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Premiumkanal-innstillinger" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Chatrom" +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Meny for privat post" -#: ../../include/conversation.php:1693 -msgid "Saved Bookmarks" -msgstr "Lagrede bokmerker" +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Kombinert visning" -#: ../../include/conversation.php:1703 -msgid "Manage Webpages" -msgstr "Håndtere websider" +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Innboks" -#: ../../include/conversation.php:1768 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Deltar" -msgstr[1] "Deltar" +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Utboks" -#: ../../include/conversation.php:1771 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Deltar ikke" -msgstr[1] "Deltar ikke" +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Ny melding" -#: ../../include/conversation.php:1774 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Ikke bestemt" -msgstr[1] "Ikke bestemt" +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Samtaler" -#: ../../include/conversation.php:1777 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Enig" -msgstr[1] "Enige" +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Mottatte meldinger" -#: ../../include/conversation.php:1780 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Uenig" -msgstr[1] "Uenige" +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Sendte meldinger" -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Avstår" -msgstr[1] "Avstår" +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Ingen meldinger." -#: ../../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/widgets.php:725 +msgid "Delete conversation" +msgstr "Slett samtale" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Kanalkloning mislyktes. Import mislyktes." +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Meny for hendelser" -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Ofte" +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Dag" -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Hver time" +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Uke" -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "To ganger daglig" +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Måned" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Daglig" +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Kalenderverktøy" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Ukentlig" +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Eksporter kalender" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Månedlig" +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importer kalender" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "For tiden mann" +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Chatrom" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "For tiden kvinne" +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "For det meste mann" +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "For det meste kvinne" +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Bokmerkede chatrom" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transkjønnet" +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Foreslåtte chatrom" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "interkjønnet" +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/bilde" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transseksuell" +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermafroditt" +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Vurderingsverktøy" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Intetkjønn" +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Vurder meg" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "Ubestemt" +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Vis vurderinger" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Ubestemt" +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Forum" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Menn" +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Oppgaver" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Kvinner" +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Dokumentasjon" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Homo" +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Prosjekt-/Nettstedsinformasjon" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbisk" +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "For medlemmer" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Ingen preferanse" +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "For administratorer" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Biseksuell" +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "For utviklere" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autoseksuell" +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Avholdende" +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Inspiser kø" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Jomfru" +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Databaseoppdateringer" -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Avviker" +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Administrator" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetisj" +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Tilleggsfunksjoner" -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Masse" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Kanalen er blokkert på dette nettstedet." -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Ikke-seksuell" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Kanalplassering mangler." -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Enslig" +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "Svaret fra den andre kanalen var ikke komplett." -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Ensom" +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Kanalen er slettet og finnes ikke lenger." -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Tilgjengelig" +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protokollen er avskrudd." -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Ikke tilgjengelig" +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "Kanaloppdagelse mislyktes." -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Er forelsket" +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Kan ikke lage forbindelse med deg selv." -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Betatt" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$s sine bokmerker" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Sammen med" +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Offentlig tidslinje" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Utro" +#: ../../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" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Sexavhengig" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Kryptert innhold" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Venner med frynsegoder" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installer %s element:" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Tilfeldig" +#: ../../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/selectors.php:123 -msgid "Engaged" -msgstr "Forlovet" +#: ../../include/bbcode.php:254 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s skrev følgende %2$s %3$s" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Gift" +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Klikk for å åpne/lukke" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Gift i fantasien" +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partnere" +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Samboer" +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 skrev:" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Samboer" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Kataloginnstillinger" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Lykkelig" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Trygt modus" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Ikke på utkikk" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Bare offentlige forum" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Partnerbytte" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Kun dette nettstedet" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Bedratt" +#: ../../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/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separert" +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Logg ut" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Ustabilt" +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Avslutt denne økten" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Skilt" +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Hjem" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Skilt i fantasien" +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Dine innlegg og samtaler" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Enke" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Din profilside" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Usikkert" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Håndter/endre profiler" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Det er komplisert" +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Endre profil" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Bryr meg ikke" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Endre din profil" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Spør meg" +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Dine bilder" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$s sine bokmerker" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Dine filer" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "" +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Dine chatterom" -#: ../../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/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Bokmerker" -#: ../../include/text.php:404 -msgid "prev" -msgstr "forrige" +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Dine bokmerker" -#: ../../include/text.php:406 -msgid "first" -msgstr "første" +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Dine websider" -#: ../../include/text.php:435 -msgid "last" -msgstr "siste" +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Logg på" -#: ../../include/text.php:438 -msgid "next" -msgstr "neste" +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klikk for å logge ut" -#: ../../include/text.php:448 -msgid "older" -msgstr "eldre" +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Fjernautentisering" -#: ../../include/text.php:450 -msgid "newer" -msgstr "nyere" +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Klikk for å godkjennes mot din hjemme-hub" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Ingen forbindelser" +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Hjemmeside" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" -msgstr "Vis alle %s forbindelser" +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Lag en konto" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "prikk" +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Hjelp og dokumentasjon" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "varsle" +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Programmer, verktøy, lenker, spill" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "varslet" +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "oppildne" +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Kanalkatalog" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "oppildnet" +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Ditt nett" -#: ../../include/text.php:1021 -msgid "slap" -msgstr "daske" +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Marker alle nettvarsler som sett" -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "dasket" +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Kanalhjem" -#: ../../include/text.php:1022 -msgid "finger" -msgstr "fingre" +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Merk alle kanalvarsler som sett" -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "fingret" +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Varsel" -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "tilbakevise" +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Varsler" -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "tilbakeviste" +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Se alle varsler" -#: ../../include/text.php:1035 -msgid "happy" -msgstr "glad" +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Privat post" -#: ../../include/text.php:1036 -msgid "sad" -msgstr "trist" +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Se alle private meldinger" -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "dempet" +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Merk alle private meldinger som sett" -#: ../../include/text.php:1038 -msgid "tired" -msgstr "trøtt" +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Kalender" -#: ../../include/text.php:1039 -msgid "perky" -msgstr "oppkvikket" +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Se alle hendelser" -#: ../../include/text.php:1040 -msgid "angry" -msgstr "sint" +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Merk alle hendelser som sett" -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "lamslått" +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Håndter dine kanaler" -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "forundret" +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Konto-/kanal-innstillinger" -#: ../../include/text.php:1043 -msgid "interested" -msgstr "interessert" +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Nettstedsoppsett og -konfigurasjon" -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "bitter" +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Laster..." -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "munter" +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@navn, #merkelapp, ?dokumentasjon, innhold" -#: ../../include/text.php:1046 -msgid "alive" -msgstr "levende" +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Vennligst vent..." -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "irritert" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nytt vindu" -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "nervøs" +#: ../../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/text.php:1049 -msgid "cranky" -msgstr "gretten" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Brukeren '%s' er slettet" -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "foruroliget" +#: ../../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/text.php:1051 -msgid "frustrated" -msgstr "frustrert" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Finn kanaler" -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "lei seg" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Skriv navn eller interesse" -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivert" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Forbindelse/Følg" -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "avslappet" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Eksempler: Ola Nordmann, fisking" -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "overrasket" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Tilfeldig profil" -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "mandag" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Inviter venner" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Avansert eksempel: navn=fred og land=island" -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "tirsdag" +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d forbindelse felles" +msgstr[1] "%d forbindelser felles" -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "onsdag" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "vis mer" -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "torsdag" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s er nå forbundet med %2$s" -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "fredag" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s prikket %2$s" -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "lørdag" +#: ../../include/conversation.php:691 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vis %s sin profile @ %s" -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "søndag" +#: ../../include/conversation.php:710 +msgid "Categories:" +msgstr "Kategorier:" -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "januar" +#: ../../include/conversation.php:711 +msgid "Filed under:" +msgstr "Sortert under:" -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "februar" +#: ../../include/conversation.php:738 +msgid "View in context" +msgstr "Vis i sammenheng" -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "mars" +#: ../../include/conversation.php:847 +msgid "remove" +msgstr "fjern" -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "april" +#: ../../include/conversation.php:852 +msgid "Delete Selected Items" +msgstr "Slett valgte elementer" -#: ../../include/text.php:1241 -msgid "May" -msgstr "mai" +#: ../../include/conversation.php:948 +msgid "View Source" +msgstr "Vis kilde" -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "juni" +#: ../../include/conversation.php:949 +msgid "Follow Thread" +msgstr "Følg tråd" -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "juli" +#: ../../include/conversation.php:950 +msgid "Unfollow Thread" +msgstr "Ikke følg tråd" -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "august" +#: ../../include/conversation.php:955 +msgid "Activity/Posts" +msgstr "Aktivitet/Innlegg" -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "september" +#: ../../include/conversation.php:957 +msgid "Edit Connection" +msgstr "Endre forbindelse" -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "oktober" +#: ../../include/conversation.php:958 +msgid "Message" +msgstr "Melding" -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "november" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s likes this." +msgstr "%s liker dette." -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "desember" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s doesn't like this." +msgstr "%s liker ikke dette." -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Ukjent vedlegg" +#: ../../include/conversation.php:1079 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d person liker dette." +msgstr[1] "%2$d personer liker dette." -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "ukjent" +#: ../../include/conversation.php:1081 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d person liker ikke dette." +msgstr[1] "%2$d personer liker ikke dette." -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "fjern kategori" +#: ../../include/conversation.php:1087 +msgid "and" +msgstr "og" -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "fjern fra fil" +#: ../../include/conversation.php:1090 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", og %d annen person" +msgstr[1] ", og %d andre personer" -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "standard" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s like this." +msgstr "%s liker dette." -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Sidens layout" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s don't like this." +msgstr "%s liker ikke dette." -#: ../../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/conversation.php:1130 +msgid "Set your location" +msgstr "Angi din plassering" -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Sidens innholdstype" +#: ../../include/conversation.php:1131 +msgid "Clear browser location" +msgstr "Fjern nettleserplassering" -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Velg et annet språk" +#: ../../include/conversation.php:1177 +msgid "Tag term:" +msgstr "Merkelapp:" -#: ../../include/text.php:1934 -msgid "activity" -msgstr "aktivitet" +#: ../../include/conversation.php:1178 +msgid "Where are you right now?" +msgstr "Hvor er du akkurat nå?" -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Designverktøy" +#: ../../include/conversation.php:1210 +msgid "Page link name" +msgstr "Sidens lenkenavn" -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Sider" +#: ../../include/conversation.php:1213 +msgid "Post as" +msgstr "Lag innlegg som" -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Logget ut." +#: ../../include/conversation.php:1223 +msgid "Toggle voting" +msgstr "Skru av eller på stemming" -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Mislykket autentisering" +#: ../../include/conversation.php:1231 +msgid "Categories (optional, comma-separated list)" +msgstr "Kategorier (valgfri, kommaseparert liste)" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan se min normale strøm og innlegg" +#: ../../include/conversation.php:1254 +msgid "Set publish date" +msgstr "Angi publiseringsdato" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kan se mine websider" +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan lage innlegg på min kanalside (\"vegg\")" +#: ../../include/conversation.php:1503 +msgid "Discover" +msgstr "Oppdage" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kan like/ikke like forskjellige greier" +#: ../../include/conversation.php:1506 +msgid "Imported public streams" +msgstr "Importerte offentlige strømmer" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profiler og andre ting enn innlegg/kommentarer" +#: ../../include/conversation.php:1511 +msgid "Commented Order" +msgstr "Kommentert" -#: ../../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/conversation.php:1514 +msgid "Sort by Comment Date" +msgstr "Sorter etter kommentert dato" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avansert - nyttig for å lage forumkanaler for grupper" +#: ../../include/conversation.php:1518 +msgid "Posted Order" +msgstr "Lagt inn" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)" +#: ../../include/conversation.php:1521 +msgid "Sort by Post Date" +msgstr "Sorter etter innleggsdato" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kan skrive til mitt lager for filer og bilder" +#: ../../include/conversation.php:1529 +msgid "Posts that mention or involve you" +msgstr "Innlegg som nevner eller involverer deg" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kan endre mine websider" +#: ../../include/conversation.php:1538 +msgid "Activity Stream - by date" +msgstr "Aktivitetsstrøm - etter dato" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Litt avansert - svært nyttig i åpne fellesskap" +#: ../../include/conversation.php:1544 +msgid "Starred" +msgstr "Stjerne" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kan administrere mine kanalressurser" +#: ../../include/conversation.php:1547 +msgid "Favourite Posts" +msgstr "Favorittinnlegg" -#: ../../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/conversation.php:1554 +msgid "Spam" +msgstr "Søppel" -#: ../../include/features.php:48 -msgid "General Features" -msgstr "Generelle funksjoner" +#: ../../include/conversation.php:1557 +msgid "Posts flagged as SPAM" +msgstr "Innlegg merket som SØPPEL" -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Innholdet utløper" +#: ../../include/conversation.php:1614 +msgid "Status Messages and Posts" +msgstr "Statusmeldinger og -innlegg" -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden" +#: ../../include/conversation.php:1623 +msgid "About" +msgstr "Om" -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Flere profiler" +#: ../../include/conversation.php:1626 +msgid "Profile Details" +msgstr "Profildetaljer" -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Mulig å lage flere profiler" +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Fotoalbum" -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Avanserte profiler" +#: ../../include/conversation.php:1642 +msgid "Files and Storage" +msgstr "Filer og lagring" + +#: ../../include/conversation.php:1678 +msgid "Saved Bookmarks" +msgstr "Lagrede bokmerker" -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Ytterlige seksjoner og utvalg til profilen" +#: ../../include/conversation.php:1688 +msgid "Manage Webpages" +msgstr "Håndtere websider" -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Profil-import/-eksport" +#: ../../include/conversation.php:1747 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Deltar" +msgstr[1] "Deltar" -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler" +#: ../../include/conversation.php:1750 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Deltar ikke" +msgstr[1] "Deltar ikke" -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Web-sider" +#: ../../include/conversation.php:1753 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Ikke bestemt" +msgstr[1] "Ikke bestemt" -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Tilby kontrollerte web-sider på din kanal" +#: ../../include/conversation.php:1756 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Enig" +msgstr[1] "Enige" -#: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "" +#: ../../include/conversation.php:1759 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Uenig" +msgstr[1] "Uenige" -#: ../../include/features.php:56 -msgid "Hide Rating" -msgstr "Skjul vurdering" +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Avstår" +msgstr[1] "Avstår" -#: ../../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/selectors.php:30 +msgid "Frequently" +msgstr "Ofte" -#: ../../include/features.php:57 -msgid "Private Notes" -msgstr "Private merknader" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Hver time" -#: ../../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/selectors.php:32 +msgid "Twice daily" +msgstr "To ganger daglig" -#: ../../include/features.php:58 -msgid "Navigation Channel Select" -msgstr "Navigasjon kanalvalg" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Daglig" -#: ../../include/features.php:58 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Endre kanaler direkte fra navigasjonsmenyen" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Ukentlig" -#: ../../include/features.php:59 -msgid "Photo Location" -msgstr "Bildeplassering" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Månedlig" -#: ../../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/selectors.php:49 +msgid "Currently Male" +msgstr "For tiden mann" -#: ../../include/features.php:60 -msgid "Access Controlled Chatrooms" -msgstr "Tilgangsstyrte chatrom" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "For tiden kvinne" -#: ../../include/features.php:60 -msgid "Provide chatrooms and chat services with access control." -msgstr "Tilby chatrom og chattjenester med tilgangskontroll." +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "For det meste mann" -#: ../../include/features.php:61 -msgid "Smart Birthdays" -msgstr "Smarte fødselsdager" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "For det meste kvinne" -#: ../../include/features.php:61 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "Gjør fødselsdagshendelser oppmerksom på tidsoner i tilfelle dine venner er spredt rundt planeten." +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transkjønnet" -#: ../../include/features.php:62 -msgid "Expert Mode" -msgstr "Ekspertmodus" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "interkjønnet" -#: ../../include/features.php:62 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transseksuell" -#: ../../include/features.php:63 -msgid "Premium Channel" -msgstr "Premiumkanal" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermafroditt" -#: ../../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/selectors.php:49 +msgid "Neuter" +msgstr "Intetkjønn" -#: ../../include/features.php:68 -msgid "Post Composition Features" -msgstr "Funksjoner for å lage innlegg" +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "Ubestemt" -#: ../../include/features.php:71 -msgid "Large Photos" -msgstr "Store bilder" +#: ../../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/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/selectors.php:49 +msgid "Undecided" +msgstr "Ubestemt" -#: ../../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/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Menn" -#: ../../include/features.php:73 -msgid "Even More Encryption" -msgstr "Enda mer kryptering" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Kvinner" -#: ../../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/selectors.php:85 +msgid "Gay" +msgstr "Homo" -#: ../../include/features.php:74 -msgid "Enable Voting Tools" -msgstr "Skru på verktøy for å stemme" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbisk" -#: ../../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/selectors.php:85 +msgid "No Preference" +msgstr "Ingen preferanse" -#: ../../include/features.php:75 -msgid "Delayed Posting" -msgstr "Tidfest publisering" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Biseksuell" -#: ../../include/features.php:75 -msgid "Allow posts to be published at a later date" -msgstr "Tillat innlegg å bli publisert på et senere tidspunkt" +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autoseksuell" -#: ../../include/features.php:76 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Forhindre duplikat av innlegg/kommentarer" +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Avholdende" -#: ../../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/selectors.php:85 +msgid "Virgin" +msgstr "Jomfru" -#: ../../include/features.php:82 -msgid "Network and Stream Filtering" -msgstr "Nettverk- og strømfiltrering" +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Avviker" -#: ../../include/features.php:83 -msgid "Search by Date" -msgstr "Søk etter dato" +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetisj" -#: ../../include/features.php:83 -msgid "Ability to select posts by date ranges" -msgstr "Mulighet for å velge innlegg etter datoområde" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Masse" -#: ../../include/features.php:84 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Personverngrupper" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Ikke-seksuell" -#: ../../include/features.php:84 -msgid "Enable management and selection of privacy groups" -msgstr "Skru på håndtering og valg av personverngrupper" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Enslig" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Lagrede søk" +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Ensom" -#: ../../include/features.php:85 -msgid "Save search terms for re-use" -msgstr "Lagre søkeuttrykk for senere bruk" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Tilgjengelig" -#: ../../include/features.php:86 -msgid "Network Personal Tab" -msgstr "Nettverk personlig fane" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Ikke tilgjengelig" -#: ../../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/selectors.php:123 +msgid "Has crush" +msgstr "Er forelsket" -#: ../../include/features.php:87 -msgid "Network New Tab" -msgstr "Nettverk Ny fane" +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Betatt" -#: ../../include/features.php:87 -msgid "Enable tab to display all new Network activity" -msgstr "Skru på fane for å vise all ny nettverksaktivitet" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Sammen med" -#: ../../include/features.php:88 -msgid "Affinity Tool" -msgstr "Nærhetsverktøy" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Utro" -#: ../../include/features.php:88 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrer strømaktiviteten etter releasjonsdybde" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Sexavhengig" -#: ../../include/features.php:89 -msgid "Connection Filtering" -msgstr "Filtrer forbindelser" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Venner med frynsegoder" -#: ../../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/selectors.php:123 +msgid "Casual" +msgstr "Tilfeldig" -#: ../../include/features.php:90 -msgid "Show channel suggestions" -msgstr "Vis kanalforslag" +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Forlovet" -#: ../../include/features.php:95 -msgid "Post/Comment Tools" -msgstr "Innlegg-/Kommentar-verktøy" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Gift" -#: ../../include/features.php:96 -msgid "Community Tagging" -msgstr "Felleskapsmerkelapper" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Gift i fantasien" -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" -msgstr "Mulighet til å merke eksisterende meldinger" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partnere" -#: ../../include/features.php:97 -msgid "Post Categories" -msgstr "Innleggskategorier" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Samboer" -#: ../../include/features.php:97 -msgid "Add categories to your posts" -msgstr "Legg kategorier til dine innlegg" +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Samboer" -#: ../../include/features.php:98 -msgid "Emoji Reactions" -msgstr "Emoji-reaksjoner" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Lykkelig" -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Legg til muligheten for emoji-reaksjoner på innlegg" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Ikke på utkikk" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Lagrede mapper" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Partnerbytte" -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" -msgstr "Mulighet til å sortere innlegg i mapper" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Bedratt" -#: ../../include/features.php:100 -msgid "Dislike Posts" -msgstr "Mislik innlegg" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Separert" -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" -msgstr "Mulighet til å mislike innlegg/kommentarer" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Ustabilt" -#: ../../include/features.php:101 -msgid "Star Posts" -msgstr "Stjerneinnlegg" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Skilt" -#: ../../include/features.php:101 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mulighet til å merke spesielle innlegg med en stjerne" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Skilt i fantasien" -#: ../../include/features.php:102 -msgid "Tag Cloud" -msgstr "Merkelappsky" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Enke" -#: ../../include/features.php:102 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Tilby en personlig merkelappsky på din kanalside" +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Usikkert" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn." +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Det er komplisert" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Legg nye forbindelser i denne personverngruppen" +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "Bryr meg ikke" -#: ../../include/group.php:289 -msgid "edit" -msgstr "endre" +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Spør meg" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Endre gruppe" +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Synlig for ditt standard publikum" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Legg til personverngruppe" +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Kanaler uten personverngruppe" +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Offentlig" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "legg til" +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" +#: ../../include/PermissionDescription.php:118 +#, php-format +msgid "Any account on %s" +msgstr "" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Starter:" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Slutter:" +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "" -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Denne hendelsen er lagt til i din kalender." +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Ikke spesifisert" +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "" -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Trenger handling" +#: ../../include/PermissionDescription.php:161 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Ferdig" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "Igang" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "" -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Avbrutt" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" + +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "" #: ../../include/account.php:28 msgid "Not a valid email address" @@ -8884,6 +8415,11 @@ msgstr "Registreringsbekreftelse for %s" msgid "Registration request at %s" msgstr "Registreringsforespørsel hos %s" +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "Administrator" + #: ../../include/account.php:339 msgid "your registration password" msgstr "ditt registreringspassord" @@ -8900,486 +8436,699 @@ 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." +msgstr "Registrering trukket tilbake for %s" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Kanalen er slettet og finnes ikke lenger." +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Konto bekreftet. Vennligst logg inn." -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protokollen er avskrudd." +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Klikk her for å oppgradere." -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "Kanaloppdagelse mislyktes." +#: ../../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/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Kan ikke lage forbindelse med deg selv." +#: ../../include/account.php:736 +msgid "This action is not available under your subscription plan." +msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan." #: ../../include/attach.php:247 ../../include/attach.php:333 msgid "Item was not found." msgstr "Elementet ble ikke funnet." -#: ../../include/attach.php:499 +#: ../../include/attach.php:497 msgid "No source file." msgstr "Ingen kildefil." -#: ../../include/attach.php:521 +#: ../../include/attach.php:519 msgid "Cannot locate file to replace" msgstr "Kan ikke finne filen som skal byttes ut" -#: ../../include/attach.php:539 +#: ../../include/attach.php:537 msgid "Cannot locate file to revise/update" msgstr "Finner ikke filen som skal revideres/oppdateres" -#: ../../include/attach.php:674 +#: ../../include/attach.php:672 #, php-format msgid "File exceeds size limit of %d" msgstr "Filens størrelse overgår grensen på %d" -#: ../../include/attach.php:688 +#: ../../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/attach.php:846 +#: ../../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/attach.php:859 +#: ../../include/attach.php:855 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 +#: ../../include/attach.php:909 ../../include/attach.php:925 msgid "Path not available." msgstr "Stien er ikke tilgjengelig." -#: ../../include/attach.php:977 ../../include/attach.php:1129 +#: ../../include/attach.php:971 ../../include/attach.php:1123 msgid "Empty pathname" msgstr "Tomt sti-navn" -#: ../../include/attach.php:1003 +#: ../../include/attach.php:997 msgid "duplicate filename or path" msgstr "duplikat av filnavn eller sti" -#: ../../include/attach.php:1025 +#: ../../include/attach.php:1019 msgid "Path not found." msgstr "Stien ble ikke funnet." -#: ../../include/attach.php:1083 +#: ../../include/attach.php:1077 msgid "mkdir failed." msgstr "mkdir mislyktes." -#: ../../include/attach.php:1087 +#: ../../include/attach.php:1081 msgid "database storage failed." msgstr "databaselagring mislyktes." -#: ../../include/attach.php:1135 +#: ../../include/attach.php:1129 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/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Kryptert innhold" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Mangler navn" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installer %s element:" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Navnet er for langt" -#: ../../include/bbcode.php:182 -#, php-format +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Ingen kontoidentifikator" + +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Kallenavn er påkrevd." + +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Reservert kallenavn. Vennligst velg et annet." + +#: ../../include/channel.php:211 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." +"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:287 +msgid "Unable to retrieve created identity" +msgstr "Klarer ikke å hente den lagede identiteten" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Standardprofil" + +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "Forespurt kanal er ikke tilgjengelig." + +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Lag ny profil" + +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Kjønn:" + +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Status:" + +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Hjemmeside:" + +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Online nå" + +#: ../../include/channel.php:1147 +msgid "Like this channel" +msgstr "Lik denne kanalen" + +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1179 +msgid "Birthday:" +msgstr "Fødselsdag:" -#: ../../include/bbcode.php:261 +#: ../../include/channel.php:1192 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s skrev følgende %2$s %3$s" +msgid "for %1$d %2$s" +msgstr "for %1$d %2$s" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Klikk for å åpne/lukke" +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Seksuell preferanse:" -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "avsløring" +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Merkelapper:" -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Politiske synspunkter:" -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 skrev:" +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religion:" -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Ukjent)" +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Hobbyer/interesser:" -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Synlig for enhver på Internett." +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Liker:" -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Synlig bare for deg." +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "Misliker:" -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Synlig for enhver i dette nettverket." +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformasjon og sosiale nettverk:" -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Synlig for enhver som er autentisert." +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "Mine andre kanaler:" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "Musikkinteresse:" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "Bøker, litteratur:" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "TV:" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/kultur/underholdning:" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "Kjærlighet/romantikk:" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "Arbeid/sysselsetting:" + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "Skole/utdannelse:" + +#: ../../include/channel.php:1251 +msgid "Like this thing" +msgstr "Lik denne tingen" + +#: ../../include/features.php:48 +msgid "General Features" +msgstr "Generelle funksjoner" + +#: ../../include/features.php:50 +msgid "Content Expiration" +msgstr "Innholdet utløper" + +#: ../../include/features.php:50 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden" + +#: ../../include/features.php:51 +msgid "Multiple Profiles" +msgstr "Flere profiler" + +#: ../../include/features.php:51 +msgid "Ability to create multiple profiles" +msgstr "Mulig å lage flere profiler" + +#: ../../include/features.php:52 +msgid "Advanced Profiles" +msgstr "Avanserte profiler" + +#: ../../include/features.php:52 +msgid "Additional profile sections and selections" +msgstr "Ytterlige seksjoner og utvalg til profilen" + +#: ../../include/features.php:53 +msgid "Profile Import/Export" +msgstr "Profil-import/-eksport" + +#: ../../include/features.php:53 +msgid "Save and load profile details across sites/channels" +msgstr "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler" + +#: ../../include/features.php:54 +msgid "Web Pages" +msgstr "Web-sider" + +#: ../../include/features.php:54 +msgid "Provide managed web pages on your channel" +msgstr "Tilby kontrollerte web-sider på din kanal" + +#: ../../include/features.php:55 +msgid "Hide Rating" +msgstr "Skjul vurdering" + +#: ../../include/features.php:55 +msgid "" +"Hide the rating buttons on your channel and profile pages. Note: People can " +"still rate you somewhere else." +msgstr "Skjul vurderingsknappene for din kanal og profilsider. Merknad: folk kan fortsatt vurdere deg et annet sted." + +#: ../../include/features.php:56 +msgid "Private Notes" +msgstr "Private merknader" + +#: ../../include/features.php:56 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Skru på et verktøy for å lagre notater og påminnelser (merknad: ikke kryptert)" + +#: ../../include/features.php:57 +msgid "Navigation Channel Select" +msgstr "Navigasjon kanalvalg" + +#: ../../include/features.php:57 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Endre kanaler direkte fra navigasjonsmenyen" + +#: ../../include/features.php:58 +msgid "Photo Location" +msgstr "Bildeplassering" + +#: ../../include/features.php:58 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart." + +#: ../../include/features.php:59 +msgid "Access Controlled Chatrooms" +msgstr "" + +#: ../../include/features.php:59 +msgid "Provide chatrooms and chat services with access control." +msgstr "" + +#: ../../include/features.php:60 +msgid "Smart Birthdays" +msgstr "" + +#: ../../include/features.php:60 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "" + +#: ../../include/features.php:61 +msgid "Expert Mode" +msgstr "Ekspertmodus" + +#: ../../include/features.php:61 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg" + +#: ../../include/features.php:62 +msgid "Premium Channel" +msgstr "Premiumkanal" -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Synlig for alle på %s." +#: ../../include/features.php:62 +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/items.php:1151 -msgid "Visible to all connections." -msgstr "Synlig for alle forbindelser." +#: ../../include/features.php:67 +msgid "Post Composition Features" +msgstr "Funksjoner for å lage innlegg" -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Synlig for godkjente forbindelser." +#: ../../include/features.php:70 +msgid "Large Photos" +msgstr "Store bilder" -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Synlig for spesifikke forbindelser." +#: ../../include/features.php:70 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Inkluder store (1024px) småbilder i innlegg. Hvis denne ikke er påskrudd, bruk små (640px) småbilder." -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Personverngruppen er tom." +#: ../../include/features.php:71 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Automatisk import av kanalinnhold fra andre kanaler eller strømmer" -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Personverngruppe: %s" +#: ../../include/features.php:72 +msgid "Even More Encryption" +msgstr "Enda mer kryptering" -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Forbindelsen ble ikke funnet." +#: ../../include/features.php:72 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel" -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "profilbilde" +#: ../../include/features.php:73 +msgid "Enable Voting Tools" +msgstr "Skru på verktøy for å stemme" -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Innebygget innhold" +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" +msgstr "Tilby en type innlegg som andre kan stemme på" -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Innbygging avskrudd" +#: ../../include/features.php:74 +msgid "Delayed Posting" +msgstr "Tidfest publisering" -#: ../../include/widgets.php:103 -msgid "System" -msgstr "System" +#: ../../include/features.php:74 +msgid "Allow posts to be published at a later date" +msgstr "Tillat innlegg å bli publisert på et senere tidspunkt" -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Ny app" +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Forhindre duplikat av innlegg/kommentarer" -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Forslag" +#: ../../include/features.php:75 +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/widgets.php:155 -msgid "See more..." -msgstr "Se mer..." +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" +msgstr "Nettverk- og strømfiltrering" -#: ../../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/features.php:82 +msgid "Search by Date" +msgstr "Søk etter dato" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Legg til ny forbindelse" +#: ../../include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Mulighet for å velge innlegg etter datoområde" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Skriv kanaladressen" +#: ../../include/features.php:83 ../../include/group.php:311 +msgid "Privacy Groups" +msgstr "Personverngrupper" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" +msgstr "Skru på håndtering og valg av personverngrupper" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Merknader" +#: ../../include/features.php:84 +msgid "Save search terms for re-use" +msgstr "Lagre søkeuttrykk for senere bruk" -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Fjern begrep" +#: ../../include/features.php:85 +msgid "Network Personal Tab" +msgstr "Nettverk personlig fane" -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alt" +#: ../../include/features.php:85 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Skru på fane for å bare vise Nettverksinnlegg som du har deltatt i" -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Arkiv" +#: ../../include/features.php:86 +msgid "Network New Tab" +msgstr "Nettverk Ny fane" -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Forny" +#: ../../include/features.php:86 +msgid "Enable tab to display all new Network activity" +msgstr "Skru på fane for å vise all ny nettverksaktivitet" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Kontoinnstillinger" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Nærhetsverktøy" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanalinnstillinger" +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrer strømaktiviteten etter releasjonsdybde" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Tilleggsfunksjoner" +#: ../../include/features.php:88 +msgid "Connection Filtering" +msgstr "Filtrer forbindelser" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Funksjons-/Tilleggsinnstillinger" +#: ../../include/features.php:88 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtrer innkommende innlegg fra forbindelser basert på nøkkelord/innhold" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Visningsinnstillinger" +#: ../../include/features.php:89 +msgid "Show channel suggestions" +msgstr "Vis kanalforslag" -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Håndter plasseringer" +#: ../../include/features.php:94 +msgid "Post/Comment Tools" +msgstr "Innlegg-/Kommentar-verktøy" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Eksporter kanal" +#: ../../include/features.php:95 +msgid "Community Tagging" +msgstr "Felleskapsmerkelapper" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Tilkoblede app-er" +#: ../../include/features.php:95 +msgid "Ability to tag existing posts" +msgstr "Mulighet til å merke eksisterende meldinger" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Premiumkanal-innstillinger" +#: ../../include/features.php:96 +msgid "Post Categories" +msgstr "Innleggskategorier" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Meny for privat post" +#: ../../include/features.php:96 +msgid "Add categories to your posts" +msgstr "Legg kategorier til dine innlegg" -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Kombinert visning" +#: ../../include/features.php:97 +msgid "Emoji Reactions" +msgstr "" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Samtaler" +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "" -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Mottatte meldinger" +#: ../../include/features.php:98 +msgid "Ability to file posts under folders" +msgstr "Mulighet til å sortere innlegg i mapper" -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Sendte meldinger" +#: ../../include/features.php:99 +msgid "Dislike Posts" +msgstr "Mislik innlegg" -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Ingen meldinger." +#: ../../include/features.php:99 +msgid "Ability to dislike posts/comments" +msgstr "Mulighet til å mislike innlegg/kommentarer" -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Slett samtale" +#: ../../include/features.php:100 +msgid "Star Posts" +msgstr "Stjerneinnlegg" -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Kalenderverktøy" +#: ../../include/features.php:100 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mulighet til å merke spesielle innlegg med en stjerne" -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Eksporter kalender" +#: ../../include/features.php:101 +msgid "Tag Cloud" +msgstr "Merkelappsky" -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importer kalender" +#: ../../include/features.php:101 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Tilby en personlig merkelappsky på din kanalside" -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Overblikk" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Innebygget innhold" -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Chatmedlemmer" +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Innbygging avskrudd" -#: ../../include/widgets.php:869 -msgid "Wiki List" +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" msgstr "" -#: ../../include/widgets.php:907 -msgid "Wiki Pages" +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" msgstr "" -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Bokmerkede chatrom" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Foreslåtte chatrom" +#: ../../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:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/bilde" +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "Vis" -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Klikk for å vise mer" +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Ikke vis" -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Vurderingsverktøy" +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Andre nettverk og innleggstjenester" -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Vurder meg" +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "" -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Vis vurderinger" +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Logget ut." -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Forum" +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Mislykket autentisering" -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Oppgaver" +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "" -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Dokumentasjon" +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Alder:" -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Prosjekt-/Nettstedsinformasjon" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD eller MM-DD" -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "For medlemmer" +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "aldri" -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "For administratorer" +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "for mindre enn ett sekund siden" -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "For utviklere" +#: ../../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:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Medlemsregistreringer venter på bekreftelse" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "år" +msgstr[1] "år" -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Inspiser kø" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "måned" +msgstr[1] "måneder" -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Databaseoppdateringer" +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "uke" +msgstr[1] "uker" -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Tilleggsfunksjoner" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dager" -#: ../../include/activities.php:41 -msgid " and " -msgstr "og" +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "time" +msgstr[1] "timer" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "offentlig profil" +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minutt" +msgstr[1] "minutter" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s endret %2$s til “%3$s”" +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "sekund" +msgstr[1] "sekunder" -#: ../../include/activities.php:59 +#: ../../include/datetime.php:562 #, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besøk %1$s sitt %2$s" +msgid "%1$s's birthday" +msgstr "%1$s sin fødselsdag" -#: ../../include/activities.php:62 +#: ../../include/datetime.php:563 #, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s har oppdatert %2$s, endret %3$s." +msgid "Happy Birthday %1$s" +msgstr "Gratulerer med dagen, %1$s !" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Vedlegg:" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn." -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "$Projectname hendelsesvarsling:" +#: ../../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/js_strings.php:5 msgid "Delete this item?" msgstr "Slett dette elementet?" #: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "" +msgid "[-] show less" +msgstr "[-] Vis mindre" #: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "" +msgid "[+] expand" +msgstr "[+] Utvid" #: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "" +msgid "[-] collapse" +msgstr "[-] Lukk" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9609,222 +9358,277 @@ msgctxt "calendar" msgid "All day" msgstr "Hele dagen" -#: ../../include/contact_widgets.php:11 +#: ../../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 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitasjon tilgjengelig" -msgstr[1] "%d invitasjoner tilgjengelig" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Finn kanaler" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "Bildefilen er tom." -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Skriv navn eller interesse" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "Bildelagring mislyktes." + +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "et nytt bilde" + +#: ../../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/photos.php:506 +msgid "Upload New Photos" +msgstr "Last opp nye bilder" + +#: ../../include/zot.php:699 +msgid "Invalid data packet" +msgstr "Ugyldig datapakke" + +#: ../../include/zot.php:715 +msgid "Unable to verify channel signature" +msgstr "Ikke i stand til å sjekke kanalsignaturen" + +#: ../../include/zot.php:2363 +#, 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/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Forbindelse/Følg" +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kan se mine forbindelser" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Eksempler: Ola Nordmann, fisking" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kan se mine filer og bilder" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Tilfeldig profil" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kan se mine websider" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Inviter venner" +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kan sende meg deres kanalstrøm og innlegg" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Avansert eksempel: navn=fred og land=island" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan lage innlegg på min kanalside (\"vegg\")" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d forbindelse felles" -msgstr[1] "%d forbindelser felles" +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Kan kommentere på eller like mine innlegg" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "vis mer" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kan sende meg private meldinger" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Kataloginnstillinger" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kan like/ikke like forskjellige greier" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Trygt modus" +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profiler og andre ting enn innlegg/kommentarer" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Bare offentlige forum" +#: ../../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/dir_fns.php:145 -msgid "This Website Only" -msgstr "Kun dette nettstedet" +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avansert - nyttig for å lage forumkanaler for grupper" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Ingen mottaker angitt." +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[ikke noe emne]" +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kan skrive til mitt lager for filer og bilder" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kan ikke avgjøre avsender." +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kan endre mine websider" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Lagret innlegg kunne ikke bekreftes." +#: ../../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:269 -msgid "Who can see this?" -msgstr "Hvem kan se dette?" +#: ../../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:270 -msgid "Custom selection" -msgstr "Tilpasset utvalg" +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kan administrere mine kanalressurser" -#: ../../include/acl_selectors.php:271 +#: ../../include/permissions.php:46 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\"." +"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/acl_selectors.php:272 -msgid "Show" -msgstr "Vis" +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Sosialt nettverk" -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Ikke vis" +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Sosial - ganske offentlig" -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Andre nettverk og innleggstjenester" +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Sosial - begrenset" -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Innleggstillatelsene %s kan ikke endres %s etter at et innlegg er delt.
Disse innstillingene angir hvem som har tillatelse til å se innlegget." +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Sosial - privat" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Fødselsdag" +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Forum for fellesskap" -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Alder:" +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Forum - ganske offentlig" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD eller MM-DD" +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - begrenset" -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "aldri" +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - privat" -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "for mindre enn ett sekund siden" +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Republisering av strømmet innhold" -#: ../../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:879 +msgid "Feed - Mostly Public" +msgstr "Strøm - ganske offentlig" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "år" -msgstr[1] "år" +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Strøm - begrenset" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "måned" -msgstr[1] "måneder" +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Spesiell bruk" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "uke" -msgstr[1] "uker" +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Spesiell - kjendis/talerstol" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dager" +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Spesiell - gruppelager" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "time" -msgstr[1] "timer" +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Tilpasset/Ekspertmodus" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minutt" -msgstr[1] "minutter" +#: ../../include/activities.php:41 +msgid " and " +msgstr "og" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "sekund" -msgstr[1] "sekunder" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "offentlig profil" -#: ../../include/datetime.php:562 +#: ../../include/activities.php:58 #, php-format -msgid "%1$s's birthday" -msgstr "%1$s sin fødselsdag" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s endret %2$s til “%3$s”" -#: ../../include/datetime.php:563 +#: ../../include/activities.php:59 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Gratulerer med dagen, %1$s !" - -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Offentlig tidslinje" - -#: ../../include/zot.php:697 -msgid "Invalid data packet" -msgstr "Ugyldig datapakke" - -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" -msgstr "Ikke i stand til å sjekke kanalsignaturen" +msgid "Visit %1$s's %2$s" +msgstr "Besøk %1$s sitt %2$s" -#: ../../include/zot.php:2326 +#: ../../include/activities.php:62 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Ikke i stand til å bekrefte signaturen til %s" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s har oppdatert %2$s, endret %3$s." -#: ../../include/zot.php:3703 -msgid "invalid target signature" -msgstr "Målets signatur er ugyldig" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Vedlegg:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "$Projectname hendelsesvarsling:" #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" @@ -9962,66 +9766,62 @@ 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:1163 +#: ../../boot.php:1162 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" -msgstr "Søk %1$s (%2$s)" +msgstr "" -#: ../../boot.php:1163 +#: ../../boot.php:1162 msgctxt "opensearch" msgid "$Projectname" -msgstr "$Projectname" +msgstr "" -#: ../../boot.php:1481 +#: ../../boot.php:1480 #, php-format msgid "Update %s failed. See error logs." msgstr "Oppdatering %s mislyktes. Se feilloggen." -#: ../../boot.php:1484 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "Oppdateringsfeil ved %s" -#: ../../boot.php:1685 +#: ../../boot.php:1684 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:1708 +#: ../../boot.php:1707 msgid "Remember me" msgstr "Husk meg" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "Glemt passordet ditt?" -#: ../../boot.php:2277 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "Skru på mobil" -#: ../../boot.php:2432 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette." -#: ../../boot.php:2435 +#: ../../boot.php:2428 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] SSL-feil ved nettsted hos %s" -#: ../../boot.php:2478 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "Cron/planlagte oppgaver kjører ikke." -#: ../../boot.php:2482 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-oppgaver kjører ikke på %s" diff --git a/view/nb-no/hstrings.php b/view/nb-no/hstrings.php index 53aae8c0e..e03ba321d 100644 --- a/view/nb-no/hstrings.php +++ b/view/nb-no/hstrings.php @@ -4,39 +4,7 @@ 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"; @@ -69,8 +37,63 @@ 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."; @@ -123,7 +146,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"] = "Forbindelsesverktøy"; +App::$strings["Connection Tools"] = ""; App::$strings["Slide to adjust your degree of friendship"] = "Flytt for å justere din grad av vennskap"; App::$strings["Rating"] = "Vurdering"; App::$strings["Slide to adjust your rating"] = "Flytt for å justere din vurdering"; @@ -135,7 +158,6 @@ 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"; @@ -144,30 +166,6 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Du kan endre disse innstillingene her, men de vil ikke få noen effekt før de arvede innstillingene endres."; App::$strings["Last update:"] = "Siste oppdatering:"; App::$strings["Public access denied."] = "Offentlig tilgang avvist."; -App::$strings["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", @@ -198,74 +196,13 @@ 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["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["Item not found"] = "Elementet ble ikke funnet."; -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["Title (optional)"] = "Tittel (valgfri)"; +App::$strings["Edit Block"] = "Endre byggekloss"; +App::$strings["No channel."] = "Ingen kanal."; +App::$strings["Common connections"] = "Felles forbindelser"; +App::$strings["No connections in common."] = "Ingen forbindelser felles."; App::$strings["Blocked"] = "Blokkert"; App::$strings["Ignored"] = "Ignorert"; App::$strings["Hidden"] = "Skjult"; @@ -317,38 +254,51 @@ 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["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["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["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["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["Save to Folder:"] = "Lagre til mappe:"; +App::$strings["- select -"] = "- velg -"; +App::$strings["Save"] = "Lagre"; App::$strings["Invalid message"] = "Ugyldig melding"; App::$strings["no results"] = "ingen resultater"; +App::$strings["Delivery report for %1\$s"] = "Leveringsrapport for %1\$s"; App::$strings["channel sync processed"] = "Kanalsynkronisering er behandlet"; App::$strings["queued"] = "lagt i kø"; App::$strings["posted"] = "lagt inn"; @@ -360,14 +310,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"] = "Sidelenke"; +App::$strings["Page link"] = ""; App::$strings["Edit Webpage"] = "Endre webside"; +App::$strings["Channel added."] = "Kanal lagt til."; +App::$strings["network"] = "nettverk"; +App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Personverngruppen er opprettet."; App::$strings["Could not create privacy group."] = "Kunne ikke opprette personverngruppen."; App::$strings["Privacy group not found."] = "Personverngruppen ble ikke funnet"; @@ -381,33 +331,16 @@ 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["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["Share content from Firefox to \$Projectname"] = "Del innhold fra Firefox til \$Projectname"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Skru på Firefox \$Projectname tilbyderen"; +App::$strings["Authorize application connection"] = "Tillat programforbindelse"; +App::$strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:"; +App::$strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"; App::$strings["Documentation Search"] = "Søk i dokumentasjon"; App::$strings["Help:"] = "Hjelp:"; App::$strings["Help"] = "Hjelp"; App::$strings["\$Projectname Documentation"] = "\$Projectname dokumentasjon"; -App::$strings["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"; @@ -419,100 +352,8 @@ 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["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 login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Vennligst logg inn med din \$Projectname ID eller registrer deg som et nytt \$Projectname-medlem for å fortsette"; -App::$strings["Invalid request."] = "Ugyldig forespørsel."; -App::$strings["channel"] = "kanal"; -App::$strings["thing"] = "ting"; -App::$strings["Channel unavailable."] = "Kanalen er utilgjengelig."; -App::$strings["Previous action reversed."] = "Forrige handling er omgjort."; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "status"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s sin %3\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s sin %3\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s er enig med %2\$s sin %3\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s er ikke enig med %2\$s sin %3\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s avstår fra å mene noe om %2\$s sin %3\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s deltar på %2\$ss %3\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s deltar ikke på %2\$ss %3\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s deltar kanskje på %2\$ss %3\$s"; -App::$strings["Action completed."] = "Handling ferdig."; -App::$strings["Thank you."] = "Tusen takk."; -App::$strings["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["Apps"] = "Apper"; +App::$strings["Item not available."] = "Elementet er ikke tilgjengelig."; App::$strings["Your service plan only allows %d channels."] = "Din tjenesteplan tillater bare %d kanaler."; App::$strings["Nothing to import."] = "Ingenting å importere."; App::$strings["Unable to download data from old server"] = "Ikke i stand til å laste ned data fra gammel tjener"; @@ -533,8 +374,6 @@ 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."; @@ -543,76 +382,60 @@ 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["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["Layouts"] = "Layout"; +App::$strings["Comanche page description language help"] = "Hjelp med Comanche sidebeskrivelsesspråk"; +App::$strings["Layout Description"] = "Layout-beskrivelse"; +App::$strings["Download PDL file"] = "Last ned PDL-fil"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Velkommen til %s"; +App::$strings["First Name"] = "Fornavn"; +App::$strings["Last Name"] = "Etternavn"; +App::$strings["Nickname"] = "Kallenavn"; +App::$strings["Full Name"] = "Fullt navn"; +App::$strings["Email"] = "E-post"; +App::$strings["Profile Photo"] = "Profilbilde"; +App::$strings["Profile Photo 16px"] = "Profilbilde 16px"; +App::$strings["Profile Photo 32px"] = "Profilbilde 32px"; +App::$strings["Profile Photo 48px"] = "Profilbilde 48px"; +App::$strings["Profile Photo 64px"] = "Profilbilde 64px"; +App::$strings["Profile Photo 80px"] = "Profilbilde 80px"; +App::$strings["Profile Photo 128px"] = "Profilbilde 128px"; +App::$strings["Timezone"] = "Tidssone"; +App::$strings["Homepage URL"] = "Hjemmeside URL"; +App::$strings["Language"] = "Språk"; +App::$strings["Birth Year"] = "Fødselsår"; +App::$strings["Birth Month"] = "Fødselsmåne"; +App::$strings["Birth Day"] = "Fødselsdag"; +App::$strings["Birthdate"] = "Fødselsdato"; +App::$strings["Gender"] = "Kjønn"; +App::$strings["Male"] = "Mannlig"; +App::$strings["Female"] = "Kvinnelig"; +App::$strings["webpage"] = "nettside"; +App::$strings["block"] = "byggekloss"; +App::$strings["layout"] = "layout"; +App::$strings["menu"] = "meny"; +App::$strings["%s element installed"] = "%s element installert"; +App::$strings["%s element installation failed"] = "Installasjon av %s-element mislyktes"; +App::$strings["Like/Dislike"] = "Liker/Liker ikke"; +App::$strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Vennligst logg inn med din \$Projectname ID eller registrer deg som et nytt \$Projectname-medlem for å fortsette"; +App::$strings["Invalid request."] = "Ugyldig forespørsel."; +App::$strings["channel"] = "kanal"; +App::$strings["thing"] = "ting"; +App::$strings["Channel unavailable."] = "Kanalen er utilgjengelig."; +App::$strings["Previous action reversed."] = "Forrige handling er omgjort."; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "status"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s sin %3\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s sin %3\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s er enig med %2\$s sin %3\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s er ikke enig med %2\$s sin %3\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s avstår fra å mene noe om %2\$s sin %3\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s deltar på %2\$ss %3\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s deltar ikke på %2\$ss %3\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s deltar kanskje på %2\$ss %3\$s"; +App::$strings["Action completed."] = "Handling ferdig."; +App::$strings["Thank you."] = "Tusen takk."; App::$strings["Import completed"] = "Import ferdig"; App::$strings["Import Items"] = "Importer elementer"; App::$strings["Use this form to import existing posts and content from an export file."] = "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil."; @@ -635,15 +458,18 @@ 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["Primary"] = "Hoved"; +App::$strings["Address"] = "Adresse"; +App::$strings["Primary"] = ""; App::$strings["Drop"] = "Slett"; -App::$strings["Sync Now"] = "Synkroniser nå"; +App::$strings["Sync Now"] = ""; App::$strings["Please wait several minutes between consecutive operations."] = "Vennligst vent flere minutter mellom hver etterfølgende operasjon."; App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Når mulig, fjern en plassering ved å logge inn på det nettstedet eller den hub-en og fjern din kanal."; App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Bruk dette skjemaet for å fjerne plasseringen hvis huben ikke er i drift lenger."; @@ -680,7 +506,23 @@ 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"] = "Delegert kanal"; +App::$strings["Delegated Channel"] = ""; +App::$strings["No valid account found."] = "Ingen gyldig konto funnet."; +App::$strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din."; +App::$strings["Site Member (%s)"] = "Nettstedsmedlem (%s)"; +App::$strings["Password reset requested at %s"] = "Forespurt om å tilbakestille passord hos %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes."; +App::$strings["Password Reset"] = "Tilbakestill passord"; +App::$strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt."; +App::$strings["Your new password is"] = "Ditt nye passord er"; +App::$strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du"; +App::$strings["click here to login"] = "klikke her for å logge inn"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging."; +App::$strings["Your password has changed at %s"] = "Ditt passord er endret hos %s"; +App::$strings["Forgot your Password?"] = "Glemt passord ditt?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner."; +App::$strings["Email Address"] = "E-postadresse"; +App::$strings["Reset"] = "Tilbakestill"; App::$strings["Unable to update menu."] = "Ikke i stand til å oppdatere meny."; App::$strings["Unable to create menu."] = "Ikke i stand til å lage meny."; App::$strings["Menu Name"] = "Menynavn"; @@ -705,25 +547,13 @@ 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 Settings page after successful login."] = "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging."; -App::$strings["Your password has changed at %s"] = "Ditt passord er endret hos %s"; -App::$strings["Forgot your Password?"] = "Glemt passord ditt?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner."; -App::$strings["Email Address"] = "E-postadresse"; -App::$strings["Reset"] = "Tilbakestill"; App::$strings["__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"; @@ -733,13 +563,6 @@ 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."; @@ -769,26 +592,223 @@ 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["Theme settings updated."] = "Temainnstillinger er oppdatert."; -App::$strings["# Accounts"] = "# Kontoer"; -App::$strings["# blocked accounts"] = "# blokkerte kontoer"; -App::$strings["# expired accounts"] = "# utgåtte kontoer"; -App::$strings["# expiring accounts"] = "# kontoer som holder på å gå ut"; -App::$strings["# Channels"] = "# Kanaler"; -App::$strings["# primary"] = "# hoved"; -App::$strings["# clones"] = "# kloner"; -App::$strings["Message queues"] = "Meldingskøer"; -App::$strings["Your software should be updated"] = "Programvaren din bør oppdateres"; -App::$strings["Administration"] = "Administrasjon"; -App::$strings["Summary"] = "Sammendrag"; -App::$strings["Registered accounts"] = "Registrerte kontoer"; -App::$strings["Pending registrations"] = "Ventende registreringer"; -App::$strings["Registered channels"] = "Registrerte kanaler"; -App::$strings["Active plugins"] = "Aktive tilleggsfunksjoner"; -App::$strings["Version"] = "Versjon"; -App::$strings["Repository version (master)"] = "Depotversjon (master)"; -App::$strings["Repository version (dev)"] = "Depotversjon (dev)"; -App::$strings["Site settings updated."] = "Nettstedsinnstillinger er oppdatert."; +App::$strings["Name or caption"] = "Navn eller overskrift"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""; +App::$strings["Choose a short nickname"] = "Velg et kort kallenavn"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s"; +App::$strings["Channel role and privacy"] = "Kanalrolle og personvern"; +App::$strings["Select a channel role with your privacy requirements."] = "Velg en kanalrolle for ditt personvernbehov."; +App::$strings["Read more about roles"] = "Les mer om roller"; +App::$strings["Create Channel"] = "Lag kanal"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser."; +App::$strings["or import an existing channel from another location."] = "eller importer en eksisterende kanal fra et annet sted."; +App::$strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; +App::$strings["Discard"] = "Forkast"; +App::$strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett"; +App::$strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes."; +App::$strings["Profile Photos"] = "Profilbilder"; +App::$strings["Album not found."] = "Albumet ble ikke funnet."; +App::$strings["Delete Album"] = "Slett album"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = ""; +App::$strings["Delete Photo"] = "Slett bilde"; +App::$strings["No photos selected"] = "Ingen bilder valgt"; +App::$strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt."; +App::$strings["Upload Photos"] = "Last opp bilder"; +App::$strings["Enter an album name"] = "Skriv et albumnavn"; +App::$strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; +App::$strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen"; +App::$strings["Caption (optional):"] = "Bildetekst (valgfritt):"; +App::$strings["Description (optional):"] = "Beskrivelse (valgfritt):"; +App::$strings["Album name could not be decoded"] = "Albumnavnet kunne ikke dekodes"; +App::$strings["Contact Photos"] = "Kontaktbilder"; +App::$strings["Show Newest First"] = "Vis nyeste først"; +App::$strings["Show Oldest First"] = "Vis eldste først"; +App::$strings["View Photo"] = "Vis foto"; +App::$strings["Edit Album"] = "Endre album"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan være begrenset."; +App::$strings["Photo not available"] = "Bilde er utilgjengelig"; +App::$strings["Use as profile photo"] = "Bruk som profilbilde"; +App::$strings["Use as cover photo"] = ""; +App::$strings["Private Photo"] = "Privat bilde"; +App::$strings["View Full Size"] = "Vis i full størrelse"; +App::$strings["Remove"] = "Fjern"; +App::$strings["Edit photo"] = "Endre bilde"; +App::$strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)"; +App::$strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; +App::$strings["Enter a new album name"] = "Skriv et nytt albumnavn"; +App::$strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; +App::$strings["Caption"] = "Overskrift"; +App::$strings["Add a Tag"] = "Legg til merkelapp"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "Flag som voksent i albumvisning"; +App::$strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)"; +App::$strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)"; +App::$strings["Please wait"] = "Vennligst vent"; +App::$strings["This is you"] = "Dette er deg"; +App::$strings["Comment"] = "Kommentar"; +App::$strings["__ctx:title__ Likes"] = "Liker"; +App::$strings["__ctx:title__ Dislikes"] = "Liker ikke"; +App::$strings["__ctx:title__ Agree"] = "Enig"; +App::$strings["__ctx:title__ Disagree"] = "Uenig"; +App::$strings["__ctx:title__ Abstain"] = "Avstår"; +App::$strings["__ctx:title__ Attending"] = "Deltar"; +App::$strings["__ctx:title__ Not attending"] = "Deltar ikke"; +App::$strings["__ctx:title__ Might attend"] = "Deltar kanskje"; +App::$strings["View all"] = "Vis alle"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Liker", + 1 => "Liker", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Liker ikke", + 1 => "Liker ikke", +); +App::$strings["Photo Tools"] = ""; +App::$strings["In This Photo:"] = "I dette bildet:"; +App::$strings["Map"] = "Kart"; +App::$strings["__ctx:noun__ Likes"] = "Liker"; +App::$strings["__ctx:noun__ Dislikes"] = "Liker ikke"; +App::$strings["Close"] = "Lukk"; +App::$strings["View Album"] = "Vis album"; +App::$strings["Recent Photos"] = "Nye bilder"; +App::$strings["sent you a private message"] = "sendte deg en privat melding"; +App::$strings["added your channel"] = "la til din kanal"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[idag]"; +App::$strings["posted an event"] = "la ut en hendelse"; +App::$strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din."; +App::$strings["Post successful."] = "Innlegg vellykket."; +App::$strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert."; +App::$strings["Login failed."] = "Innlogging mislyktes."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert."; +App::$strings["Configuration Editor"] = "Konfigurasjonsbehandler"; +App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig."; +App::$strings["Layout updated."] = "Layout er oppdatert."; +App::$strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden"; +App::$strings["Layout not found."] = "Layouten ble ikke funnet."; +App::$strings["Module Name:"] = "Modulnavn:"; +App::$strings["Layout Help"] = "Layout-hjelp"; +App::$strings["Poke"] = "Prikk"; +App::$strings["Poke somebody"] = "Dult noen"; +App::$strings["Poke/Prod"] = "Prikke/oppildne"; +App::$strings["Poke, prod or do other things to somebody"] = "Dult, prikk eller gjør andre ting med noen"; +App::$strings["Recipient"] = "Mottaker"; +App::$strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren"; +App::$strings["Make this post private"] = "Gjør dette innlegget privat"; +App::$strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir følgende feil: %1\$s"; +App::$strings["Profile not found."] = "Profilen ble ikke funnet."; +App::$strings["Profile deleted."] = "Profilen er slettet."; +App::$strings["Profile-"] = "Profil-"; +App::$strings["New profile created."] = "Ny profil opprettet."; +App::$strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen."; +App::$strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport."; +App::$strings["Profile Name is required."] = "Profilnavn er påkrevd."; +App::$strings["Marital Status"] = "Sivilstand"; +App::$strings["Romantic Partner"] = "Romantisk partner"; +App::$strings["Likes"] = "Liker"; +App::$strings["Dislikes"] = "Liker ikke"; +App::$strings["Work/Employment"] = "Arbeid/sysselsetting"; +App::$strings["Religion"] = "Religion"; +App::$strings["Political Views"] = "Politiske synspunkter"; +App::$strings["Sexual Preference"] = "Seksuelle preferanser"; +App::$strings["Homepage"] = "Hjemmeside"; +App::$strings["Interests"] = "Interesser"; +App::$strings["Profile updated."] = "Profilen er oppdatert."; +App::$strings["Hide your connections list from viewers of this profile"] = ""; +App::$strings["Edit Profile Details"] = "Endre profildetaljer"; +App::$strings["View this profile"] = "Vis denne profilen"; +App::$strings["Edit visibility"] = "Endre synlighet"; +App::$strings["Profile Tools"] = ""; +App::$strings["Change cover photo"] = ""; +App::$strings["Change profile photo"] = "Endre profilbilde"; +App::$strings["Create a new profile using these settings"] = "Lag en ny profil ved å bruke disse innstillingene"; +App::$strings["Clone this profile"] = "Klon denne profilen"; +App::$strings["Delete this profile"] = "Slett denne profilen"; +App::$strings["Add profile things"] = "Legg til profilting"; +App::$strings["Personal"] = "Personlig"; +App::$strings["Relation"] = ""; +App::$strings["Miscellaneous"] = "Forskjellig"; +App::$strings["Import profile from file"] = "Importer profil fra fil"; +App::$strings["Export profile to file"] = "Eksporter profil til fil"; +App::$strings["Your gender"] = ""; +App::$strings["Marital status"] = ""; +App::$strings["Sexual preference"] = ""; +App::$strings["Profile name"] = ""; +App::$strings["This is your default profile."] = "Dette er din standardprofil."; +App::$strings["Your full name"] = ""; +App::$strings["Title/Description"] = ""; +App::$strings["Street address"] = ""; +App::$strings["Locality/City"] = ""; +App::$strings["Region/State"] = ""; +App::$strings["Postal/Zip code"] = ""; +App::$strings["Country"] = ""; +App::$strings["Who (if applicable)"] = ""; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com"; +App::$strings["Since (date)"] = ""; +App::$strings["Tell us about yourself"] = ""; +App::$strings["Hometown"] = ""; +App::$strings["Political views"] = ""; +App::$strings["Religious views"] = ""; +App::$strings["Keywords used in directory listings"] = ""; +App::$strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare"; +App::$strings["Musical interests"] = "Musikkinteresser"; +App::$strings["Books, literature"] = "Bøker, litteratur"; +App::$strings["Television"] = "TV/fjernsyn"; +App::$strings["Film/Dance/Culture/Entertainment"] = ""; +App::$strings["Hobbies/Interests"] = "Hobbier/Interesser"; +App::$strings["Love/Romance"] = ""; +App::$strings["School/Education"] = ""; +App::$strings["Contact information and social networks"] = ""; +App::$strings["My other channels"] = "Mine andre kanaler"; +App::$strings["Profile Image"] = "Profilbilde"; +App::$strings["Edit Profiles"] = "Endre profiler"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart."; +App::$strings["Upload Profile Photo"] = "Last opp profilbilde:"; +App::$strings["Invalid profile identifier."] = "Ugyldig profil-identifikator."; +App::$strings["Profile Visibility Editor"] = "Endre profilsynlighet"; +App::$strings["Profile"] = "Profil"; +App::$strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; +App::$strings["Visible To"] = "Synlig for"; +App::$strings["Public Hubs"] = "Offentlige huber"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Nettstedene på listen tillater offentlig registrering i \$Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger."; +App::$strings["Hub URL"] = "Nettstedets URL"; +App::$strings["Access Type"] = "Tilgangstype"; +App::$strings["Registration Policy"] = "Retningslinjer for registrering"; +App::$strings["Stats"] = ""; +App::$strings["Software"] = ""; +App::$strings["Ratings"] = "Vurderinger"; +App::$strings["Rate"] = "Vurder"; +App::$strings["Website:"] = "Nettsted:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)"; +App::$strings["Rating (this information is public)"] = "Vurdering (denne informasjonen er offentlig)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)"; +App::$strings["No ratings"] = "Ingen vurderinger"; +App::$strings["Rating: "] = "Vurdering:"; +App::$strings["Website: "] = "Nettsted:"; +App::$strings["Description: "] = "Beskrivelse:"; +App::$strings["Theme settings updated."] = "Temainnstillinger er oppdatert."; +App::$strings["# Accounts"] = "# Kontoer"; +App::$strings["# blocked accounts"] = "# blokkerte kontoer"; +App::$strings["# expired accounts"] = "# utgåtte kontoer"; +App::$strings["# expiring accounts"] = "# kontoer som holder på å gå ut"; +App::$strings["# Channels"] = "# Kanaler"; +App::$strings["# primary"] = "# hoved"; +App::$strings["# clones"] = "# kloner"; +App::$strings["Message queues"] = "Meldingskøer"; +App::$strings["Your software should be updated"] = ""; +App::$strings["Administration"] = "Administrasjon"; +App::$strings["Summary"] = "Sammendrag"; +App::$strings["Registered accounts"] = "Registrerte kontoer"; +App::$strings["Pending registrations"] = "Ventende registreringer"; +App::$strings["Registered channels"] = "Registrerte kanaler"; +App::$strings["Active plugins"] = "Aktive tilleggsfunksjoner"; +App::$strings["Version"] = "Versjon"; +App::$strings["Repository version (master)"] = ""; +App::$strings["Repository version (dev)"] = ""; +App::$strings["Site settings updated."] = "Nettstedsinnstillinger er oppdatert."; App::$strings["Default"] = "Standard"; App::$strings["mobile"] = "mobil"; App::$strings["experimental"] = "eksperimentell"; @@ -840,10 +860,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"] = "Logg inn på hjemmesiden"; +App::$strings["Login on Homepage"] = ""; App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert."; -App::$strings["Enable context help"] = "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["Enable context help"] = ""; +App::$strings["Display contextual help for the current page when the help button is pressed."] = ""; App::$strings["Directory Server URL"] = "Katalogtjener URL"; App::$strings["Default directory server"] = "Standard katalogtjener"; App::$strings["Proxy user"] = "Brukernavn mellomtjener"; @@ -869,24 +889,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."] = "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/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Alt annet innebygget innhold vil bli filtrert, med mindre innebygget innhold fra det nettstedet er eksplisitt blokkert."; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = ""; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = ""; +App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = ""; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = ""; App::$strings["Security"] = "Sikkerhet"; App::$strings["Block public"] = "Blokker offentlig tilgang"; App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn."; -App::$strings["Set \"Transport Security\" HTTP header"] = "Sett HTTP header \"Transport Security\""; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Sett HTTP header \"Content Security Policy\""; +App::$strings["Set \"Transport Security\" HTTP header"] = ""; +App::$strings["Set \"Content Security Policy\" HTTP header"] = ""; App::$strings["Allow communications only from these sites"] = "Tillat kommunikasjon med bare disse nettstedene"; App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Et nettsted per linje. La det stå tomt for å tillate kommunikasjon med ethvert nettsted som standard"; App::$strings["Block communications from these sites"] = "Blokker kommunikasjon fra disse nettstedene"; App::$strings["Allow communications only from these channels"] = "Tillat kommunikasjon med bare disse kanalene"; App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "En kanal (hash) per linje. La det stå tomt for å tillate enhver kanal som standard"; App::$strings["Block communications from these channels"] = "Blokker kommunikasjon fra disse kanalene"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "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["Only allow embeds from secure (SSL) websites and links."] = ""; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = ""; +App::$strings["One site per line. By default embedded content is filtered."] = ""; App::$strings["Block embedded HTML from these domains"] = "Blokker innbygget HTML fra disse domenene"; App::$strings["Update has been marked successful"] = "Oppdateringen har blitt merket som en suksess"; App::$strings["Executing %s failed. Check system logs."] = "Utføring av %s feilet. Sjekk systemlogger."; @@ -918,7 +938,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"] = "Registreringer venter på bekreftelse"; +App::$strings["Registrations waiting for confirm"] = ""; App::$strings["Request date"] = "Dato for forespørsel"; App::$strings["No registrations."] = "Ingen registreringer."; App::$strings["Deny"] = "Avslå"; @@ -970,18 +990,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."] = "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["Enter the public git repository URL of the plugin repo."] = ""; +App::$strings["Plugin repo git URL"] = ""; +App::$strings["Custom repo name"] = ""; +App::$strings["(optional)"] = ""; +App::$strings["Download Plugin Repo"] = ""; +App::$strings["Install new repo"] = ""; App::$strings["Install"] = "Installer"; -App::$strings["Manage Repos"] = "Håndter depoter"; -App::$strings["Installed Plugin Repositories"] = "Installerede tilleggsdepoter"; -App::$strings["Install a New Plugin Repository"] = "Installer et nytt tillleggsdepot"; +App::$strings["Manage Repos"] = ""; +App::$strings["Installed Plugin Repositories"] = ""; +App::$strings["Install a New Plugin Repository"] = ""; App::$strings["Update"] = "Oppdater"; -App::$strings["Switch branch"] = "Bytt gren"; +App::$strings["Switch branch"] = ""; App::$strings["No themes found."] = "Ingen temaer er funnet."; App::$strings["Screenshot"] = "Skjermbilde"; App::$strings["Themes"] = "Temaer"; @@ -992,7 +1012,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."] = "Må kunne skrives til av webtjenesten. Relativ til din toppnivåkatalog på webtjeneren."; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; App::$strings["Log level"] = "Loggnivå"; App::$strings["New Profile Field"] = "Nytt profilfelt"; App::$strings["Field nickname"] = "Feltets kallenavn"; @@ -1004,98 +1024,26 @@ App::$strings["Help text"] = "Hjelpetekst"; App::$strings["Additional info (optional)"] = "Tilleggsinformasjon (valgfritt)"; App::$strings["Field definition not found"] = "Feltdefinisjonen ble ikke funnet"; App::$strings["Edit Profile Field"] = "Endre profilfelt"; -App::$strings["Profile Fields"] = "Profilfelter"; -App::$strings["Basic Profile Fields"] = "Grunnleggende profilfelter"; -App::$strings["Advanced Profile Fields"] = "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 import an existing channel from another location."] = "eller importer en eksisterende kanal 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 hubzilla.org to learn more about \$Projectname."] = "Vennligst besøk hubzilla.org for å lære mer om \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Feilmeldinger og feilretting: vennligst besøk"; -App::$strings["\$projectname issues"] = "\$projectname problemer"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com"; -App::$strings["Site Administrators"] = "Nettstedsadministratorer"; -App::$strings["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 may provide additional details."] = "Nettstedene på listen tillater offentlig registrering i \$Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger."; -App::$strings["Hub URL"] = "Nettstedets URL"; -App::$strings["Access Type"] = "Tilgangstype"; -App::$strings["Registration Policy"] = "Retningslinjer for registrering"; -App::$strings["Stats"] = "Statistikk"; -App::$strings["Software"] = "Programvare"; -App::$strings["Ratings"] = "Vurderinger"; -App::$strings["Rate"] = "Vurder"; -App::$strings["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["Profile Fields"] = ""; +App::$strings["Basic Profile Fields"] = ""; +App::$strings["Advanced Profile Fields"] = ""; +App::$strings["(In addition to basic fields)"] = ""; +App::$strings["All available fields"] = ""; +App::$strings["Custom Fields"] = ""; +App::$strings["Create Custom Field"] = ""; +App::$strings["App installed."] = "App installert."; +App::$strings["Malformed app."] = "Feil oppsett for app-en."; +App::$strings["Embed code"] = "Innbyggingskode"; +App::$strings["Edit App"] = "Endre app"; +App::$strings["Create App"] = "Lag app"; +App::$strings["Name of app"] = "Navn på app"; +App::$strings["Location (URL) of app"] = "Plassering (URL) til app"; +App::$strings["Photo icon URL"] = "Bildeikon URL"; +App::$strings["80 x 80 pixels - optional"] = "80 x80 pixler - valgfritt"; +App::$strings["Categories (optional, comma separated list)"] = ""; +App::$strings["Version ID"] = "Versjons-ID"; +App::$strings["Price of app"] = "Pris på app"; +App::$strings["Location (URL) to purchase app"] = "Plassering (URL) for å kjøpe app"; App::$strings["Select a bookmark folder"] = "Velg en bokmerkemappe"; App::$strings["Save Bookmark"] = "Lagre bokmerke"; App::$strings["URL of bookmark"] = "URL-en til bokmerket"; @@ -1121,7 +1069,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["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["Proceed to create your first channel"] = "Gå videre for å lage din første kanal"; App::$strings["Please login."] = "Vennligst logg inn."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet."; App::$strings["Remove This Account"] = "Slett denne kontoen"; @@ -1138,23 +1086,17 @@ 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["Export Channel"] = "Eksporter kanal"; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet."; -App::$strings["Export Content"] = "Eksporter innhold"; -App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner."; -App::$strings["Export your posts from a given year."] = "Eksporter dine innlegg fra et bestemt år"; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "For å velge alle innlegg for et gitt år, slik som iår, besøk %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2\$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)."; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig."; +App::$strings["The error message was:"] = "Feilmeldingen var:"; +App::$strings["Authentication failed."] = "Autentisering mislyktes."; +App::$strings["Remote Authentication"] = "Fjernautentisering"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)"; +App::$strings["Authenticate"] = "Autentiser"; App::$strings["Items tagged with: %s"] = "Elementer merket med: %s"; App::$strings["Search results for: %s"] = "Søkeresultater for: %s"; App::$strings["No service class restrictions found."] = "Ingen restriksjoner er funnet i tjenesteklasse."; App::$strings["Name is required"] = "Navn er påkrevd"; App::$strings["Key and Secret are required"] = "Nøkkel og hemmelighet er påkrevd"; -App::$strings["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."; @@ -1187,12 +1129,6 @@ 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 dropbox 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"; @@ -1252,14 +1188,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."] = "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["0 or blank to use the website limit."] = ""; +App::$strings["This website expires after %d days."] = ""; +App::$strings["This website does not expire imported content."] = ""; +App::$strings["The website limit takes precedence if lower than your limit."] = ""; App::$strings["Maximum Friend Requests/Day:"] = "Maksimalt antall venneforespørsler per dag:"; App::$strings["May reduce spam activity"] = "Kan redusere søppelpostaktivitet"; -App::$strings["Default Post and Publish Permissions"] = "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["Default Post and Publish Permissions"] = ""; +App::$strings["Use my default audience setting for the type of object published"] = ""; App::$strings["Channel permissions category:"] = "Kategori med kanaltillatelser:"; App::$strings["Maximum private messages per day from unknown people:"] = "Maksimalt antall private meldinger per dag fra ukjente personer:"; App::$strings["Useful to reduce spamming"] = "Nyttig for å redusere søppelpost"; @@ -1334,8 +1270,8 @@ App::$strings["Please select a default timezone for your website"] = "Vennligst App::$strings["Site settings"] = "Nettstedets innstillinger"; App::$strings["Enable \$Projectname advanced features?"] = "Skru på avansertehubzilla.org to learn more about \$Projectname."] = "Vennligst besøk hubzilla.org for å lære mer om \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Feilmeldinger og feilretting: vennligst besøk"; +App::$strings["\$projectname issues"] = "\$projectname problemer"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com"; +App::$strings["Site Administrators"] = "Nettstedsadministratorer"; App::$strings["Failed to create source. No channel selected."] = "Mislyktes med å lage kilde. Ingen kanal er valgt."; App::$strings["Source created."] = "Kilden er laget."; App::$strings["Source updated."] = "Kilden er oppdatert."; @@ -1421,7 +1357,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)"] = "Legg til følgende kategorier til innlegg importert fra denne kilden (kommeseparert)"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = ""; App::$strings["Source not found."] = "Kilden ble ikke funnet."; App::$strings["Edit Source"] = "Endre kilde"; App::$strings["Delete Source"] = "Slett kilde"; @@ -1437,38 +1373,60 @@ 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["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["Thing updated"] = "Tingen er oppdatert"; +App::$strings["Object store: failed"] = "Objektlagring: mislyktes"; +App::$strings["Thing added"] = "Ting lagt til"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Vis ting"; +App::$strings["item not found."] = "element ble ikke funnet."; +App::$strings["Edit Thing"] = "Endre ting"; +App::$strings["Select a profile"] = "Velg en profil"; +App::$strings["Post an activity"] = "Legg inn en aktivitet"; +App::$strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen"; +App::$strings["Name of thing e.g. something"] = "Navn på ting for eksempel noe"; +App::$strings["URL of thing (optional)"] = "URL til ting (valgfritt)"; +App::$strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)"; +App::$strings["Add Thing to your Profile"] = "Legg til ting i din profil"; +App::$strings["Export Channel"] = "Eksporter kanal"; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet."; +App::$strings["Export Content"] = "Eksporter innhold"; +App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner."; +App::$strings["Export your posts from a given year."] = "Eksporter dine innlegg fra et bestemt år"; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "For å velge alle innlegg for et gitt år, slik som iår, besøk %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "For å velge alle innlegg fra en gitt måned, slik som januar i år, besøk %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Disse innholdsfilene kan importeres eller gjenopprettes ved å besøke %2\$s på ethvert nettsted som inneholder din kanal. For best resultat, vennligst importer eller gjenopprett disse etter dato (eldste først)."; App::$strings["No connections."] = "Ingen forbindelser."; App::$strings["Visit %s's profile [%s]"] = "Besøk %s sin profil [%s]"; App::$strings["View Connections"] = "Vis forbindelser"; App::$strings["Source of Item"] = "Kilde til element"; -App::$strings["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["Webpages"] = "Websider"; +App::$strings["Actions"] = "Handlinger"; +App::$strings["Page Link"] = "Sidelenke"; +App::$strings["Page Title"] = "Sidetittel"; App::$strings["Xchan Lookup"] = "Xchan oppslag"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Slå opp xchan som begynner med (eller webbie):"; +App::$strings["Site Admin"] = "Nettstedsadministrator"; +App::$strings["Bug Report"] = ""; +App::$strings["View Bookmarks"] = ""; +App::$strings["My Chatrooms"] = ""; +App::$strings["Firefox Share"] = ""; +App::$strings["Remote Diagnostics"] = ""; +App::$strings["Suggest Channels"] = "Foreslå kanaler"; +App::$strings["Login"] = "Logg inn"; +App::$strings["Grid"] = "Nett"; +App::$strings["Channel Home"] = "Kanalhjem"; +App::$strings["Events"] = "Hendelser"; +App::$strings["Directory"] = "Katalog"; +App::$strings["Mail"] = "Melding"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Undersøk"; +App::$strings["Suggest"] = "Forreslå"; +App::$strings["Random Channel"] = "Tilfeldig kanal"; +App::$strings["Invite"] = "Inviter"; +App::$strings["Features"] = "Funksjoner"; +App::$strings["Post"] = "Innlegg"; +App::$strings["Purchase"] = "Kjøp"; App::$strings["Missing room name"] = "Mangler romnavn"; App::$strings["Duplicate room name"] = "Duplikat romnavn"; App::$strings["Invalid room specifier."] = "Ugyldig rom-spesifisering"; @@ -1516,27 +1474,6 @@ 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"; @@ -1573,7 +1510,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["%s show all"] = ""; +App::$strings["[+] show all"] = "[+] Vis alle"; App::$strings["Bold"] = "Uthevet"; App::$strings["Italic"] = "Kursiv"; App::$strings["Underline"] = "Understreket"; @@ -1582,93 +1519,9 @@ 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["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"; -App::$strings["Your posts and conversations"] = "Dine innlegg og samtaler"; -App::$strings["Your profile page"] = "Din profilside"; -App::$strings["Manage/Edit profiles"] = "Håndter/endre profiler"; -App::$strings["Edit Profile"] = "Endre profil"; -App::$strings["Edit your profile"] = "Endre din profil"; -App::$strings["Your photos"] = "Dine bilder"; -App::$strings["Your files"] = "Dine filer"; -App::$strings["Your chatrooms"] = "Dine chatterom"; -App::$strings["Bookmarks"] = "Bokmerker"; -App::$strings["Your bookmarks"] = "Dine bokmerker"; -App::$strings["Your webpages"] = "Dine websider"; -App::$strings["Your wiki"] = ""; -App::$strings["Sign in"] = "Logg på"; -App::$strings["%s - click to logout"] = "%s - klikk for å logge ut"; -App::$strings["Remote authentication"] = "Fjernautentisering"; -App::$strings["Click to authenticate to your home hub"] = "Klikk for å godkjennes mot din hjemme-hub"; -App::$strings["Home Page"] = "Hjemmeside"; -App::$strings["Create an account"] = "Lag en konto"; -App::$strings["Help and documentation"] = "Hjelp og dokumentasjon"; -App::$strings["Applications, utilities, links, games"] = "Programmer, verktøy, lenker, spill"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold"; -App::$strings["Channel Directory"] = "Kanalkatalog"; -App::$strings["Your grid"] = "Ditt nett"; -App::$strings["Mark all grid notifications seen"] = "Marker alle nettvarsler som sett"; -App::$strings["Channel home"] = "Kanalhjem"; -App::$strings["Mark all channel notifications seen"] = "Merk alle kanalvarsler som sett"; -App::$strings["Notices"] = "Varsel"; -App::$strings["Notifications"] = "Varsler"; -App::$strings["See all notifications"] = "Se alle varsler"; -App::$strings["Private mail"] = "Privat post"; -App::$strings["See all private messages"] = "Se alle private meldinger"; -App::$strings["Mark all private messages seen"] = "Merk alle private meldinger som sett"; -App::$strings["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"; @@ -1678,61 +1531,268 @@ 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["%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:"; -App::$strings["View in context"] = "Vis i sammenheng"; -App::$strings["remove"] = "fjern"; -App::$strings["Delete Selected Items"] = "Slett valgte elementer"; -App::$strings["View Source"] = "Vis kilde"; -App::$strings["Follow Thread"] = "Følg tråd"; -App::$strings["Unfollow Thread"] = "Ikke følg tråd"; -App::$strings["Activity/Posts"] = "Aktivitet/Innlegg"; -App::$strings["Edit Connection"] = "Endre forbindelse"; +App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +App::$strings["Starts:"] = "Starter:"; +App::$strings["Finishes:"] = "Slutter:"; +App::$strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender."; +App::$strings["Not specified"] = "Ikke spesifisert"; +App::$strings["Needs Action"] = "Trenger handling"; +App::$strings["Completed"] = "Ferdig"; +App::$strings["In Process"] = "Igang"; +App::$strings["Cancelled"] = "Avbrutt"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes."; +App::$strings["Channel clone failed. Import failed."] = "Kanalkloning mislyktes. Import mislyktes."; +App::$strings["(Unknown)"] = "(Ukjent)"; +App::$strings["Visible to anybody on the internet."] = "Synlig for enhver på Internett."; +App::$strings["Visible to you only."] = "Synlig bare for deg."; +App::$strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket."; +App::$strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert."; +App::$strings["Visible to anybody on %s."] = "Synlig for alle på %s."; +App::$strings["Visible to all connections."] = "Synlig for alle forbindelser."; +App::$strings["Visible to approved connections."] = "Synlig for godkjente forbindelser."; +App::$strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser."; +App::$strings["Privacy group is empty."] = "Personverngruppen er tom."; +App::$strings["Privacy group: %s"] = "Personverngruppe: %s"; +App::$strings["Connection not found."] = "Forbindelsen ble ikke funnet."; +App::$strings["profile photo"] = "profilbilde"; +App::$strings["No recipient provided."] = "Ingen mottaker angitt."; +App::$strings["[no subject]"] = "[ikke noe emne]"; +App::$strings["Unable to determine sender."] = "Kan ikke avgjøre avsender."; +App::$strings["Stored post could not be verified."] = "Lagret innlegg kunne ikke bekreftes."; +App::$strings["prev"] = "forrige"; +App::$strings["first"] = "første"; +App::$strings["last"] = "siste"; +App::$strings["next"] = "neste"; +App::$strings["older"] = "eldre"; +App::$strings["newer"] = "nyere"; +App::$strings["No connections"] = "Ingen forbindelser"; +App::$strings["View all %s connections"] = "Vis alle %s forbindelser"; +App::$strings["poke"] = "prikk"; +App::$strings["poked"] = "prikket"; +App::$strings["ping"] = "varsle"; +App::$strings["pinged"] = "varslet"; +App::$strings["prod"] = "oppildne"; +App::$strings["prodded"] = "oppildnet"; +App::$strings["slap"] = "daske"; +App::$strings["slapped"] = "dasket"; +App::$strings["finger"] = "fingre"; +App::$strings["fingered"] = "fingret"; +App::$strings["rebuff"] = "tilbakevise"; +App::$strings["rebuffed"] = "tilbakeviste"; +App::$strings["happy"] = "glad"; +App::$strings["sad"] = "trist"; +App::$strings["mellow"] = "dempet"; +App::$strings["tired"] = "trøtt"; +App::$strings["perky"] = "oppkvikket"; +App::$strings["angry"] = "sint"; +App::$strings["stupefied"] = "lamslått"; +App::$strings["puzzled"] = "forundret"; +App::$strings["interested"] = "interessert"; +App::$strings["bitter"] = "bitter"; +App::$strings["cheerful"] = "munter"; +App::$strings["alive"] = "levende"; +App::$strings["annoyed"] = "irritert"; +App::$strings["anxious"] = "nervøs"; +App::$strings["cranky"] = "gretten"; +App::$strings["disturbed"] = "foruroliget"; +App::$strings["frustrated"] = "frustrert"; +App::$strings["depressed"] = "lei seg"; +App::$strings["motivated"] = "motivert"; +App::$strings["relaxed"] = "avslappet"; +App::$strings["surprised"] = "overrasket"; +App::$strings["Monday"] = "mandag"; +App::$strings["Tuesday"] = "tirsdag"; +App::$strings["Wednesday"] = "onsdag"; +App::$strings["Thursday"] = "torsdag"; +App::$strings["Friday"] = "fredag"; +App::$strings["Saturday"] = "lørdag"; +App::$strings["Sunday"] = "søndag"; +App::$strings["January"] = "januar"; +App::$strings["February"] = "februar"; +App::$strings["March"] = "mars"; +App::$strings["April"] = "april"; +App::$strings["May"] = "mai"; +App::$strings["June"] = "juni"; +App::$strings["July"] = "juli"; +App::$strings["August"] = "august"; +App::$strings["September"] = "september"; +App::$strings["October"] = "oktober"; +App::$strings["November"] = "november"; +App::$strings["December"] = "desember"; +App::$strings["Unknown Attachment"] = "Ukjent vedlegg"; +App::$strings["unknown"] = "ukjent"; +App::$strings["remove category"] = "fjern kategori"; +App::$strings["remove from file"] = "fjern fra fil"; +App::$strings["default"] = "standard"; +App::$strings["Page layout"] = "Sidens layout"; +App::$strings["You can create your own with the layouts tool"] = "Du kan lage din egen med layout-verktøyet"; +App::$strings["Page content type"] = "Sidens innholdstype"; +App::$strings["Select an alternate language"] = "Velg et annet språk"; +App::$strings["activity"] = "aktivitet"; +App::$strings["Design Tools"] = "Designverktøy"; +App::$strings["Pages"] = "Sider"; +App::$strings["System"] = "System"; +App::$strings["New App"] = ""; +App::$strings["Suggestions"] = "Forslag"; +App::$strings["See more..."] = "Se mer..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser."; +App::$strings["Add New Connection"] = "Legg til ny forbindelse"; +App::$strings["Enter channel address"] = "Skriv kanaladressen"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Eksempel: ola@eksempel.no, https://eksempel.no/kari"; +App::$strings["Notes"] = "Merknader"; +App::$strings["Remove term"] = "Fjern begrep"; +App::$strings["Saved Searches"] = "Lagrede søk"; +App::$strings["add"] = "legg til"; +App::$strings["Saved Folders"] = "Lagrede mapper"; +App::$strings["Everything"] = "Alt"; +App::$strings["Archives"] = "Arkiv"; +App::$strings["Refresh"] = "Forny"; +App::$strings["Account settings"] = "Kontoinnstillinger"; +App::$strings["Channel settings"] = "Kanalinnstillinger"; +App::$strings["Additional features"] = "Tilleggsfunksjoner"; +App::$strings["Feature/Addon settings"] = "Funksjons-/Tilleggsinnstillinger"; +App::$strings["Display settings"] = "Visningsinnstillinger"; +App::$strings["Manage locations"] = ""; +App::$strings["Export channel"] = "Eksporter kanal"; +App::$strings["Connected apps"] = "Tilkoblede app-er"; +App::$strings["Premium Channel Settings"] = "Premiumkanal-innstillinger"; +App::$strings["Private Mail Menu"] = "Meny for privat post"; +App::$strings["Combined View"] = "Kombinert visning"; +App::$strings["Inbox"] = "Innboks"; +App::$strings["Outbox"] = "Utboks"; +App::$strings["New Message"] = "Ny melding"; +App::$strings["Conversations"] = "Samtaler"; +App::$strings["Received Messages"] = "Mottatte meldinger"; +App::$strings["Sent Messages"] = "Sendte meldinger"; +App::$strings["No messages."] = "Ingen meldinger."; +App::$strings["Delete conversation"] = "Slett samtale"; +App::$strings["Events Menu"] = "Meny for hendelser"; +App::$strings["Day View"] = "Dag"; +App::$strings["Week View"] = "Uke"; +App::$strings["Month View"] = "Måned"; +App::$strings["Events Tools"] = "Kalenderverktøy"; +App::$strings["Export Calendar"] = "Eksporter kalender"; +App::$strings["Import Calendar"] = "Importer kalender"; +App::$strings["Chatrooms"] = "Chatrom"; +App::$strings["Overview"] = ""; +App::$strings["Chat Members"] = ""; +App::$strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom"; +App::$strings["Suggested Chatrooms"] = "Foreslåtte chatrom"; +App::$strings["photo/image"] = "foto/bilde"; +App::$strings["Click to show more"] = ""; +App::$strings["Rating Tools"] = "Vurderingsverktøy"; +App::$strings["Rate Me"] = "Vurder meg"; +App::$strings["View Ratings"] = "Vis vurderinger"; +App::$strings["Forums"] = "Forum"; +App::$strings["Tasks"] = "Oppgaver"; +App::$strings["Documentation"] = "Dokumentasjon"; +App::$strings["Project/Site Information"] = "Prosjekt-/Nettstedsinformasjon"; +App::$strings["For Members"] = "For medlemmer"; +App::$strings["For Administrators"] = "For administratorer"; +App::$strings["For Developers"] = "For utviklere"; +App::$strings["Member registrations waiting for confirmation"] = ""; +App::$strings["Inspect queue"] = "Inspiser kø"; +App::$strings["DB updates"] = "Databaseoppdateringer"; +App::$strings["Admin"] = "Administrator"; +App::$strings["Plugin Features"] = "Tilleggsfunksjoner"; +App::$strings["Channel is blocked on this site."] = "Kanalen er blokkert på dette nettstedet."; +App::$strings["Channel location missing."] = "Kanalplassering mangler."; +App::$strings["Response from remote channel was incomplete."] = "Svaret fra den andre kanalen var ikke komplett."; +App::$strings["Channel was deleted and no longer exists."] = "Kanalen er slettet og finnes ikke lenger."; +App::$strings["Protocol disabled."] = "Protokollen er avskrudd."; +App::$strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes."; +App::$strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv."; +App::$strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker"; +App::$strings["Public Timeline"] = "Offentlig tidslinje"; +App::$strings["Image/photo"] = "Bilde/fotografi"; +App::$strings["Encrypted content"] = "Kryptert innhold"; +App::$strings["Install %s element: "] = "Installer %s element:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klikk for å åpne/lukke"; +App::$strings["spoiler"] = ""; +App::$strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende"; +App::$strings["$1 wrote:"] = "$1 skrev:"; +App::$strings["Directory Options"] = "Kataloginnstillinger"; +App::$strings["Safe Mode"] = "Trygt modus"; +App::$strings["Public Forums Only"] = "Bare offentlige forum"; +App::$strings["This Website Only"] = "Kun dette nettstedet"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn."; +App::$strings["Logout"] = "Logg ut"; +App::$strings["End this session"] = "Avslutt denne økten"; +App::$strings["Home"] = "Hjem"; +App::$strings["Your posts and conversations"] = "Dine innlegg og samtaler"; +App::$strings["Your profile page"] = "Din profilside"; +App::$strings["Manage/Edit profiles"] = "Håndter/endre profiler"; +App::$strings["Edit Profile"] = "Endre profil"; +App::$strings["Edit your profile"] = "Endre din profil"; +App::$strings["Your photos"] = "Dine bilder"; +App::$strings["Your files"] = "Dine filer"; +App::$strings["Your chatrooms"] = "Dine chatterom"; +App::$strings["Bookmarks"] = "Bokmerker"; +App::$strings["Your bookmarks"] = "Dine bokmerker"; +App::$strings["Your webpages"] = "Dine websider"; +App::$strings["Sign in"] = "Logg på"; +App::$strings["%s - click to logout"] = "%s - klikk for å logge ut"; +App::$strings["Remote authentication"] = "Fjernautentisering"; +App::$strings["Click to authenticate to your home hub"] = "Klikk for å godkjennes mot din hjemme-hub"; +App::$strings["Home Page"] = "Hjemmeside"; +App::$strings["Create an account"] = "Lag en konto"; +App::$strings["Help and documentation"] = "Hjelp og dokumentasjon"; +App::$strings["Applications, utilities, links, games"] = "Programmer, verktøy, lenker, spill"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold"; +App::$strings["Channel Directory"] = "Kanalkatalog"; +App::$strings["Your grid"] = "Ditt nett"; +App::$strings["Mark all grid notifications seen"] = "Marker alle nettvarsler som sett"; +App::$strings["Channel home"] = "Kanalhjem"; +App::$strings["Mark all channel notifications seen"] = "Merk alle kanalvarsler som sett"; +App::$strings["Notices"] = "Varsel"; +App::$strings["Notifications"] = "Varsler"; +App::$strings["See all notifications"] = "Se alle varsler"; +App::$strings["Private mail"] = "Privat post"; +App::$strings["See all private messages"] = "Se alle private meldinger"; +App::$strings["Mark all private messages seen"] = "Merk alle private meldinger som sett"; +App::$strings["Event Calendar"] = "Kalender"; +App::$strings["See all events"] = "Se alle hendelser"; +App::$strings["Mark all events seen"] = "Merk alle hendelser som sett"; +App::$strings["Manage Your Channels"] = "Håndter dine kanaler"; +App::$strings["Account/Channel Settings"] = "Konto-/kanal-innstillinger"; +App::$strings["Site Setup and Configuration"] = "Nettstedsoppsett og -konfigurasjon"; +App::$strings["Loading..."] = "Laster..."; +App::$strings["@name, #tag, ?doc, content"] = "@navn, #merkelapp, ?dokumentasjon, innhold"; +App::$strings["Please wait..."] = "Vennligst vent..."; +App::$strings["New window"] = "Nytt vindu"; +App::$strings["Open the selected location in a different window or browser tab"] = "Åpne det valgte stedet i et annet vindu eller nettleser-fane"; +App::$strings["User '%s' deleted"] = "Brukeren '%s' er slettet"; +App::$strings["%d invitation available"] = array( + 0 => "%d invitasjon tilgjengelig", + 1 => "%d invitasjoner tilgjengelig", +); +App::$strings["Find Channels"] = "Finn kanaler"; +App::$strings["Enter name or interest"] = "Skriv navn eller interesse"; +App::$strings["Connect/Follow"] = "Forbindelse/Følg"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking"; +App::$strings["Random Profile"] = "Tilfeldig profil"; +App::$strings["Invite Friends"] = "Inviter venner"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island"; +App::$strings["%d connection in common"] = array( + 0 => "%d forbindelse felles", + 1 => "%d forbindelser felles", +); +App::$strings["show more"] = "vis mer"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s er nå forbundet med %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s prikket %2\$s"; +App::$strings["View %s's profile @ %s"] = "Vis %s sin profile @ %s"; +App::$strings["Categories:"] = "Kategorier:"; +App::$strings["Filed under:"] = "Sortert under:"; +App::$strings["View in context"] = "Vis i sammenheng"; +App::$strings["remove"] = "fjern"; +App::$strings["Delete Selected Items"] = "Slett valgte elementer"; +App::$strings["View Source"] = "Vis kilde"; +App::$strings["Follow Thread"] = "Følg tråd"; +App::$strings["Unfollow Thread"] = "Ikke følg tråd"; +App::$strings["Activity/Posts"] = "Aktivitet/Innlegg"; +App::$strings["Edit Connection"] = "Endre forbindelse"; App::$strings["Message"] = "Melding"; App::$strings["%s likes this."] = "%s liker dette."; App::$strings["%s doesn't like this."] = "%s liker ikke dette."; @@ -1760,6 +1820,7 @@ 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"; @@ -1775,8 +1836,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( @@ -1803,8 +1864,6 @@ 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"; @@ -1821,6 +1880,7 @@ 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"; @@ -1865,95 +1925,91 @@ 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["%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["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["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"; @@ -1965,7 +2021,6 @@ 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"; @@ -1974,10 +2029,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"] = "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["Access Controlled Chatrooms"] = ""; +App::$strings["Provide chatrooms and chat services with access control."] = ""; +App::$strings["Smart Birthdays"] = ""; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = ""; App::$strings["Expert Mode"] = "Ekspertmodus"; App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg"; App::$strings["Premium Channel"] = "Premiumkanal"; @@ -1999,7 +2054,6 @@ 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"; @@ -2015,9 +2069,8 @@ 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"] = "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["Emoji Reactions"] = ""; +App::$strings["Add emoji reaction ability to posts"] = ""; App::$strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper"; App::$strings["Dislike Posts"] = "Mislik innlegg"; App::$strings["Ability to dislike posts/comments"] = "Mulighet til å mislike innlegg/kommentarer"; @@ -2025,149 +2078,63 @@ App::$strings["Star Posts"] = "Stjerneinnlegg"; App::$strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerne"; App::$strings["Tag Cloud"] = "Merkelappsky"; App::$strings["Provide a personal tag cloud on your channel page"] = "Tilby en personlig merkelappsky på din kanalside"; +App::$strings["Embedded content"] = "Innebygget innhold"; +App::$strings["Embedding disabled"] = "Innbygging avskrudd"; +App::$strings["Who can see this?"] = ""; +App::$strings["Custom selection"] = ""; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = ""; +App::$strings["Show"] = "Vis"; +App::$strings["Don't show"] = "Ikke vis"; +App::$strings["Other networks and post services"] = "Andre nettverk og innleggstjenester"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = ""; +App::$strings["Logged out."] = "Logget ut."; +App::$strings["Failed authentication"] = "Mislykket autentisering"; +App::$strings["Birthday"] = ""; +App::$strings["Age: "] = "Alder:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD"; +App::$strings["never"] = "aldri"; +App::$strings["less than a second ago"] = "for mindre enn ett sekund siden"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s siden"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "år", + 1 => "år", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "måned", + 1 => "måneder", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "uke", + 1 => "uker", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "dag", + 1 => "dager", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "time", + 1 => "timer", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minutt", + 1 => "minutter", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "sekund", + 1 => "sekunder", +); +App::$strings["%1\$s's birthday"] = "%1\$s sin fødselsdag"; +App::$strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s !"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn."; App::$strings["Add new connections to this privacy group"] = "Legg nye forbindelser i denne personverngruppen"; App::$strings["edit"] = "endre"; App::$strings["Edit group"] = "Endre gruppe"; App::$strings["Add privacy group"] = "Legg til personverngruppe"; App::$strings["Channels not in any privacy group"] = "Kanaler uten personverngruppe"; -App::$strings["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 “%3\$s”"] = "%1\$s endret %2\$s til “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Besøk %1\$s sitt %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s."; -App::$strings["Attachments:"] = "Vedlegg:"; -App::$strings["\$Projectname event notification:"] = "\$Projectname hendelsesvarsling:"; App::$strings["Delete this item?"] = "Slett dette elementet?"; -App::$strings["%s show less"] = ""; -App::$strings["%s expand"] = ""; -App::$strings["%s collapse"] = ""; +App::$strings["[-] show less"] = "[-] Vis mindre"; +App::$strings["[+] expand"] = "[+] Utvid"; +App::$strings["[-] collapse"] = "[-] Lukk"; App::$strings["Password too short"] = "Passordet er for kort"; App::$strings["Passwords do not match"] = "Passordene er ikke like"; App::$strings["everybody"] = "alle"; @@ -2222,78 +2189,72 @@ 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["%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.
These permissions set who is allowed to view the post."] = "Innleggstillatelsene %s kan ikke endres %s etter at et innlegg er delt.
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["view full size"] = "vis full størrelse"; +App::$strings["No Subject"] = "Uten emne"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = ""; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes"; +App::$strings["Image file is empty."] = "Bildefilen er tom."; +App::$strings["Photo storage failed."] = "Bildelagring mislyktes."; +App::$strings["a new photo"] = "et nytt bilde"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s la inn %2\$s til %3\$s"; +App::$strings["Upload New Photos"] = "Last opp nye bilder"; App::$strings["Invalid data packet"] = "Ugyldig datapakke"; App::$strings["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 “%3\$s”"] = "%1\$s endret %2\$s til “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Besøk %1\$s sitt %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s."; +App::$strings["Attachments:"] = "Vedlegg:"; +App::$strings["\$Projectname event notification:"] = "\$Projectname hendelsesvarsling:"; App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla standardtema)"; App::$strings["Theme settings"] = "Temainnstillinger"; App::$strings["Select scheme"] = "Velg skjema"; @@ -2328,12 +2289,11 @@ 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)"] = "Søk %1\$s (%2\$s)"; -App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = ""; +App::$strings["__ctx:opensearch__ \$Projectname"] = ""; App::$strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggen."; App::$strings["Update Error at %s"] = "Oppdateringsfeil ved %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Lag en konto for å få tilgang til tjenester og programmer i Hubzilla"; -App::$strings["Login/Email"] = ""; App::$strings["Password"] = "Passord"; App::$strings["Remember me"] = "Husk meg"; App::$strings["Forgot your password?"] = "Glemt passordet ditt?"; diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po index 858724e05..9219a1c06 100644 --- a/view/nl/hmessages.po +++ b/view/nl/hmessages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-22 00:02-0700\n" -"PO-Revision-Date: 2016-07-26 00:17+0000\n" +"POT-Creation-Date: 2016-06-10 00:02-0700\n" +"PO-Revision-Date: 2016-06-10 13:57+0000\n" "Last-Translator: jeroenpraat \n" "Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,156 +18,11 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:904 -msgid "Social Networking" -msgstr "Sociaal netwerk" - -#: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:904 -msgid "Social - Mostly Public" -msgstr "Sociaal - Vrijwel alles openbaar" - -#: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:904 -msgid "Social - Restricted" -msgstr "Sociaal - Beperkt zichtbaar" - -#: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:904 -msgid "Social - Private" -msgstr "Sociaal - Verborgen kanaal" - -#: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:905 -msgid "Community Forum" -msgstr "Groepsforum" - -#: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:905 -msgid "Forum - Mostly Public" -msgstr "Forum - Vrijwel alles openbaar" - -#: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:905 -msgid "Forum - Restricted" -msgstr "Forum - Beperkt zichtbaar" - -#: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:905 -msgid "Forum - Private" -msgstr "Forum - Verborgen kanaal" - -#: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:906 -msgid "Feed Republish" -msgstr "Feed herpubliceren" - -#: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:906 -msgid "Feed - Mostly Public" -msgstr "Feed - Vrijwel alles openbaar" - -#: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:906 -msgid "Feed - Restricted" -msgstr "Feed - Beperkt zichtbaar" - -#: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:907 -msgid "Special Purpose" -msgstr "Speciaal doel" - -#: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:907 -msgid "Special - Celebrity/Soapbox" -msgstr "Speciaal - Beroemdheid/alleen volgen" - -#: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:907 -msgid "Special - Group Repository" -msgstr "Speciaal - Groepsopslag" - -#: ../../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 "Anders" - -#: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:908 -msgid "Custom/Expert Mode" -msgstr "Expertmodus/handmatig aanpassen" - -#: ../../Zotlabs/Access/Permissions.php:30 -msgid "Can view my channel stream and posts" -msgstr "Kan mijn kanaal en berichten bekijken" - -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" - -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan mijn standaard kanaalprofiel bekijken" - -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kan een lijst met mijn connecties bekijken" - -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kan mijn foto's en andere bestanden bekijken" - -#: ../../Zotlabs/Access/Permissions.php:35 -msgid "Can upload/modify my file storage and photos" -msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" - -#: ../../Zotlabs/Access/Permissions.php:36 -msgid "Can view my channel webpages" -msgstr "Kan de webpagina's van mijn kanaal bekijken" - -#: ../../Zotlabs/Access/Permissions.php:37 -msgid "Can create/edit my channel webpages" -msgstr "Kan wegpagina's van mijn kanaal aanmaken en bewerken" - -#: ../../Zotlabs/Access/Permissions.php:38 -msgid "Can post on my channel (wall) page" -msgstr "Kan een bericht in mijn kanaal plaatsen" - -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" - -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kan mij privéberichten sturen" - -#: ../../Zotlabs/Access/Permissions.php:41 -msgid "Can like/dislike profiles and profile things" -msgstr "Kan profielen en profieldingen leuk en niet leuk vinden " - -#: ../../Zotlabs/Access/Permissions.php:42 -msgid "Can forward to all my channel connections via @+ mentions in posts" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" - -#: ../../Zotlabs/Access/Permissions.php:43 -msgid "Can chat with me" -msgstr "Kan met mij chatten" - -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" - -#: ../../Zotlabs/Access/Permissions.php:45 -msgid "Can administer my channel" -msgstr "Kan mijn kanaal beheren" - #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "omhoog" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 msgid "Collection" msgstr "map" @@ -191,17 +46,16 @@ msgstr "Planning-postvak IN" msgid "Schedule Outbox" msgstr "Planning-postvak UIT" -#: ../../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 "Onbekend" #: ../../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 "Bestanden" @@ -214,23 +68,22 @@ msgid "Shared" msgstr "Gedeeld" #: ../../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 "Aanmaken" #: ../../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 "Uploaden" #: ../../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 "Naam" @@ -240,7 +93,7 @@ msgid "Type" msgstr "Type" #: ../../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 "Grootte" @@ -249,32 +102,34 @@ msgstr "Grootte" msgid "Last Modified" msgstr "Laatst gewijzigd" -#: ../../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 "Bewerken" -#: ../../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 "Verwijderen" @@ -300,73 +155,74 @@ msgstr "Nieuwe map aanmaken" msgid "Upload file" msgstr "Bestand uploaden" -#: ../../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 "Toegang geweigerd" -#: ../../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 "Toegang geweigerd." @@ -374,9 +230,9 @@ msgstr "Toegang geweigerd." msgid "Not Found" msgstr "Niet gevonden" -#: ../../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 niet gevonden." @@ -392,13 +248,13 @@ msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelog msgid "Welcome %s. Remote authentication successful." msgstr "Welkom %s. Authenticatie op afstand geslaagd." -#: ../../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 "Opgevraagd profiel is niet beschikbaar" @@ -406,366 +262,615 @@ msgstr "Opgevraagd profiel is niet beschikbaar" msgid "Some blurb about what to do when you're new here" msgstr "Welkom op $Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van $Projectname kunt vinden. Voor hulp met $Projectname klik je op het vraagteken." -#: ../../Zotlabs/Module/Chatsvc.php:117 -msgid "Away" -msgstr "Afwezig" - -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" -msgstr "Online" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Bloknaam" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de connectie-gegevens." +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Blokken" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Kon het gekozen profiel niet vinden." +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Bloktitel" -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "Connection updated." -msgstr "Connectie bijgewerkt." +#: ../../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 "Aangemaakt" -#: ../../Zotlabs/Module/Connedit.php:250 -msgid "Failed to update connection record." -msgstr "Bijwerken van connectie-gegevens mislukt." +#: ../../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 "Bewerkt" -#: ../../Zotlabs/Module/Connedit.php:300 -msgid "is now connected to" -msgstr "is nu verbonden met" +#: ../../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 "Delen" -#: ../../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:1708 -msgid "No" -msgstr "Nee" +#: ../../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 "Weergeven" -#: ../../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:1708 -msgid "Yes" -msgstr "Ja" +#: ../../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 "Kanaal niet gevonden." -#: ../../Zotlabs/Module/Connedit.php:435 -msgid "Could not access address book record." -msgstr "Kon geen toegang krijgen tot de record van de connectie." +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permissies niet toegestaan" -#: ../../Zotlabs/Module/Connedit.php:455 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l j F" -#: ../../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 "Niet in staat om de parameters van connecties in te stellen." +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Originele locatie" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Connection has been removed." -msgstr "Connectie is verwijderd" +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Gebeurtenis bewerken" -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 -msgid "View Profile" -msgstr "Profiel weergeven" +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Gebeurtenis aanmaken" -#: ../../Zotlabs/Module/Connedit.php:552 -#, php-format -msgid "View %s's profile" -msgstr "Profiel van %s weergeven" +#: ../../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 "Vorige" -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Refresh Permissions" -msgstr "Permissies vernieuwen" +#: ../../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 "Volgende" -#: ../../Zotlabs/Module/Connedit.php:559 -msgid "Fetch updated permissions" -msgstr "Aangepaste permissies ophalen" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Exporteren" -#: ../../Zotlabs/Module/Connedit.php:563 -msgid "Recent Activity" -msgstr "Recente activiteit/berichten" +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importeren" -#: ../../Zotlabs/Module/Connedit.php:566 -msgid "View recent posts and comments" -msgstr "Recente berichten en reacties weergeven" +#: ../../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 "Opslaan" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Deblokkeren" +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Vandaag" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Blokkeren" +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." -#: ../../Zotlabs/Module/Connedit.php:573 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "Berichten en reacties" -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "This connection is blocked!" -msgstr "Deze connectie is geblokkeerd!" +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "Alleen berichten" -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Unignore" -msgstr "Niet meer negeren" +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." -#: ../../Zotlabs/Module/Connedit.php:578 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Negeren" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" -#: ../../Zotlabs/Module/Connedit.php:581 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "This connection is ignored!" -msgstr "Deze connectie wordt genegeerd!" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Chatkanaal verwijderen" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Unarchive" -msgstr "Niet meer archiveren" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Archive" -msgstr "Archiveren" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Ik ben online" -#: ../../Zotlabs/Module/Connedit.php:589 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" -#: ../../Zotlabs/Module/Connedit.php:590 -msgid "This connection is archived!" -msgstr "Deze connectie is gearchiveerd!" +#: ../../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 "Vul een URL in:" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Unhide" -msgstr "Niet meer verbergen" +#: ../../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 "Tekst versleutelen" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Hide" -msgstr "Verbergen" +#: ../../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 "Weblink invoegen" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Functie uitgeschakeld." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nieuw chatkanaal" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Naam chatkanaal" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Aantal minuten voordat chatberichten worden verwijderd" + +#: ../../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 "Permissies" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "Geen chatkanalen beschikbaar" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" +msgstr "Nieuwe aanmaken" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Verloopt na" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Chatsvc.php:117 +msgid "Away" +msgstr "Afwezig" + +#: ../../Zotlabs/Module/Chatsvc.php:122 +msgid "Online" +msgstr "Online" + +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Ongeldig item." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Ga verder" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." + +#: ../../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 "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" + +#: ../../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 "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" + +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de connectie-gegevens." + +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Kon het gekozen profiel niet vinden." + +#: ../../Zotlabs/Module/Connedit.php:227 +msgid "Connection updated." +msgstr "Connectie bijgewerkt." + +#: ../../Zotlabs/Module/Connedit.php:229 +msgid "Failed to update connection record." +msgstr "Bijwerken van connectie-gegevens mislukt." + +#: ../../Zotlabs/Module/Connedit.php:276 +msgid "is now connected to" +msgstr "is nu verbonden met" + +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "No" +msgstr "Nee" + +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "Yes" +msgstr "Ja" + +#: ../../Zotlabs/Module/Connedit.php:411 +msgid "Could not access address book record." +msgstr "Kon geen toegang krijgen tot de record van de connectie." + +#: ../../Zotlabs/Module/Connedit.php:425 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" + +#: ../../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 "Niet in staat om de parameters van connecties in te stellen." + +#: ../../Zotlabs/Module/Connedit.php:503 +msgid "Connection has been removed." +msgstr "Connectie is verwijderd" + +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 +msgid "View Profile" +msgstr "Profiel weergeven" + +#: ../../Zotlabs/Module/Connedit.php:522 +#, php-format +msgid "View %s's profile" +msgstr "Profiel van %s weergeven" + +#: ../../Zotlabs/Module/Connedit.php:526 +msgid "Refresh Permissions" +msgstr "Permissies vernieuwen" + +#: ../../Zotlabs/Module/Connedit.php:529 +msgid "Fetch updated permissions" +msgstr "Aangepaste permissies ophalen" + +#: ../../Zotlabs/Module/Connedit.php:533 +msgid "Recent Activity" +msgstr "Recente activiteit/berichten" + +#: ../../Zotlabs/Module/Connedit.php:536 +msgid "View recent posts and comments" +msgstr "Recente berichten en reacties weergeven" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +msgid "Unblock" +msgstr "Deblokkeren" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +msgid "Block" +msgstr "Blokkeren" + +#: ../../Zotlabs/Module/Connedit.php:543 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" + +#: ../../Zotlabs/Module/Connedit.php:544 +msgid "This connection is blocked!" +msgstr "Deze connectie is geblokkeerd!" + +#: ../../Zotlabs/Module/Connedit.php:548 +msgid "Unignore" +msgstr "Niet meer negeren" + +#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" +msgstr "Negeren" + +#: ../../Zotlabs/Module/Connedit.php:551 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" + +#: ../../Zotlabs/Module/Connedit.php:552 +msgid "This connection is ignored!" +msgstr "Deze connectie wordt genegeerd!" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Unarchive" +msgstr "Niet meer archiveren" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Archive" +msgstr "Archiveren" + +#: ../../Zotlabs/Module/Connedit.php:559 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" + +#: ../../Zotlabs/Module/Connedit.php:560 +msgid "This connection is archived!" +msgstr "Deze connectie is gearchiveerd!" + +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Unhide" +msgstr "Niet meer verbergen" + +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Hide" +msgstr "Verbergen" + +#: ../../Zotlabs/Module/Connedit.php:567 msgid "Hide or Unhide this connection from your other connections" msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "This connection is hidden!" msgstr "Deze connectie is verborgen!" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Delete this connection" msgstr "Deze connectie verwijderen" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 msgid "Me" msgstr "Ik" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 msgid "Family" msgstr "Familie" -#: ../../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 "Vrienden" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Kennissen" -#: ../../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 "Alles" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Approve this connection" msgstr "Deze connectie accepteren" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Accept connection to allow communication" msgstr "Keur deze connectie goed om communicatie toe te staan" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:659 msgid "Set Affinity" msgstr "Verwantschapsfilter instellen" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:662 msgid "Set Profile" msgstr "Profiel instellen" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity & Profile" msgstr "Verwantschapsfilter en profiel instellen" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:698 msgid "none" msgstr "geen" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 msgid "Connection Default Permissions" msgstr "Standaard permissies voor connecties" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 #, php-format msgid "Connection: %s" msgstr "Connectie: %s" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Apply these permissions automatically" msgstr "Deze permissies automatisch toepassen" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Connection requests will be approved without your interaction" msgstr "Connectieverzoeken zullen automatisch worden geaccepteerd" -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:705 msgid "This connection's primary address is" msgstr "Het primaire kanaaladres van deze connectie is" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Available locations:" msgstr "Beschikbare locaties:" -#: ../../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 "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "Connection Tools" msgstr "Hulpmiddelen" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "Slide to adjust your degree of friendship" msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" -#: ../../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 "Beoordeling" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:715 msgid "Slide to adjust your rating" msgstr "Gebruik de schuif om je beoordeling te geven" -#: ../../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 "Verklaar jouw beoordeling (niet verplicht)" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Custom Filter" msgstr "Berichtenfilter" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Only import posts with this text" msgstr "Importeer alleen berichten met deze tekst" -#: ../../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 "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren" -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:720 msgid "Do not import posts with this text" msgstr "Importeer geen berichten met deze tekst" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "This information is public!" msgstr "Deze informatie is openbaar!" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:727 msgid "Connection Pending Approval" msgstr "Connectie moet nog geaccepteerd worden" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "inherited" msgstr "geërfd" -#: ../../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 "Opslaan" - -#: ../../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 "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:734 msgid "Their Settings" msgstr "Hun instellingen" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:735 msgid "My Settings" msgstr "Mijn instellingen" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Individual Permissions" msgstr "Individuele permissies" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -773,7 +878,7 @@ msgid "" " settings here." msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen." -#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:739 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -781,146 +886,42 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. " -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Last update:" msgstr "Laatste wijziging:" -#: ../../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 "Openbare toegang geweigerd." -#: ../../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 "Item niet gevonden." +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d beoordeling" +msgstr[1] "%d beoordelingen" -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Voornaam" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Geslacht:" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Achternaam" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Status: " -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Bijnaam" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Homepage: " -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Volledige naam" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 +msgid "Age:" +msgstr "Leeftijd:" -#: ../../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-mail" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Profielfoto" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profielfoto 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profielfoto 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profielfoto 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profielfoto 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profielfoto 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profielfoto 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Tijdzone" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "URL homepagina" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Taal" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Geboortejaar" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Geboortemaand" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Geboortedag" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Geboortedatum" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Geslacht" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Man" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Vrouw" - -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanaal toegevoegd." - -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d beoordeling" -msgstr[1] "%d beoordelingen" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Geslacht:" - -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Status: " - -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Homepage: " - -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 -msgid "Age:" -msgstr "Leeftijd:" - -#: ../../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 "Plaats:" @@ -929,18 +930,18 @@ msgstr "Plaats:" msgid "Description:" msgstr "Omschrijving:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 msgid "Hometown:" msgstr "Oorspronkelijk uit:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 msgid "About:" msgstr "Over:" #: ../../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 "Verbinden" @@ -1016,402 +1017,118 @@ msgstr "Oud naar nieuw" msgid "No entries (some entries may be hidden)." msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Ga verder" - -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " +#: ../../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 "Item niet gevonden." -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" +#: ../../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 "Item niet gevonden" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Titel (optioneel)" -#: ../../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 "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Blok bewerken" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Geen kanaal." -#: ../../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 "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Veel voorkomende connecties" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Geblokkeerd" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Agenda-items geïmporteerd." +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Genegeerd" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Geen agenda-items gevonden." +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Verborgen" -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Gearchiveerd" -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Niet in staat om voorvertoning te genereren" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1535 +msgid "New" +msgstr "Nieuw" -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nieuwe connecties" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Nog te accepteren (nieuwe) connecties weergeven" -#: ../../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 "gebeurtenis" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Alle connecties" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Titel bewerken" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Toon alle connecties" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Titel" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Toon alleen geblokkeerde connecties" -#: ../../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 "Vereist" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Toon alleen genegeerde connecties" -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (door komma's gescheiden lijst)" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Toon alleen gearchiveerde connecties" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Categorie" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Toon alleen verborgen connecties" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Categorie" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Moet nog geaccepteerd worden" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Begindatum en -tijd bewerken" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Begindatum en -tijd" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Connectie bewerken" -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "Einddatum en -tijd zijn niet bekend of niet van toepassing" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Einddatum en -tijd bewerken" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Einddatum en -tijd" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" - -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Omschrijving bewerken" - -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Omschrijving" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Locatie bewerken" - -#: ../../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 "Locatie" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: ../../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 "Voorvertoning" - -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Permissies" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Geavanceerde opties" - -#: ../../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 "Gebeurtenis bewerken" - -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Gebeurtenis verwijderen" - -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Originele locatie" - -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "agenda" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Gebeurtenis bewerken" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Gebeurtenis aanmaken" - -#: ../../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 "Vorige" - -#: ../../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 "Volgende" - -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Exporteren" - -#: ../../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 "Weergeven" - -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "Maand" - -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "Week" - -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "Dag" - -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Vandaag" - -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "Gebeurtenis verwijderd" - -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "Verwijderen gebeurtenis mislukt" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" - -#: ../../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 -msgid "Item not found" -msgstr "Item niet gevonden" - -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" - -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Bericht bewerken" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Foto's" - -#: ../../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 "Annuleren" - -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Ongeldig item." - -#: ../../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 "Kanaal niet gevonden." - -#: ../../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 "Bewaar in map: " - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- kies map -" - -#: ../../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 "Opslaan" - -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Geblokkeerd" - -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Genegeerd" - -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Verborgen" - -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Gearchiveerd" - -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 -msgid "New" -msgstr "Nieuw" - -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nieuwe connecties" - -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Nog te accepteren (nieuwe) connecties weergeven" - -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Alle connecties" - -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Toon alle connecties" - -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Toon alleen geblokkeerde connecties" - -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Toon alleen genegeerde connecties" - -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Toon alleen gearchiveerde connecties" - -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Toon alleen verborgen connecties" - -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "Moet nog geaccepteerd worden" - -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Connectie bewerken" - -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Connectie verwijderen" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Connectie verwijderen" #: ../../Zotlabs/Module/Connections.php:265 msgid "Channel address" @@ -1446,15 +1163,15 @@ msgstr "Connectie negeren" msgid "Recent activity" msgstr "Recente activiteit" -#: ../../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 "Connecties" #: ../../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 "Zoeken" @@ -1467,7 +1184,7 @@ msgid "Connections search" msgstr "Connecties zoeken" #: ../../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 "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " @@ -1477,66 +1194,66 @@ msgid "Cover Photos" msgstr "Omslagfoto's" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 +#: ../../Zotlabs/Module/Profile_photo.php:133 msgid "Image resize failed." msgstr "Afbeelding kon niet van grootte veranderd worden." #: ../../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 "Afbeelding kan niet verwerkt worden" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 +#: ../../Zotlabs/Module/Profile_photo.php:217 msgid "Image upload failed." msgstr "Uploaden afbeelding mislukt" #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 +#: ../../Zotlabs/Module/Profile_photo.php:236 msgid "Unable to process image." msgstr "Niet in staat om afbeelding te verwerken." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 msgid "female" msgstr "vrouw" -#: ../../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 "%1$s heeft haar %2$s bijgewerkt" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 msgid "male" msgstr "man" -#: ../../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 "%1$s heeft zijn %2$s bijgewerkt" -#: ../../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 "De %2$s van %1$s is bijgewerkt" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 msgid "cover photo" msgstr "omslagfoto" #: ../../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 niet beschikbaar." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:365 msgid "Upload File:" msgstr "Bestand uploaden:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:366 msgid "Select a profile:" msgstr "Kies een profiel:" @@ -1545,256 +1262,315 @@ msgid "Upload Cover Photo" msgstr "Omslagfoto uploaden" #: ../../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 "of" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Profile_photo.php:374 msgid "skip this step" msgstr "sla deze stap over" #: ../../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 "Kies een foto uit jouw fotoalbums" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 +#: ../../Zotlabs/Module/Profile_photo.php:390 msgid "Crop Image" msgstr "Afbeelding bijsnijden" #: ../../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 "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:393 msgid "Done Editing" msgstr "Klaar met bewerken" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "Webpagina" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Item is niet te bewerken" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "blok" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" +msgstr "Bericht bewerken" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "lay-out" +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "Agenda-items geïmporteerd." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "Geen agenda-items gevonden." -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "%s onderdeel geïnstalleerd" +#: ../../Zotlabs/Module/Events.php:105 +msgid "Event can not end before it has started." +msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" -#: ../../Zotlabs/Module/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "Installatie %s-element mislukt" +#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 +#: ../../Zotlabs/Module/Events.php:136 +msgid "Unable to generate preview." +msgstr "Niet in staat om voorvertoning te genereren" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permissies niet toegestaan" +#: ../../Zotlabs/Module/Events.php:114 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van gebeurtenis zijn vereist." -#: ../../Zotlabs/Module/Cal.php:337 -msgid "Import" -msgstr "Importeren" +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "Gebeurtenis niet gevonden" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Deze hub is geen kanalengidshub (directoryserver)" +#: ../../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 "gebeurtenis" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Titel bewerken" -#: ../../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 "Je moet zijn ingelogd om deze pagina te kunnen bekijken." +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Titel" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" +#: ../../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 "Vereist" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (door komma's gescheiden lijst)" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Chatkanaal verwijderen" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Categorie" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Categorie" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Ik ben online" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Begindatum en -tijd bewerken" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Begindatum en -tijd" -#: ../../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 "Vul een URL in:" +#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 +msgid "Finish date and time are not known or not relevant" +msgstr "Einddatum en -tijd zijn niet bekend of niet van toepassing" -#: ../../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 "Tekst versleutelen" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit finish date and time" +msgstr "Einddatum en -tijd bewerken" -#: ../../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 "Weblink invoegen" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Einddatum en -tijd" -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Functie uitgeschakeld." +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nieuw chatkanaal" +#: ../../Zotlabs/Module/Events.php:460 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Naam chatkanaal" +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" +msgstr "Omschrijving bewerken" -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Aantal minuten voordat chatberichten worden verwijderd" +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Omschrijving" -#: ../../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" +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Locatie bewerken" + +#: ../../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 "Locatie" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: ../../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 "Voorvertoning" + +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" msgstr "Permissies" -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Chatkanalen van %1$s" +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" +msgstr "Geavanceerde opties" -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "Geen chatkanalen beschikbaar" +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Nieuwe aanmaken" +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "Gebeurtenis verwijderen" -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Verloopt na" +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "agenda" -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" +msgstr "Gebeurtenis verwijderd" + +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" +msgstr "Verwijderen gebeurtenis mislukt" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/nav.php:92 ../../include/conversation.php:1632 +msgid "Photos" +msgstr "Foto's" + +#: ../../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 "Annuleren" + +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "Deze hub is geen kanalengidshub (directoryserver)" + +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Bewaar in map: " -#: ../../Zotlabs/Module/Dreport.php:44 +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- kies map -" + +#: ../../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 "Opslaan" + +#: ../../Zotlabs/Module/Dreport.php:27 msgid "Invalid message" msgstr "Ongeldig bericht" -#: ../../Zotlabs/Module/Dreport.php:76 +#: ../../Zotlabs/Module/Dreport.php:59 msgid "no results" msgstr "geen resultaten" -#: ../../Zotlabs/Module/Dreport.php:91 +#: ../../Zotlabs/Module/Dreport.php:64 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Afleveringsrapport voor %1$s" + +#: ../../Zotlabs/Module/Dreport.php:78 msgid "channel sync processed" msgstr "kanaalsync verwerkt" -#: ../../Zotlabs/Module/Dreport.php:95 +#: ../../Zotlabs/Module/Dreport.php:82 msgid "queued" msgstr "in wachtrij" -#: ../../Zotlabs/Module/Dreport.php:99 +#: ../../Zotlabs/Module/Dreport.php:86 msgid "posted" msgstr "verstuurd" -#: ../../Zotlabs/Module/Dreport.php:103 +#: ../../Zotlabs/Module/Dreport.php:90 msgid "accepted for delivery" msgstr "geaccepteerd om afgeleverd te worden" -#: ../../Zotlabs/Module/Dreport.php:107 +#: ../../Zotlabs/Module/Dreport.php:94 msgid "updated" msgstr "geüpdatet" -#: ../../Zotlabs/Module/Dreport.php:110 +#: ../../Zotlabs/Module/Dreport.php:97 msgid "update ignored" msgstr "update genegeerd" -#: ../../Zotlabs/Module/Dreport.php:113 +#: ../../Zotlabs/Module/Dreport.php:100 msgid "permission denied" msgstr "toegang geweigerd" -#: ../../Zotlabs/Module/Dreport.php:117 +#: ../../Zotlabs/Module/Dreport.php:104 msgid "recipient not found" msgstr "ontvanger niet gevonden" -#: ../../Zotlabs/Module/Dreport.php:120 +#: ../../Zotlabs/Module/Dreport.php:107 msgid "mail recalled" msgstr "Privébericht ingetrokken" -#: ../../Zotlabs/Module/Dreport.php:123 +#: ../../Zotlabs/Module/Dreport.php:110 msgid "duplicate mail received" msgstr "dubbel privébericht ontvangen" -#: ../../Zotlabs/Module/Dreport.php:126 +#: ../../Zotlabs/Module/Dreport.php:113 msgid "mail delivered" msgstr "privébericht afgeleverd" -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Afleveringsrapport voor %1$s" - -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Opties" - -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Opnieuw afleveren" - -#: ../../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 "Naam lay-out" -#: ../../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 "Lay-out-omschrijving (optioneel)" -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editlayout.php:135 msgid "Edit Layout" msgstr "Lay-out bewerken" -#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:143 msgid "Page link" msgstr "Paginalink" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 msgid "Edit Webpage" msgstr "Webpagina bewerken" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Kanaal toegevoegd." + +#: ../../Zotlabs/Module/Acl.php:227 +msgid "network" +msgstr "netwerk" + +#: ../../Zotlabs/Module/Acl.php:237 +msgid "RSS" +msgstr "RSS" + #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Privacygroep aangemaakt" @@ -1804,7 +1580,7 @@ msgid "Could not create privacy group." msgstr "Kon privacygroep niet aanmaken" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 +#: ../../include/items.php:3893 msgid "Privacy group not found." msgstr "Privacygroep niet gevonden" @@ -1848,5558 +1624,5143 @@ msgstr "Alle kanaalconnecties" msgid "Click on a channel to add or remove." msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App geïnstalleerd" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Deel webpagina's vanuit Firefox met " -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Misvormde app." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activeer de $Projectname-service in Firefox" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Insluitcode" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Geef toestemming voor applicatiekoppeling" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "App bewerken" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "App maken" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Inloggen om verder te kunnen gaan." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Naam van 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 "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Locatie (URL) van app" +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Zoek documentatie" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL van pictogram" +#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 +#: ../../Zotlabs/Module/Help.php:79 +msgid "Help:" +msgstr "Hulp:" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels (optioneel)" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versie-ID" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prijs van de app" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Locatie (URL) om de app aan te schaffen" - -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Zoek documentatie" - -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Hulp:" - -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:161 -msgid "Help" -msgstr "Hulp" +#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 +#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 +#: ../../include/nav.php:159 +msgid "Help" +msgstr "Hulp" #: ../../Zotlabs/Module/Help.php:120 msgid "$Projectname Documentation" msgstr "$Projectname-documentatie" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Item is niet aanwezig." - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Lay-out bijgewerkt." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Systeempagina's bewerken" - -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Lay-out niet gevonden." - -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulenaam:" - -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Lay-out-hulp" - -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Deel webpagina's vanuit Firefox met " - -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Activeer de $Projectname-service in Firefox" - -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "netwerk" - -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" - -#: ../../Zotlabs/Module/Filestorage.php:87 +#: ../../Zotlabs/Module/Filestorage.php:88 msgid "Permission Denied." msgstr "Toegang geweigerd" -#: ../../Zotlabs/Module/Filestorage.php:103 +#: ../../Zotlabs/Module/Filestorage.php:104 msgid "File not found." msgstr "Bestand niet gevonden." -#: ../../Zotlabs/Module/Filestorage.php:146 +#: ../../Zotlabs/Module/Filestorage.php:147 msgid "Edit file permissions" msgstr "Bestandsrechten bewerken" -#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:156 msgid "Set/edit permissions" msgstr "Rechten instellen/bewerken" -#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:157 msgid "Include all files and sub folders" msgstr "Toepassen op alle bestanden en submappen" -#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:158 msgid "Return to file list" msgstr "Terugkeren naar bestandlijst " -#: ../../Zotlabs/Module/Filestorage.php:159 +#: ../../Zotlabs/Module/Filestorage.php:160 msgid "Copy/paste this code to attach file to a post" msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" -#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:161 msgid "Copy/paste this URL to link file from a web page" msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" -#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Filestorage.php:163 msgid "Share this file" msgstr "Dit bestand delen" -#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Module/Filestorage.php:164 msgid "Show URL to this file" msgstr "Toon URL van dit bestand" -#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Filestorage.php:165 msgid "Notify your contacts about this file" msgstr "Jouw connecties over dit bestand berichten" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 -msgid "Layouts" -msgstr "Lay-outs" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Apps" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Hulp met de paginabeschrijvingstaal Comanche" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Item is niet aanwezig." -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Lay-out-omschrijving" +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Jouw abonnement staat maar %d kanalen toe." -#: ../../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 "Aangemaakt" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Niets gevonden om te importeren" -#: ../../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 "Bewerkt" +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Niet in staat om gegevens van de oude hub te downloaden" -#: ../../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 "Delen" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Geïmporteerde bestand is leeg" -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Download PDL-bestand" +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Waarschuwing: database-versies lopen %1$d updates achter." -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Leuk/niet leuk" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." +msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Deze actie kan alleen door $Projectname-leden worden uitgevoerd." +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Geen kanaal. Importeren mislukt." -#: ../../Zotlabs/Module/Like.php:25 +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import voltooid." + +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." +msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." + +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Kanaal importeren" + +#: ../../Zotlabs/Module/Import.php:538 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Je dient in te loggen met je $Projectname-account of een nieuw $Projectname-account aan te maken om verder te kunnen gaan." +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Ongeldig verzoek" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Bestand om te uploaden" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "kanaal" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "Of vul de gegevens van de oude hub in" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "ding" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Jouw oude kanaaladres (xyz@example.com)" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Kanaal niet beschikbaar." +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Het e-mailadres van je oude account" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Vorige actie omgedraaid" +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "Wachtwoord van jouw oude account" -#: ../../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/Import.php:544 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 -msgid "status" -msgstr "bericht" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Stel deze hub als mijn primaire locatie in" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s leuk" +#: ../../Zotlabs/Module/Import.php:546 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" -#: ../../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 vindt %3$s van %2$s niet leuk" +#: ../../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 "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s is het eens met %2$s's %3$s" +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "Niet in staat om de originele locatie van het bericht te vinden. " -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s is het niet eens met %2$s's %3$s" +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" +#: ../../Zotlabs/Module/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s is aanwezig op %2$s's %3$s" +#: ../../Zotlabs/Module/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "Dubbel bericht tegengehouden." + +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Systeemfout. Bericht niet opgeslagen." -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." + +#: ../../Zotlabs/Module/Item.php:1248 #, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s is niet aanwezig op %2$s's %3$s" +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." -#: ../../Zotlabs/Module/Like.php:433 +#: ../../Zotlabs/Module/Item.php:1255 #, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." -#: ../../Zotlabs/Module/Like.php:536 -msgid "Action completed." -msgstr "Actie voltooid" +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 +msgid "Layouts" +msgstr "Lay-outs" -#: ../../Zotlabs/Module/Like.php:537 -msgid "Thank you." -msgstr "Bedankt" +#: ../../Zotlabs/Module/Layouts.php:183 +msgid "Comanche page description language help" +msgstr "Hulp met de paginabeschrijvingstaal Comanche" -#: ../../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 "Profiel niet gevonden." +#: ../../Zotlabs/Module/Layouts.php:187 +msgid "Layout Description" +msgstr "Lay-out-omschrijving" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profiel verwijderd." +#: ../../Zotlabs/Module/Layouts.php:192 +msgid "Download PDL file" +msgstr "Download PDL-bestand" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profiel-" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen" +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Voornaam" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Geen profiel beschikbaar om te exporteren" +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Achternaam" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist" +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Bijnaam" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Huwelijke status" +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Volledige naam" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Romantische partner" +#: ../../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-mail" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Houdt van" +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 +msgid "Profile Photo" +msgstr "Profielfoto" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Houdt niet van" +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Profielfoto 16px" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Werk/arbeid" +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Profielfoto 32px" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religie" +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Profielfoto 48px" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Politieke overtuigingen" +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Profielfoto 64px" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Seksuele voorkeur" +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Profielfoto 80px" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Homepage" +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Profielfoto 128px" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interesses" +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Tijdzone" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Kanaaladres" +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "URL homepagina" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profiel bijgewerkt" +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 +msgid "Language" +msgstr "Taal" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Geboortejaar" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Profiel bewerken" +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Geboortemaand" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Profiel weergeven" +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Geboortedag" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 -msgid "Edit visibility" -msgstr "Zichtbaarheid bewerken" +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Geboortedatum" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Hulpmiddelen" +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Geslacht" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Omslagfoto wijzigen" +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Man" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 -msgid "Change profile photo" -msgstr "Profielfoto veranderen" +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Vrouw" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Een nieuw profiel aanmaken met dit profiel als basis" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "Webpagina" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Dit profiel klonen" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "blok" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "lay-out" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Dingen aan je profiel toevoegen" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Persoonlijk" +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s onderdeel geïnstalleerd" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relatie" +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Installatie %s-element mislukt" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Diversen" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Leuk/niet leuk" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Profiel vanuit bestand importeren" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Deze actie kan alleen door $Projectname-leden worden uitgevoerd." -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Profiel naar bestand exporteren" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Je dient in te loggen met je $Projectname-account of een nieuw $Projectname-account aan te maken om verder te kunnen gaan." -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Jouw geslacht" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Ongeldig verzoek" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Burgerlijke staat" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "kanaal" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Seksuele voorkeur" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "ding" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Profielnaam" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Kanaal niet beschikbaar." -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Dit is jouw standaardprofiel" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Vorige actie omgedraaid" -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Jouw volledige naam" +#: ../../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/Profiles.php:714 -msgid "Title/Description" -msgstr "Titel/omschrijving" +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 +msgid "status" +msgstr "bericht" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Straat en huisnummer" +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s leuk" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Woonplaats" +#: ../../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 vindt %3$s van %2$s niet leuk" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Provincie/gewest/deelstaat" +#: ../../Zotlabs/Module/Like.php:424 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s is het eens met %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "Postcode" +#: ../../Zotlabs/Module/Like.php:426 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s is het niet eens met %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "Land" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Wie (wanneer van toepassing)" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl" +#: ../../Zotlabs/Module/Like.php:428 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "Sinds (datum)" +#: ../../Zotlabs/Module/Like.php:430 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s is aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Vertel ons iets over jezelf" +#: ../../Zotlabs/Module/Like.php:432 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s is niet aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Oorspronkelijk uit" +#: ../../Zotlabs/Module/Like.php:434 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Politieke overtuigingen" +#: ../../Zotlabs/Module/Like.php:537 +msgid "Action completed." +msgstr "Actie voltooid" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Religieuze overtuigingen" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Thank you." +msgstr "Bedankt" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Trefwoorden voor in de kanalengids" +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Importeren voltooid" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: muziek, fotografie, software" +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importeer items" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Muzikale interesses" +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Boeken/literatuur" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Limiet voor aantal uitnodigingen overschreden." -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisie" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Geen geldig e-mailadres." -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film/dans/cultuur/entertainment" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Uitnodiging voor $Projectname" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobby's/interesses" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Liefde/romantiek" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Aflevering bericht mislukt." -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "School/opleiding" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Contactinformatie en sociale netwerken" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Je hebt geen uitnodigingen meer beschikbaar" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Mijn andere kanalen" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Uitnodigingen verzenden" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 -msgid "Profile Image" -msgstr "Profielfoto" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Voer e-mailadressen in, één per regel:" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 -msgid "Edit Profiles" -msgstr "Bewerk profielen" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Jouw bericht:" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Jouw abonnement staat maar %d kanalen toe." +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op http://hubzilla.org" -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Niets gevonden om te importeren" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Je moet deze uitnodigingscode opgeven:" -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Niet in staat om gegevens van de oude hub te downloaden" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registreer je op een willekeurige $Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):" -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Geïmporteerde bestand is leeg" +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn $Projectname-kanaaladres in het zoekveld invullen:" -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Waarschuwing: database-versies lopen %1$d updates achter." +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "of bezoek" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klik op [+ Verbinden]" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Geen kanaal. Importeren mislukt." +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Privacy-informatie op afstand niet beschikbaar." -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import voltooid." +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Zichtbaar voor:" -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Locatie niet gevonden." -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Kanaal importeren" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Opzoeken locatie mislukt" -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Locs.php:66 msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." +"Please select another location to become primary before removing the primary" +" location." +msgstr "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen." -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Bestand om te uploaden" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Locaties synchronizeren" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Of vul de gegevens van de oude hub in" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Geen locaties gevonden." -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Jouw oude kanaaladres (xyz@example.com)" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Kanaallocaties beheren" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Het e-mailadres van je oude account" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Kanaaladres" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Wachtwoord van jouw oude account" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primair" -#: ../../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" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Verwijderen" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Stel deze hub als mijn primaire locatie in" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Nu synchroniseren" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Module/Locs.php:124 msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub niet gevonden." -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Niet in staat om de originele locatie van het bericht te vinden. " +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" - -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Dubbel bericht tegengehouden." +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." +#: ../../Zotlabs/Module/Mail.php:78 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." +#: ../../Zotlabs/Module/Mail.php:143 +msgid "Messages" +msgstr "Berichten" -#: ../../Zotlabs/Module/Item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Bericht ingetrokken." -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversatie verwijderd" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verloopt op DD-MM-YYYY om HH:MM" -#: ../../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 "Profielfoto's" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album niet gevonden." +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Privébericht versturen" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Verwijder album" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "Aan:" -#: ../../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 "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder." +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Onderwerp:" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Verwijder foto" +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Bestand toevoegen" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Verzenden" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "Bericht verwijderen" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB aan foto-opslag gebruikt." +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Afleveringsrapport" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Foto's uploaden" +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Bericht intrekken" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Vul een albumnaam in" +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Verwijder conversatie" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Plaats een bericht voor deze upload." +#: ../../Zotlabs/Module/Mail.php:363 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Bijschrift (optioneel):" +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Send Reply" +msgstr "Antwoord versturen" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Omschrijving (optioneel):" +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Jouw privébericht aan %s (%s):" -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "Albumnaam kon niet gedecodeerd worden" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Connectiefoto's" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Nieuwste eerst weergeven" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Kanaalbeheer" -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Oudste eerst weergeven" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Huidig kanaal" -#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 -msgid "View Photo" -msgstr "Foto weergeven" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Activeer een van jouw andere kanalen door er op te klikken." -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Album bewerken" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Standaardkanaal" -#: ../../Zotlabs/Module/Photos.php:868 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Als standaard instellen" -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" -msgstr "Foto niet aanwezig" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nieuwe berichten" -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Als profielfoto gebruiken" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nieuwe connectieverzoeken" -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Als omslagfoto gebruiken" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Uitbesteed kanaal" -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Privéfoto" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Volledige grootte weergeven" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Verwijderen" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Foto bewerken" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Draai met de klok mee (naar rechts)" +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Draai tegen de klok in (naar links)" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Vul een nieuwe albumnaam in" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Bijschrift" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Tag toevoegen" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Markeer als voor volwassenen in albumweergave" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" -#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" +#: ../../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 "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Even wachten" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-mailadres" -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Dit ben jij" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Opnieuw instellen" -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Reactie" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "vinden dit leuk" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "vinden dit niet leuk" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Niet in staat om menu aan te passen" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "eens" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Niet in staat om menu aan te maken." -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "oneens" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Menunaam" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "onthoudingen" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "aanwezig" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menutitel" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "niet aanwezig" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "mogelijk aanwezig" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Bladwijzers toestaan" -#: ../../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 "Toon alles" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" -#: ../../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] "vindt dit leuk" -msgstr[1] "vinden dit leuk" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Opslaan en doorgaan" -#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1765 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "vindt dit niet leuk" -msgstr[1] "vinden dit niet leuk" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menu's" -#: ../../Zotlabs/Module/Photos.php:1233 -msgid "Photo Tools" -msgstr "Hulpmiddelen" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Bladwijzers toegestaan" -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "Op deze foto:" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Menu verwijderen" -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Kaart" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bewerk de inhoud van het menu" -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "vinden dit leuk" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dit menu bewerken" -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "vinden dit niet leuk" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menu kon niet verwijderd worden." -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Sluiten" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menu niet gevonden." -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Album weergeven" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menu bewerken" -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Recente foto's" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Items aan dit menu toevoegen of verwijder" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Privacy-informatie op afstand niet beschikbaar." +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Naam van menu" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Zichtbaar voor:" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importeren voltooid" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titel van menu" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importeer items" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titel van menu zoals anderen dat zien." -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Bladwijzers toestaan" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Limiet voor aantal uitnodigingen overschreden." +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Niet gevonden." -#: ../../Zotlabs/Module/Invite.php:53 +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Geen geldig e-mailadres." +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s is %2$s" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Uitnodiging voor $Projectname" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Stemming" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Noteer je huidige stemming en toon het aan je connecties" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Aflevering bericht mislukt." +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profielovereenkomst" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Je hebt geen uitnodigingen meer beschikbaar" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "is geïnteresseerd in:" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Uitnodigingen verzenden" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Geen overeenkomsten" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Voer e-mailadressen in, één per regel:" +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Collectie niet gevonden" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Jouw bericht:" +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Niet zo'n kanaal" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op http://hubzilla.org" +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "forum" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Je moet deze uitnodigingscode opgeven:" +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registreer je op een willekeurige $Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):" +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Privacygroep is leeg" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn $Projectname-kanaaladres in het zoekveld invullen:" +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Privacygroep: " -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "of bezoek" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Ongeldige connectie." -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klik op [+ Verbinden]" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Locatie niet gevonden." +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Systeemnotificaties" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Opzoeken locatie mislukt" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Niet in staat om onderdeel aan te maken." -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen." +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Menu-onderdeel kan niet worden geüpdatet." -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Locaties synchronizeren" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Menu-onderdeel kan niet worden toegevoegd." -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Geen locaties gevonden." +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permissies menu-item" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Kanaallocaties beheren" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primair" +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Linknaam" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Verwijderen" +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Linkdoel of submenu-doel" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Nu synchroniseren" +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Geef de URL van de link of kies een menunaam om een submenu aan te maken" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Gebruik magic-auth wanneer beschikbaar" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Volgorde in lijst" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub niet gevonden." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Hogere nummers komen onderaan de lijst terecht" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Opslaan en afsluiten" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Opslaan en doorgaan" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menu:" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Linkdoel" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Berichten" +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Menu bewerken" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Bericht ingetrokken." +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Onderdeel bewerken" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversatie verwijderd" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Onderdeel verwijderen" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verloopt op DD-MM-YYYY om HH:MM" +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nieuw element" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Deze menu-container bewerken" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Privébericht versturen" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Menu-element toevoegen" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "Aan:" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Dit menu-item verwijderen" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Onderwerp:" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Dit menu-item bewerken" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Bestand toevoegen" +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Verzenden" +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Bericht verwijderen" +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Afleveringsrapport" +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Linktekst" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Bericht intrekken" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Naam" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Verwijder conversatie" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Korte bijnaam" -#: ../../Zotlabs/Module/Mail.php:355 +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." - -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Antwoord versturen" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s" -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Jouw privébericht aan %s (%s):" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Kanaaltype en privacy" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Kies een kanaaltype met het door jou gewenste privacyniveau." -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Lees meer over kanaaltypes" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Kanaalbeheer" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Kanaal aanmaken" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Huidig kanaal" +#: ../../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 "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen." -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Activeer een van jouw andere kanalen door er op te klikken." +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "Of importeer een bestaand kanaal vanaf een andere locatie" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Standaardkanaal" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ongeldige verzoek identificator (request identifier)" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Als standaard instellen" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Annuleren" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nieuwe berichten" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nieuwe connectieverzoeken" +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Uitbesteed kanaal" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Niet in staat om menu aan te passen" +#: ../../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 "Profielfoto's" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Niet in staat om menu aan te maken." +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Album niet gevonden." -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Menunaam" +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Verwijder album" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" +#: ../../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 "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder." -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menutitel" +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Verwijder foto" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Bladwijzers toestaan" +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Opslaan en doorgaan" +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB aan foto-opslag gebruikt." -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menu's" +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Foto's uploaden" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Bladwijzers toegestaan" +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Vul een albumnaam in" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Menu verwijderen" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Bewerk de inhoud van het menu" +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Plaats een bericht voor deze upload." -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Dit menu bewerken" +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Bijschrift (optioneel):" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menu kon niet verwijderd worden." +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Omschrijving (optioneel):" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menu niet gevonden." +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "Albumnaam kon niet gedecodeerd worden" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Menu bewerken" +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Connectiefoto's" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Items aan dit menu toevoegen of verwijder" +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Nieuwste eerst weergeven" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Naam van menu" +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Oudste eerst weergeven" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Foto weergeven" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titel van menu" +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Album bewerken" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titel van menu zoals anderen dat zien." +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Bladwijzers toestaan" +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Foto niet aanwezig" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Niet gevonden." +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Als profielfoto gebruiken" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Als omslagfoto gebruiken" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Privéfoto" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Volledige grootte weergeven" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Verwijderen" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Foto bewerken" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Draai met de klok mee (naar rechts)" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Draai tegen de klok in (naar links)" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Vul een nieuwe albumnaam in" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Bijschrift" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Tag toevoegen" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Markeer als voor volwassenen in albumweergave" -#: ../../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 "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-mailadres" +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Opnieuw instellen" +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Even wachten" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s is %2$s" +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Dit ben jij" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Stemming" +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Reactie" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Noteer je huidige stemming en toon het aan je connecties" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "vinden dit leuk" -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Collectie niet gevonden" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "vinden dit niet leuk" -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Niet zo'n kanaal" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "eens" -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "oneens" -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "Privacygroep is leeg" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "onthoudingen" -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Privacygroep: " +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "aanwezig" -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Ongeldige connectie." +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "niet aanwezig" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "mogelijk aanwezig" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Systeemnotificaties" +#: ../../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 "Toon alles" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profielovereenkomst" +#: ../../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] "vindt dit leuk" +msgstr[1] "vinden dit leuk" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "vindt dit niet leuk" +msgstr[1] "vinden dit niet leuk" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "is geïnteresseerd in:" +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "Hulpmiddelen" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Geen overeenkomsten" +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "Op deze foto:" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Berichten en reacties" +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Kaart" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Alleen berichten" +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Niet in staat om onderdeel aan te maken." +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Sluiten" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Menu-onderdeel kan niet worden geüpdatet." +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Album weergeven" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Menu-onderdeel kan niet worden toegevoegd." +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Recente foto's" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permissies menu-item" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Linknaam" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "G:i, l d F" -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Linkdoel of submenu-doel" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[vandaag]" -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Geef de URL van de link of kies een menunaam om een submenu aan te maken" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Gebruik magic-auth wanneer beschikbaar" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Niet in staat om je hub te vinden" -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Open link in nieuw venster" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Verzenden bericht geslaagd." -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Volgorde in lijst" +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID-protocolfout. Geen ID terugontvangen." -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Hogere nummers komen onderaan de lijst terecht" +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Inloggen mislukt." -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Opslaan en afsluiten" +#: ../../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/Mitem.php:162 -msgid "Submit and continue" -msgstr "Opslaan en doorgaan" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menu:" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Configuratiebewerker" -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Linkdoel" +#: ../../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 "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Menu bewerken" +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Lay-out bijgewerkt." -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Onderdeel bewerken" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Systeempagina's bewerken" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Onderdeel verwijderen" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Lay-out niet gevonden." -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nieuw element" +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Modulenaam:" -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Deze menu-container bewerken" +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Lay-out-hulp" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Menu-element toevoegen" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Aanstoten" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Dit menu-item verwijderen" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Iemand aanstoten" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Dit menu-item bewerken" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menu-item niet gevonden." +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Iemand bijvoorbeeld aanstoten of poren" -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menu-item verwijderd." +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Ontvanger" -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menu-item kon niet worden verwijderd." +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Menu-element bewerken" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Maak dit bericht privé" -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Linktekst" +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Ophalen URL gaf een foutmelding terug: %1$s" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Thema-instellingen bijgewerkt." - -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# accounts" +#: ../../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 "Profiel niet gevonden." -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# geblokkeerde accounts" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profiel verwijderd." -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# verlopen accounts" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profiel-" -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# accounts die nog moeten verlopen" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# Kanalen" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# primair" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Geen profiel beschikbaar om te exporteren" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# klonen" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Berichtenwachtrij" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Huwelijke status" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Jouw software moet worden bijgewerkt " +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Romantische partner" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" -msgstr "Beheer" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Houdt van" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Samenvatting" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Houdt niet van" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Geregistreerde accounts" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Werk/arbeid" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "Accounts die op goedkeuring wachten" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religie" -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Geregistreerde kanalen" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Politieke overtuigingen" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" -msgstr "Ingeschakelde plugins" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Seksuele voorkeur" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versie" +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Homepage" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Versie repository (master)" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interesses" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Versie repository (dev)" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profiel bijgewerkt" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Hub-instellingen bijgewerkt." +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 -msgid "Default" -msgstr "Standaard" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Profiel bewerken" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 -msgid "mobile" -msgstr "mobiel" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Profiel weergeven" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "experimenteel" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:959 +msgid "Edit visibility" +msgstr "Zichtbaarheid bewerken" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "Niet ondersteund" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Hulpmiddelen" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Ja - met goedkeuring" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Omslagfoto wijzigen" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "Mijn $Projectname-hub is niet openbaar" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +msgid "Change profile photo" +msgstr "Profielfoto veranderen" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "Mijn $Projectname-hub kent alleen betaalde toegang" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Een nieuw profiel aanmaken met dit profiel als basis" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "Mijn $Projectname-hub kent alleen gratis toegang" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Dit profiel klonen" -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mijn $Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 -msgid "Site" -msgstr "Hub-instellingen" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Dingen aan je profiel toevoegen" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Registratie" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 +msgid "Personal" +msgstr "Persoonlijk" -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" -msgstr "Bestand uploaden" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relatie" -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" -msgstr "Beleid" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Diversen" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Geavanceerd" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Profiel vanuit bestand importeren" -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" -msgstr "Naam van deze $Projectname-hub" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Profiel naar bestand exporteren" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" -msgstr "Banner/logo" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Jouw geslacht" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" -msgstr "Informatie over de beheerder van deze hub" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Burgerlijke staat" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden." +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Seksuele voorkeur" -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "Standaardtaal" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Profielnaam" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "Standaardthema" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Dit is jouw standaardprofiel" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standaardthema voor $Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Jouw volledige naam" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" -msgstr "Standaardthema voor mobiel" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Titel/omschrijving" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" -msgstr "Thema voor mobiele apparaten" - -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" -msgstr "Sta feeds toe als connecties" - -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" -msgstr "(sterk negatieve invloed op systeembronnen hub)" - -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" -msgstr "Maximale grootte van afbeeldingen" - -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend." - -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" -msgstr "Staat deze hub nieuwe accounts toe?" - -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" -msgstr "Alleen op uitnodiging" - -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan." +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Straat en huisnummer" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Wat voor soort accounts biedt deze $Projectname-hub aan? Kies wat het meest in de buurt komt." +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Woonplaats" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" -msgstr "Tekst tijdens registratie" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Provincie/gewest/deelstaat" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." -msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "Postcode" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "Land" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken." +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Wie (wanneer van toepassing)" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" -msgstr "Behoudt de URL van de hub (/)" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "Sinds (datum)" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" -msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Vertel ons iets over jezelf" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet." +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Oorspronkelijk uit" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" -msgstr "Toegestane domeinen" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Politieke overtuigingen" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze $Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Religieuze overtuigingen" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" -msgstr "Toegestane e-maildomeinen" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Trefwoorden voor in de kanalengids" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten." +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: muziek, fotografie, software" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" -msgstr "Niet toegestane e-maildomeinen" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Muzikale interesses" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. " +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Boeken/literatuur" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" -msgstr "E-mailadres verifieren" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisie" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)." +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film/dans/cultuur/entertainment" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" -msgstr "Dwing kanaalvermelding af" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobby's/interesses" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld." +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Liefde/romantiek" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" -msgstr "Openbare streams importeren" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "School/opleiding" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd." +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Contactinformatie en sociale netwerken" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" -msgstr "Inlogformulier op de homepagina" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Mijn andere kanalen" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. " +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +msgid "Profile Image" +msgstr "Profielfoto" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" -msgstr "Schakel contextuele hulp in" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 +#: ../../include/channel.php:937 +msgid "Edit Profiles" +msgstr "Bewerk profielen" -#: ../../Zotlabs/Module/Admin.php:523 +#: ../../Zotlabs/Module/Profile_photo.php:179 msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Toon hulp en documentatie voor de op dat moment getoonde pagina, wanneer op de hulp-knop wordt geklikt." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" -msgstr "Server-URL voor de kanalengids" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" -msgstr "Standaardserver voor de kanalengids" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" -msgstr "Gebruikersnaam proxy" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" -msgstr "Proxy-URL" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profiel" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" -msgstr "Netwerktimeout" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Zichtbaar voor" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" -msgstr "Afleveringsinterval" +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Openbare hubs" -#: ../../Zotlabs/Module/Admin.php:530 +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers." - -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" -msgstr "Leveringen per serverproces" - -#: ../../Zotlabs/Module/Admin.php:531 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5" - -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" -msgstr "Poll-interval" - -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken." - -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" -msgstr "Maximaal gemiddelde systeembelasting" - -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd." - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" -msgstr "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud." - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "Off" -msgstr "Uit" - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "On" -msgstr "Aan" - -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" -msgstr " Vergrendel de functie '%s'" - -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" -msgstr "Beheer - Extra functies" - -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" -msgstr "Geen hub gevonden" - -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" -msgstr "ID" - -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" -msgstr "voor kanaal" - -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" -msgstr "op hub" - -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" -msgstr "Hubbeheer" - -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Standaard is ongefilterde HTML in ingesloten (embedded) media toegestaan. Dit is inherent onveilig." - -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende websites toe te staan:" - -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" - -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd." - -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 -msgid "Security" -msgstr "Beveiliging" - -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" -msgstr "Openbare toegang blokkeren" - -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd." - -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" -msgstr "\"Transport Security\" HTTP-header inschakelen" - -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr " \"Content Security Policy\" HTTP-header inschakelen" - -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" -msgstr "Alleen communicatie met deze hubs toestaan" - -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan" - -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" -msgstr "Communicatie met deze hubs blokkeren" - -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" -msgstr "Sta alleen communicatie toe met deze kanalen" - -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan" - -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" -msgstr "Communicatie met deze kanalen blokkeren" - -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Alleen ingesloten (embedded) inhoud van veilige (SSL) websites en links toestaan." - -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Alleen ongefilterde ingesloten (embedded) HTML van deze websites toestaan" - -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." -msgstr "Eén website per regel. Standaard wordt ingesloten (embedded) inhoud gefilterd." - -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" -msgstr "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren" - -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" -msgstr "Update is als succesvol gemarkeerd" - -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." - -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s was geslaagd." - -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is." - -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-functie %s kon niet gevonden worden." - -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." -msgstr "Geen mislukte updates." - -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" -msgstr "Mislukte updates" - -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" -msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" - -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" -msgstr "Poging om deze stap van de update automatisch uit te voeren." - -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" -msgstr "Wachtrij-statistieken" - -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" -msgstr "Aantal vermeldingen" - -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" -msgstr "Prioriteit" - -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" -msgstr "Doel-URL" - -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" -msgstr "Hub als permanent offline markeren" - -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" -msgstr "Berichtenwachtrij voor deze hub legen" - -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" -msgstr "Voor het laatst contact" - -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s account geblokkeerd/gedeblokkeerd" -msgstr[1] "%s accounts geblokkeerd/gedeblokkeerd" - -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s account verwijderd" -msgstr[1] "%s accounts verwijderd" - -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "Account niet gevonden" - -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "Account '%s' verwijderd" - -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "Account '%s' geblokkeerd" - -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Account '%s' gedeblokkeerd" - -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 -msgid "Accounts" -msgstr "Accounts" - -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "alles selecteren" - -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" -msgstr "Accounts die op goedkeuring wachten" - -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "Tijd/datum verzoek" - -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "Geen verzoeken." - -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "Afkeuren" - -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" -msgstr "Alle kanalen" - -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" -msgstr "Geregistreerd" - -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" -msgstr "Laatste keer ingelogd" - -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" -msgstr "Verloopt" - -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" -msgstr "Abonnementen" - -#: ../../Zotlabs/Module/Admin.php:1054 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?" - -#: ../../Zotlabs/Module/Admin.php:1055 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" - -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s kanaal gecensureerd/ongecensureerd" -msgstr[1] "%s kanalen gecensureerd/ongecensureerd" - -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "Scripts toegestaan/niet toegestaan voor %s kanaal" -msgstr[1] "Scripts toegestaan/niet toegestaan voor %s kanalen" - -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s kanaal verwijderd" -msgstr[1] "%s kanalen verwijderd" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "Kanaal niet gevonden" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Hub-URL" -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanaal '%s' verwijderd" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Toegangs-
 type" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanaal '%s' gecensureerd" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Registratie-
 beleid" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanaal '%s' ongecensureerd" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Stats" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Scripts toegestaan voor kanaal '%s'" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Scripts niet toegestaan voor kanaal '%s'" +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Beoordelingen" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 -msgid "Channels" -msgstr "Kanalen" +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Beoordeel" -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" -msgstr "Censureren" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Website:" -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" -msgstr "Niet censureren" +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" -msgstr "Scripts toestaan" +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Beoordeling (deze informatie is openbaar)" -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" -msgstr "Scripts niet toestaan" +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 -msgid "Channel" -msgstr "Kanaal" +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Geen beoordelingen" -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Beoordeling: " -#: ../../Zotlabs/Module/Admin.php:1226 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Website: " -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Omschrijving: " -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s uitgeschakeld." +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." +msgstr "Thema-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s ingeschakeld" +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" +msgstr "# accounts" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" -msgstr "Uitschakelen" +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" +msgstr "# geblokkeerde accounts" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" -msgstr "Inschakelen" +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" +msgstr "# verlopen accounts" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 -msgid "Plugins" -msgstr "Plugins" +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" +msgstr "# accounts die nog moeten verlopen" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" -msgstr "Omschakelen" +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" +msgstr "# Kanalen" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 -msgid "Settings" -msgstr "Instellingen" +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" +msgstr "# primair" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " -msgstr "Auteur: " +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" +msgstr "# klonen" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " -msgstr "Beheerder: " +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" +msgstr "Berichtenwachtrij" -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " -msgstr "Minimum versie Hubzilla: " +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" +msgstr "Jouw software moet worden bijgewerkt " -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " -msgstr "Maximum versie Hubzilla:" +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 +#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 +#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 +#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 +#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 +#: ../../Zotlabs/Module/Admin.php:1731 +msgid "Administration" +msgstr "Beheer" -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " -msgstr "Minimum versie PHP: " +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" +msgstr "Samenvatting" -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " -msgstr "Vereist: " +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" +msgstr "Geregistreerde accounts" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" -msgstr "Uitgeschakeld - versie is incompatibel" +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +msgid "Pending registrations" +msgstr "Accounts die op goedkeuring wachten" -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Vul de openbare Git-URL in van de plugin-repository." +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" +msgstr "Geregistreerde kanalen" -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" -msgstr "Git-URL plugin-repository" +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +msgid "Active plugins" +msgstr "Ingeschakelde plugins" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" -msgstr "Handmatige repository-naam" +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" +msgstr "Versie" -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" -msgstr "(optioneel)" +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" +msgstr "Versie repository (master)" -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" -msgstr "Plugin-repository downloaden" +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" +msgstr "Versie repository (dev)" -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" -msgstr "Nieuwe repository installeren" +#: ../../Zotlabs/Module/Admin.php:373 +msgid "Site settings updated." +msgstr "Hub-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Installeren" +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +msgid "Default" +msgstr "Standaard" -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" -msgstr "Repositories beheren" +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +msgid "mobile" +msgstr "mobiel" -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" -msgstr "Toegevoegde plugin-repositories" +#: ../../Zotlabs/Module/Admin.php:412 +msgid "experimental" +msgstr "experimenteel" -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" -msgstr "Nieuwe plugin-repository toevoegen" +#: ../../Zotlabs/Module/Admin.php:414 +msgid "unsupported" +msgstr "Niet ondersteund" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "Bijwerken" +#: ../../Zotlabs/Module/Admin.php:460 +msgid "Yes - with approval" +msgstr "Ja - met goedkeuring" + +#: ../../Zotlabs/Module/Admin.php:466 +msgid "My site is not a public server" +msgstr "Mijn $Projectname-hub is niet openbaar" -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" -msgstr "Branch veranderen" +#: ../../Zotlabs/Module/Admin.php:467 +msgid "My site has paid access only" +msgstr "Mijn $Projectname-hub kent alleen betaalde toegang" -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." -msgstr "Geen thema's gevonden" +#: ../../Zotlabs/Module/Admin.php:468 +msgid "My site has free access only" +msgstr "Mijn $Projectname-hub kent alleen gratis toegang" -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" -msgstr "Schermafdruk" +#: ../../Zotlabs/Module/Admin.php:469 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mijn $Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 -msgid "Themes" -msgstr "Thema's" +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +msgid "Site" +msgstr "Hub-instellingen" -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" -msgstr "[Experimenteel]" +#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 +msgid "Registration" +msgstr "Registratie" -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" -msgstr "[Niet ondersteund]" +#: ../../Zotlabs/Module/Admin.php:494 +msgid "File upload" +msgstr "Bestand uploaden" -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." -msgstr "Logboek-instellingen bijgewerkt." +#: ../../Zotlabs/Module/Admin.php:495 +msgid "Policies" +msgstr "Beleid" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 -msgid "Logs" -msgstr "Logboeken" +#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Geavanceerd" -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" -msgstr "Leegmaken" +#: ../../Zotlabs/Module/Admin.php:500 +msgid "Site name" +msgstr "Naam van deze $Projectname-hub" -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" -msgstr "Debuggen" +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Banner/Logo" +msgstr "Banner/logo" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" -msgstr "Logbestand" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "Administrator Information" +msgstr "Informatie over de beheerder van deze hub" -#: ../../Zotlabs/Module/Admin.php:1741 +#: ../../Zotlabs/Module/Admin.php:502 msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je $Projectname-installatie." - -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "Logniveau" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden." -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "Nieuw profielveld" +#: ../../Zotlabs/Module/Admin.php:503 +msgid "System language" +msgstr "Standaardtaal" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "Bijnaam voor veld" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "System theme" +msgstr "Standaardthema" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "Systeemnaam voor veld" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standaardthema voor $Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "Invoertype" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Mobile system theme" +msgstr "Standaardthema voor mobiel" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "Veldnaam" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Theme for mobile devices" +msgstr "Thema voor mobiele apparaten" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" -msgstr "Tekstlabel voor op profielpagina's" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "Allow Feeds as Connections" +msgstr "Sta feeds toe als connecties" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" -msgstr "Helptekst" +#: ../../Zotlabs/Module/Admin.php:507 +msgid "(Heavy system resource usage)" +msgstr "(sterk negatieve invloed op systeembronnen hub)" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" -msgstr "Extra informatie (optioneel)" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "Maximum image size" +msgstr "Maximale grootte van afbeeldingen" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" -msgstr "Velddefinitie niet gevonden" +#: ../../Zotlabs/Module/Admin.php:508 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend." -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" -msgstr "Profielveld bewerken" +#: ../../Zotlabs/Module/Admin.php:509 +msgid "Does this site allow new member registration?" +msgstr "Staat deze hub nieuwe accounts toe?" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 -msgid "Profile Fields" -msgstr "Profielvelden" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Invitation only" +msgstr "Alleen op uitnodiging" -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" -msgstr "Standaard profielvelden" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan." -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" -msgstr "Geavanceerde profielvelden" +#: ../../Zotlabs/Module/Admin.php:511 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Wat voor soort accounts biedt deze $Projectname-hub aan? Kies wat het meest in de buurt komt." -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" -msgstr "(als toevoeging op de standaard velden)" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Register text" +msgstr "Tekst tijdens registratie" -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" -msgstr "Alle beschikbare velden" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Will be displayed prominently on the registration page." +msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" -msgstr "Extra (handmatig toegevoegde) velden" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)" -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" -msgstr "Extra velden aanmaken" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Naam" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Preserve site homepage URL" +msgstr "Behoudt de URL van de hub (/)" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Korte bijnaam" +#: ../../Zotlabs/Module/Admin.php:515 +msgid "Accounts abandoned after x days" +msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format +#: ../../Zotlabs/Module/Admin.php:515 msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanaaltype en privacy" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet." -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Kies een kanaaltype met het door jou gewenste privacyniveau." +#: ../../Zotlabs/Module/Admin.php:516 +msgid "Allowed friend domains" +msgstr "Toegestane domeinen" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Lees meer over kanaaltypes" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze $Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Kanaal aanmaken" +#: ../../Zotlabs/Module/Admin.php:517 +msgid "Allowed email domains" +msgstr "Toegestane e-maildomeinen" -#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Admin.php:517 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 "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen." +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten." -#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Not allowed email domains" +msgstr "Niet toegestane e-maildomeinen" + +#: ../../Zotlabs/Module/Admin.php:518 msgid "" -"or import an existing channel from another location." -msgstr "Of importeer een bestaand kanaal vanaf een andere locatie" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. " -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "Verify Email Addresses" +msgstr "E-mailadres verifieren" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)." -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "G:i, l d F" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Force publish" +msgstr "Dwing kanaalvermelding af" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[vandaag]" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld." -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Import Public Streams" +msgstr "Openbare streams importeren" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ongeldige verzoek identificator (request identifier)" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd." -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Annuleren" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Login on Homepage" +msgstr "Inlogformulier op de homepagina" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. " -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Aanstoten" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Enable context help" +msgstr "Schakel contextuele hulp in" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Iemand aanstoten" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Toon hulp en documentatie voor de op dat moment getoonde pagina, wanneer op de hulp-knop wordt geklikt." -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Directory Server URL" +msgstr "Server-URL voor de kanalengids" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Iemand bijvoorbeeld aanstoten of poren" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Default directory server" +msgstr "Standaardserver voor de kanalengids" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Ontvanger" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Proxy user" +msgstr "Gebruikersnaam proxy" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Proxy URL" +msgstr "Proxy-URL" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Maak dit bericht privé" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Network timeout" +msgstr "Netwerktimeout" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Niet in staat om je hub te vinden" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Verzenden bericht geslaagd." +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Delivery interval" +msgstr "Afleveringsinterval" -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-protocolfout. Geen ID terugontvangen." +#: ../../Zotlabs/Module/Admin.php:530 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers." -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Inloggen mislukt." +#: ../../Zotlabs/Module/Admin.php:531 +msgid "Deliveries per process" +msgstr "Leveringen per serverproces" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" +#: ../../Zotlabs/Module/Admin.php:531 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Poll interval" +msgstr "Poll-interval" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profiel" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken." -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "Maximum Load Average" +msgstr "Maximaal gemiddelde systeembelasting" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Zichtbaar voor" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." +#: ../../Zotlabs/Module/Admin.php:534 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd." -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Configuratiebewerker" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "0 for no expiration of imported content" +msgstr "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud." -#: ../../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 "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "Off" +msgstr "Uit" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Ophalen URL gaf een foutmelding terug: %1$s" +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "On" +msgstr "Aan" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Admin.php:678 #, php-format -msgid "Version %s" -msgstr "Versie %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plugins en apps:" +msgid "Lock feature %s" +msgstr " Vergrendel de functie '%s'" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plugins en apps" +#: ../../Zotlabs/Module/Admin.php:686 +msgid "Manage Additional Features" +msgstr "Beheer - Extra functies" -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." +#: ../../Zotlabs/Module/Admin.php:703 +msgid "No server found" +msgstr "Geen hub gevonden" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Tag: " +#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +msgid "ID" +msgstr "ID" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Meest recente achtergrond-fetch:" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "for channel" +msgstr "voor kanaal" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Gemiddelde systeembelasting is nu:" +#: ../../Zotlabs/Module/Admin.php:710 +msgid "on server" +msgstr "op hub" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" +#: ../../Zotlabs/Module/Admin.php:712 +msgid "Server" +msgstr "Hubbeheer" -#: ../../Zotlabs/Module/Siteinfo.php:59 +#: ../../Zotlabs/Module/Admin.php:746 msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bezoek hubzilla.org " +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Standaard is ongefilterde HTML in ingesloten (embedded) media toegestaan. Dit is inherent onveilig." -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" +#: ../../Zotlabs/Module/Admin.php:749 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende websites toe te staan:" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "$projectname-issues" +#: ../../Zotlabs/Module/Admin.php:750 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" +msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" -#: ../../Zotlabs/Module/Siteinfo.php:63 +#: ../../Zotlabs/Module/Admin.php:751 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd." -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Hubbeheerders: " +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +msgid "Security" +msgstr "Beveiliging" -#: ../../Zotlabs/Module/Rmagic.php:44 +#: ../../Zotlabs/Module/Admin.php:758 +msgid "Block public" +msgstr "Openbare toegang blokkeren" + +#: ../../Zotlabs/Module/Admin.php:758 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd." -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Het foutbericht was:" +#: ../../Zotlabs/Module/Admin.php:759 +msgid "Set \"Transport Security\" HTTP header" +msgstr "\"Transport Security\" HTTP-header inschakelen" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." +#: ../../Zotlabs/Module/Admin.php:760 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr " \"Content Security Policy\" HTTP-header inschakelen" -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "Allow communications only from these sites" +msgstr "Alleen communicatie met deze hubs toestaan" -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan" -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authenticeren" +#: ../../Zotlabs/Module/Admin.php:762 +msgid "Block communications from these sites" +msgstr "Communicatie met deze hubs blokkeren" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Openbare hubs" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "Allow communications only from these channels" +msgstr "Sta alleen communicatie toe met deze kanalen" -#: ../../Zotlabs/Module/Pubsites.php:25 +#: ../../Zotlabs/Module/Admin.php:763 msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Hub-URL" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Toegangs-
 type" +#: ../../Zotlabs/Module/Admin.php:764 +msgid "Block communications from these channels" +msgstr "Communicatie met deze kanalen blokkeren" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Registratie-
 beleid" +#: ../../Zotlabs/Module/Admin.php:765 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Alleen ingesloten (embedded) inhoud van veilige (SSL) websites en links toestaan." -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Stats" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Alleen ongefilterde ingesloten (embedded) HTML van deze websites toestaan" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Admin.php:766 +msgid "One site per line. By default embedded content is filtered." +msgstr "Eén website per regel. Standaard wordt ingesloten (embedded) inhoud gefilterd." -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Beoordelingen" +#: ../../Zotlabs/Module/Admin.php:767 +msgid "Block embedded HTML from these domains" +msgstr "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Beoordeel" +#: ../../Zotlabs/Module/Admin.php:785 +msgid "Update has been marked successful" +msgstr "Update is als succesvol gemarkeerd" -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." +#: ../../Zotlabs/Module/Admin.php:795 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" +#: ../../Zotlabs/Module/Admin.php:798 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s was geslaagd." -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Bloknaam" +#: ../../Zotlabs/Module/Admin.php:802 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is." -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Blokken" +#: ../../Zotlabs/Module/Admin.php:805 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-functie %s kon niet gevonden worden." -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Bloktitel" +#: ../../Zotlabs/Module/Admin.php:821 +msgid "No failed updates." +msgstr "Geen mislukte updates." -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Website:" +#: ../../Zotlabs/Module/Admin.php:825 +msgid "Failed Updates" +msgstr "Mislukte updates" -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" +#: ../../Zotlabs/Module/Admin.php:827 +msgid "Mark success (if update was manually applied)" +msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Beoordeling (deze informatie is openbaar)" +#: ../../Zotlabs/Module/Admin.php:828 +msgid "Attempt to execute this update step automatically" +msgstr "Poging om deze stap van de update automatisch uit te voeren." -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" +#: ../../Zotlabs/Module/Admin.php:859 +msgid "Queue Statistics" +msgstr "Wachtrij-statistieken" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Geen beoordelingen" +#: ../../Zotlabs/Module/Admin.php:860 +msgid "Total Entries" +msgstr "Aantal vermeldingen" -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Beoordeling: " +#: ../../Zotlabs/Module/Admin.php:861 +msgid "Priority" +msgstr "Prioriteit" -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Website: " +#: ../../Zotlabs/Module/Admin.php:862 +msgid "Destination URL" +msgstr "Doel-URL" -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Omschrijving: " +#: ../../Zotlabs/Module/Admin.php:863 +msgid "Mark hub permanently offline" +msgstr "Hub als permanent offline markeren" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Apps" +#: ../../Zotlabs/Module/Admin.php:864 +msgid "Empty queue for this hub" +msgstr "Berichtenwachtrij voor deze hub legen" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Titel (optioneel)" +#: ../../Zotlabs/Module/Admin.php:865 +msgid "Last known contact" +msgstr "Voor het laatst contact" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Blok bewerken" +#: ../../Zotlabs/Module/Admin.php:901 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s account geblokkeerd/gedeblokkeerd" +msgstr[1] "%s accounts geblokkeerd/gedeblokkeerd" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Geen kanaal." +#: ../../Zotlabs/Module/Admin.php:908 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s account verwijderd" +msgstr[1] "%s accounts verwijderd" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Veel voorkomende connecties" +#: ../../Zotlabs/Module/Admin.php:944 +msgid "Account not found" +msgstr "Account niet gevonden" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." +#: ../../Zotlabs/Module/Admin.php:955 +#, php-format +msgid "Account '%s' deleted" +msgstr "Account '%s' verwijderd" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Kies een bladwijzermap" +#: ../../Zotlabs/Module/Admin.php:963 +#, php-format +msgid "Account '%s' blocked" +msgstr "Account '%s' geblokkeerd" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Bladwijzer opslaan" +#: ../../Zotlabs/Module/Admin.php:971 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Account '%s' gedeblokkeerd" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL van bladwijzer" +#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 +#: ../../include/widgets.php:1383 +msgid "Accounts" +msgstr "Accounts" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "Of geef de naam op van een nieuwe bladwijzermap" +#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +msgid "select all" +msgstr "alles selecteren" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximum toegestane dagelijkse registraties op deze $Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals." +#: ../../Zotlabs/Module/Admin.php:1034 +msgid "Registrations waiting for confirm" +msgstr "Accounts die op goedkeuring wachten" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." +#: ../../Zotlabs/Module/Admin.php:1035 +msgid "Request date" +msgstr "Tijd/datum verzoek" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Wachtwoorden komen niet met elkaar overeen." +#: ../../Zotlabs/Module/Admin.php:1036 +msgid "No registrations." +msgstr "Geen verzoeken." -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." +#: ../../Zotlabs/Module/Admin.php:1038 +msgid "Deny" +msgstr "Afkeuren" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze $Projectname-hub." +#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +msgid "All Channels" +msgstr "Alle kanalen" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "Jouw registratie kan niet verwerkt worden." +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "Register date" +msgstr "Geregistreerd" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Registreren van nieuwe accounts is op deze hub uitgeschakeld." +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Last login" +msgstr "Laatste keer ingelogd" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "Registraties op deze hub moeten eerst worden goedgekeurd." +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Expires" +msgstr "Verloopt" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registreer op een andere hub." +#: ../../Zotlabs/Module/Admin.php:1052 +msgid "Service Class" +msgstr "Abonnementen" -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Admin.php:1054 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Deze $Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?" -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Gebruiksvoorwaarden" +#: ../../Zotlabs/Module/Admin.php:1055 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../Zotlabs/Module/Register.php:221 +#: ../../Zotlabs/Module/Admin.php:1091 #, php-format -msgid "I accept the %s for this website" -msgstr "Ik accepteer de %s van deze $Projectname-hub" +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s kanaal gecensureerd/ongecensureerd" +msgstr[1] "%s kanalen gecensureerd/ongecensureerd" -#: ../../Zotlabs/Module/Register.php:223 +#: ../../Zotlabs/Module/Admin.php:1100 #, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ik ben 13 jaar of ouder en accepteer de %s van deze $Projectname-hub" - -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Jouw e-mailadres" - -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Geef een wachtwoord op" +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "Scripts toegestaan/niet toegestaan voor %s kanaal" +msgstr[1] "Scripts toegestaan/niet toegestaan voor %s kanalen" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Geef het wachtwoord opnieuw op" +#: ../../Zotlabs/Module/Admin.php:1106 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s kanaal verwijderd" +msgstr[1] "%s kanalen verwijderd" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Vul jouw uitnodigingscode in" +#: ../../Zotlabs/Module/Admin.php:1126 +msgid "Channel not found" +msgstr "Kanaal niet gevonden" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "Nee" +#: ../../Zotlabs/Module/Admin.php:1136 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanaal '%s' verwijderd" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "Ja" +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanaal '%s' gecensureerd" -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." -msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanaal '%s' ongecensureerd" -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 -msgid "Register" -msgstr "Registreren" +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Scripts toegestaan voor kanaal '%s'" -#: ../../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 "Mogelijk moet op deze hub eerst jouw e-mail geverifieerd worden. Wanneer je na het indienen van dit formulier op de inlogpagina terecht komt, dan dien je jouw e-mail te controleren voor instructies. Controleer eventueel ook jouw spamfolder." +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Scripts niet toegestaan voor kanaal '%s'" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Inloggen." +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +msgid "Channels" +msgstr "Kanalen" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." +#: ../../Zotlabs/Module/Admin.php:1214 +msgid "Censor" +msgstr "Censureren" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Verwijder dit account" +#: ../../Zotlabs/Module/Admin.php:1215 +msgid "Uncensor" +msgstr "Niet censureren" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "WAARSCHUWING: " +#: ../../Zotlabs/Module/Admin.php:1216 +msgid "Allow Code" +msgstr "Scripts toestaan" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." +#: ../../Zotlabs/Module/Admin.php:1217 +msgid "Disallow Code" +msgstr "Scripts niet toestaan" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" -msgstr "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +msgid "Channel" +msgstr "Kanaal" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "Vul je wachtwoord in ter verificatie:" +#: ../../Zotlabs/Module/Admin.php:1222 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Admin.php:1226 msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Admin.php:1227 msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 -msgid "Remove Account" -msgstr "Account verwijderen" +#: ../../Zotlabs/Module/Admin.php:1284 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s uitgeschakeld." -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." +#: ../../Zotlabs/Module/Admin.php:1288 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s ingeschakeld" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Verwijder dit kanaal" +#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +msgid "Disable" +msgstr "Uitschakelen" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Dit kanaal wordt volledig uit het $Projectname-netwerk verwijderd." +#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +msgid "Enable" +msgstr "Inschakelen" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Dit kanaal en alle klonen hiervan uit het $Projectname-netwerk verwijderen" +#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 +#: ../../include/widgets.php:1387 +msgid "Plugins" +msgstr "Plugins" -#: ../../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 "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" +#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +msgid "Toggle" +msgstr "Omschakelen" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 -msgid "Remove Channel" -msgstr "Kanaal verwijderen" +#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 +msgid "Settings" +msgstr "Instellingen" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Kanaal exporteren" +#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +msgid "Author: " +msgstr "Auteur: " -#: ../../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 "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." +#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +msgid "Maintainer: " +msgstr "Beheerder: " -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Inhoud exporteren" +#: ../../Zotlabs/Module/Admin.php:1341 +msgid "Minimum project version: " +msgstr "Minimum versie Hubzilla: " -#: ../../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 "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." +#: ../../Zotlabs/Module/Admin.php:1342 +msgid "Maximum project version: " +msgstr "Maximum versie Hubzilla:" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporteer jouw berichten uit een bepaald jaar." +#: ../../Zotlabs/Module/Admin.php:1343 +msgid "Minimum PHP version: " +msgstr "Minimum versie PHP: " -#: ../../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 "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak." +#: ../../Zotlabs/Module/Admin.php:1344 +msgid "Requires: " +msgstr "Vereist: " -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld dit jaar te selecteren. " +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +msgid "Disabled - version incompatibility" +msgstr "Uitgeschakeld - versie is incompatibel" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren." +#: ../../Zotlabs/Module/Admin.php:1394 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Vul de openbare Git-URL in van de plugin-repository." -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen." +#: ../../Zotlabs/Module/Admin.php:1395 +msgid "Plugin repo git URL" +msgstr "Git-URL plugin-repository" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" -msgstr "Items getagd met %s" +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "Custom repo name" +msgstr "Handmatige repository-naam" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Zoekresultaten voor %s" +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "(optional)" +msgstr "(optioneel)" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Geen abonnementsbeperkingen gevonden." +#: ../../Zotlabs/Module/Admin.php:1397 +msgid "Download Plugin Repo" +msgstr "Plugin-repository downloaden" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "Naam is vereist" +#: ../../Zotlabs/Module/Admin.php:1404 +msgid "Install new repo" +msgstr "Nieuwe repository installeren" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "Key en secret zijn vereist" +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +msgid "Install" +msgstr "Installeren" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Dit kanaal heeft een limiet van %d tokens" +#: ../../Zotlabs/Module/Admin.php:1427 +msgid "Manage Repos" +msgstr "Repositories beheren" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Naam en wachtwoord zijn vereist" +#: ../../Zotlabs/Module/Admin.php:1428 +msgid "Installed Plugin Repositories" +msgstr "Toegevoegde plugin-repositories" -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "Token opgeslagen." +#: ../../Zotlabs/Module/Admin.php:1429 +msgid "Install a New Plugin Repository" +msgstr "Nieuwe plugin-repository toevoegen" -#: ../../Zotlabs/Module/Settings.php:274 -msgid "Not valid email." -msgstr "Geen geldig e-mailadres." +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +msgid "Update" +msgstr "Bijwerken" -#: ../../Zotlabs/Module/Settings.php:277 -msgid "Protected email address. Cannot change to that email." -msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." +#: ../../Zotlabs/Module/Admin.php:1436 +msgid "Switch branch" +msgstr "Branch veranderen" -#: ../../Zotlabs/Module/Settings.php:286 -msgid "System failure storing new email. Please try again." -msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." +#: ../../Zotlabs/Module/Admin.php:1550 +msgid "No themes found." +msgstr "Geen thema's gevonden" -#: ../../Zotlabs/Module/Settings.php:303 -msgid "Password verification failed." -msgstr "Wachtwoordverificatie mislukt" +#: ../../Zotlabs/Module/Admin.php:1606 +msgid "Screenshot" +msgstr "Schermafdruk" -#: ../../Zotlabs/Module/Settings.php:310 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." +#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 +#: ../../include/widgets.php:1388 +msgid "Themes" +msgstr "Thema's" -#: ../../Zotlabs/Module/Settings.php:314 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." +#: ../../Zotlabs/Module/Admin.php:1652 +msgid "[Experimental]" +msgstr "[Experimenteel]" -#: ../../Zotlabs/Module/Settings.php:328 -msgid "Password changed." -msgstr "Wachtwoord veranderd." +#: ../../Zotlabs/Module/Admin.php:1653 +msgid "[Unsupported]" +msgstr "[Niet ondersteund]" -#: ../../Zotlabs/Module/Settings.php:330 -msgid "Password update failed. Please try again." -msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." +#: ../../Zotlabs/Module/Admin.php:1677 +msgid "Log settings updated." +msgstr "Logboek-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Settings.php:579 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 +msgid "Logs" +msgstr "Logboeken" -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 -msgid "Add application" -msgstr "Applicatie toevoegen" +#: ../../Zotlabs/Module/Admin.php:1734 +msgid "Clear" +msgstr "Leegmaken" -#: ../../Zotlabs/Module/Settings.php:646 -msgid "Name of application" -msgstr "Naam van applicatie" +#: ../../Zotlabs/Module/Admin.php:1740 +msgid "Debugging" +msgstr "Debuggen" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 -msgid "Consumer Key" -msgstr "Consumer key" +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "Log file" +msgstr "Logbestand" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je $Projectname-installatie." -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 -msgid "Consumer Secret" -msgstr "Consumer secret" +#: ../../Zotlabs/Module/Admin.php:1742 +msgid "Log level" +msgstr "Logniveau" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 -msgid "Redirect" -msgstr "Redirect/doorverwijzing" +#: ../../Zotlabs/Module/Admin.php:2028 +msgid "New Profile Field" +msgstr "Nieuw profielveld" -#: ../../Zotlabs/Module/Settings.php:649 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "Field nickname" +msgstr "Bijnaam voor veld" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 -msgid "Icon url" -msgstr "Pictogram-URL" +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "System name of field" +msgstr "Systeemnaam voor veld" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Optioneel" +#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +msgid "Input type" +msgstr "Invoertype" -#: ../../Zotlabs/Module/Settings.php:661 -msgid "Application not found." -msgstr "Applicatie niet gevonden." +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Field Name" +msgstr "Veldnaam" -#: ../../Zotlabs/Module/Settings.php:704 -msgid "Connected Apps" -msgstr "Verbonden applicaties" +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Label on profile pages" +msgstr "Tekstlabel voor op profielpagina's" -#: ../../Zotlabs/Module/Settings.php:708 -msgid "Client key starts with" -msgstr "Client key begint met" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Help text" +msgstr "Helptekst" -#: ../../Zotlabs/Module/Settings.php:709 -msgid "No name" -msgstr "Geen naam" +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Additional info (optional)" +msgstr "Extra informatie (optioneel)" -#: ../../Zotlabs/Module/Settings.php:710 -msgid "Remove authorization" -msgstr "Autorisatie verwijderen" +#: ../../Zotlabs/Module/Admin.php:2042 +msgid "Field definition not found" +msgstr "Velddefinitie niet gevonden" -#: ../../Zotlabs/Module/Settings.php:723 -msgid "No feature settings configured" -msgstr "Geen plugin-instellingen aanwezig" +#: ../../Zotlabs/Module/Admin.php:2048 +msgid "Edit Profile Field" +msgstr "Profielveld bewerken" -#: ../../Zotlabs/Module/Settings.php:730 -msgid "Feature/Addon Settings" -msgstr "Plugin-instellingen" +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +msgid "Profile Fields" +msgstr "Profielvelden" -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Account Settings" -msgstr "Account-instellingen" +#: ../../Zotlabs/Module/Admin.php:2107 +msgid "Basic Profile Fields" +msgstr "Standaard profielvelden" -#: ../../Zotlabs/Module/Settings.php:754 -msgid "Current Password" -msgstr "Huidig wachtwoord" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "Advanced Profile Fields" +msgstr "Geavanceerde profielvelden" -#: ../../Zotlabs/Module/Settings.php:755 -msgid "Enter New Password" -msgstr "Nieuw wachtwoord invoeren" +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "(In addition to basic fields)" +msgstr "(als toevoeging op de standaard velden)" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Confirm New Password" -msgstr "Nieuw wachtwoord bevestigen" +#: ../../Zotlabs/Module/Admin.php:2110 +msgid "All available fields" +msgstr "Alle beschikbare velden" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" +#: ../../Zotlabs/Module/Admin.php:2111 +msgid "Custom Fields" +msgstr "Extra (handmatig toegevoegde) velden" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 -msgid "Email Address:" -msgstr "E-mailadres:" +#: ../../Zotlabs/Module/Admin.php:2115 +msgid "Create Custom Field" +msgstr "Extra velden aanmaken" -#: ../../Zotlabs/Module/Settings.php:760 -msgid "Remove this account including all its channels" -msgstr "Dit account en al zijn kanalen verwijderen" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App geïnstalleerd" -#: ../../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 "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot de privéinhoud." +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Misvormde app." -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "Je kan ook dropbox-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Insluitcode" -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Gasttoegang" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "App bewerken" -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "Inlognaam" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "App maken" -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "Wachtwoord:" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Naam van app" -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "Geldig t/m (yyyy-mm-dd)" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Locatie (URL) van app" -#: ../../Zotlabs/Module/Settings.php:830 -msgid "Additional Features" -msgstr "Extra functies" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL van pictogram" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "Connector Settings" -msgstr "Instellingen externe koppelingen" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels (optioneel)" -#: ../../Zotlabs/Module/Settings.php:893 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../Zotlabs/Module/Settings.php:896 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (experimenteel)" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versie-ID" -#: ../../Zotlabs/Module/Settings.php:938 -msgid "Display Settings" -msgstr "Weergave-instellingen" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prijs van de app" -#: ../../Zotlabs/Module/Settings.php:939 -msgid "Theme Settings" -msgstr "Thema-instellingen" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Locatie (URL) om de app aan te schaffen" -#: ../../Zotlabs/Module/Settings.php:940 -msgid "Custom Theme Settings" -msgstr "Handmatige thema-instellingen" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Kies een bladwijzermap" -#: ../../Zotlabs/Module/Settings.php:941 -msgid "Content Settings" -msgstr "Inhoudsinstellingen" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Bladwijzer opslaan" -#: ../../Zotlabs/Module/Settings.php:947 -msgid "Display Theme:" -msgstr "Gebruik thema:" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL van bladwijzer" -#: ../../Zotlabs/Module/Settings.php:948 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "Of geef de naam op van een nieuwe bladwijzermap" -#: ../../Zotlabs/Module/Settings.php:949 -msgid "Preload images before rendering the page" -msgstr "Afbeeldingen laden voordat de pagina wordt weergegeven" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximum toegestane dagelijkse registraties op deze $Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals." -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Register.php:55 msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." -#: ../../Zotlabs/Module/Settings.php:950 -msgid "Enable user zoom on mobile devices" -msgstr "Inzoomen op smartphones en tablets toestaan" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Wachtwoorden komen niet met elkaar overeen." -#: ../../Zotlabs/Module/Settings.php:951 -msgid "Update browser every xx seconds" -msgstr "Ververs de webbrowser om de zoveel seconde" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." -#: ../../Zotlabs/Module/Settings.php:951 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimaal 10 seconde, geen maximum" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze $Projectname-hub." -#: ../../Zotlabs/Module/Settings.php:952 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximaal aantal conversaties die per keer geladen worden:" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "Jouw registratie kan niet verwerkt worden." -#: ../../Zotlabs/Module/Settings.php:952 -msgid "Maximum of 100 items" -msgstr "Maximaal 100 conversaties" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Registreren van nieuwe accounts is op deze hub uitgeschakeld." -#: ../../Zotlabs/Module/Settings.php:953 -msgid "Show emoticons (smilies) as images" -msgstr "Toon emoticons (smilies) als afbeeldingen" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "Registraties op deze hub moeten eerst worden goedgekeurd." -#: ../../Zotlabs/Module/Settings.php:954 -msgid "Link post titles to source" -msgstr "Berichtkoppen naar originele locatie linken" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registreer op een andere hub." -#: ../../Zotlabs/Module/Settings.php:955 -msgid "System Page Layout Editor - (advanced)" -msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze $Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." -#: ../../Zotlabs/Module/Settings.php:958 -msgid "Use blog/list mode on channel page" -msgstr "Gebruik blog/lijst-modus op kanaalpagina" +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" +msgstr "Gebruiksvoorwaarden" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 -msgid "(comments displayed separately)" -msgstr "(reacties worden afzonderlijk weergeven)" +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ik accepteer de %s van deze $Projectname-hub" -#: ../../Zotlabs/Module/Settings.php:959 -msgid "Use blog/list mode on grid page" -msgstr "Gebruik blog/lijst-modus op gridpagina" +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ik ben 13 jaar of ouder en accepteer de %s van deze $Projectname-hub" -#: ../../Zotlabs/Module/Settings.php:960 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "Jouw e-mailadres" -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 -msgid "click to expand content exceeding this height" -msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" +msgstr "Geef een wachtwoord op" -#: ../../Zotlabs/Module/Settings.php:961 -msgid "Grid page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op gridpagina (in pixels)" +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" +msgstr "Geef het wachtwoord opnieuw op" -#: ../../Zotlabs/Module/Settings.php:990 -msgid "Nobody except yourself" -msgstr "Niemand, behalve jezelf" +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" +msgstr "Vul jouw uitnodigingscode in" -#: ../../Zotlabs/Module/Settings.php:991 -msgid "Only those you specifically allow" -msgstr "Alleen connecties met uitdrukkelijke toestemming" +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" +msgstr "Nee" -#: ../../Zotlabs/Module/Settings.php:992 -msgid "Approved connections" -msgstr "Geaccepteerde connecties" +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "Ja" -#: ../../Zotlabs/Module/Settings.php:993 -msgid "Any connections" -msgstr "Alle connecties" +#: ../../Zotlabs/Module/Register.php:250 +msgid "Membership on this site is by invitation only." +msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." -#: ../../Zotlabs/Module/Settings.php:994 -msgid "Anybody on this website" -msgstr "Iedereen op deze hub" +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 +msgid "Register" +msgstr "Registreren" -#: ../../Zotlabs/Module/Settings.php:995 -msgid "Anybody in this network" -msgstr "Iedereen in dit netwerk" +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Volgende stap: aanmaken van jouw eerste kanaal" -#: ../../Zotlabs/Module/Settings.php:996 -msgid "Anybody authenticated" -msgstr "Geauthenticeerd" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Inloggen." -#: ../../Zotlabs/Module/Settings.php:997 -msgid "Anybody on the internet" -msgstr "Iedereen op het internet" +#: ../../Zotlabs/Module/Removeaccount.php:34 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." -#: ../../Zotlabs/Module/Settings.php:1071 -msgid "Publish your default profile in the network directory" -msgstr "Publiceer je standaardprofiel in de kanalengids" +#: ../../Zotlabs/Module/Removeaccount.php:56 +msgid "Remove This Account" +msgstr "Verwijder dit account" -#: ../../Zotlabs/Module/Settings.php:1076 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "WARNING: " +msgstr "WAARSCHUWING: " -#: ../../Zotlabs/Module/Settings.php:1085 -msgid "Your channel address is" -msgstr "Jouw kanaaladres is" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." -#: ../../Zotlabs/Module/Settings.php:1127 -msgid "Channel Settings" -msgstr "Kanaal-instellingen" +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "This action is permanent and can not be undone!" +msgstr "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" -#: ../../Zotlabs/Module/Settings.php:1134 -msgid "Basic Settings" -msgstr "Basis-instellingen" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Please enter your password for verification:" +msgstr "Vul je wachtwoord in ter verificatie:" + +#: ../../Zotlabs/Module/Removeaccount.php:59 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 -msgid "Full Name:" -msgstr "Volledige naam:" +#: ../../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 "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" -#: ../../Zotlabs/Module/Settings.php:1137 -msgid "Your Timezone:" -msgstr "Jouw tijdzone:" +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 +msgid "Remove Account" +msgstr "Account verwijderen" -#: ../../Zotlabs/Module/Settings.php:1138 -msgid "Default Post Location:" -msgstr "Standaardlocatie bericht:" +#: ../../Zotlabs/Module/Removeme.php:33 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." -#: ../../Zotlabs/Module/Settings.php:1138 -msgid "Geographical location to display on your posts" -msgstr "Geografische locatie die bij het bericht moet worden vermeld" +#: ../../Zotlabs/Module/Removeme.php:58 +msgid "Remove This Channel" +msgstr "Verwijder dit kanaal" -#: ../../Zotlabs/Module/Settings.php:1139 -msgid "Use Browser Location:" -msgstr "Locatie van webbrowser gebruiken:" +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "This channel will be completely removed from the network. " +msgstr "Dit kanaal wordt volledig uit het $Projectname-netwerk verwijderd." -#: ../../Zotlabs/Module/Settings.php:1141 -msgid "Adult Content" -msgstr "Inhoud voor volwassenen" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "Remove this channel and all its clones from the network" +msgstr "Dit kanaal en alle klonen hiervan uit het $Projectname-netwerk verwijderen" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" -#: ../../Zotlabs/Module/Settings.php:1143 -msgid "Security and Privacy Settings" -msgstr "Veiligheids- en privacy-instellingen" +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 +msgid "Remove Channel" +msgstr "Kanaal verwijderen" -#: ../../Zotlabs/Module/Settings.php:1146 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." +#: ../../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 "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." -#: ../../Zotlabs/Module/Settings.php:1148 -msgid "Hide my online presence" -msgstr "Verberg mijn aanwezigheid" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Het foutbericht was:" -#: ../../Zotlabs/Module/Settings.php:1148 -msgid "Prevents displaying in your profile that you are online" -msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent" +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." -#: ../../Zotlabs/Module/Settings.php:1150 -msgid "Simple Privacy Settings:" -msgstr "Eenvoudige privacy-instellingen:" +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" -#: ../../Zotlabs/Module/Settings.php:1151 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" -#: ../../Zotlabs/Module/Settings.php:1152 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Authenticeren" -#: ../../Zotlabs/Module/Settings.php:1153 -msgid "Private - default private, never open or public" -msgstr "Privé (standaard privé en nooit openbaar)" +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "Items getagd met %s" -#: ../../Zotlabs/Module/Settings.php:1154 -msgid "Blocked - default blocked to/from everybody" -msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Zoekresultaten voor %s" -#: ../../Zotlabs/Module/Settings.php:1156 -msgid "Allow others to tag your posts" -msgstr "Anderen toestaan om je berichten te taggen" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Geen abonnementsbeperkingen gevonden." -#: ../../Zotlabs/Module/Settings.php:1156 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" +#: ../../Zotlabs/Module/Settings.php:69 +msgid "Name is required" +msgstr "Naam is vereist" -#: ../../Zotlabs/Module/Settings.php:1158 -msgid "Advanced Privacy Settings" -msgstr "Geavanceerde privacy-instellingen" +#: ../../Zotlabs/Module/Settings.php:73 +msgid "Key and Secret are required" +msgstr "Key en secret zijn vereist" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "Expire other channel content after this many days" -msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" +#: ../../Zotlabs/Module/Settings.php:225 +msgid "Not valid email." +msgstr "Geen geldig e-mailadres." -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "0 or blank to use the website limit." -msgstr "0 of leeg om het standaard aantal dagen van deze hub te gebruiken." +#: ../../Zotlabs/Module/Settings.php:228 +msgid "Protected email address. Cannot change to that email." +msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." -#: ../../Zotlabs/Module/Settings.php:1160 -#, php-format -msgid "This website expires after %d days." -msgstr "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen." +#: ../../Zotlabs/Module/Settings.php:237 +msgid "System failure storing new email. Please try again." +msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "This website does not expire imported content." -msgstr "Deze hub laat de inhoud van andere kanalen niet verlopen." +#: ../../Zotlabs/Module/Settings.php:254 +msgid "Password verification failed." +msgstr "Wachtwoordverificatie mislukt" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang." +#: ../../Zotlabs/Module/Settings.php:261 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." -#: ../../Zotlabs/Module/Settings.php:1161 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal connectieverzoeken per dag:" +#: ../../Zotlabs/Module/Settings.php:265 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." -#: ../../Zotlabs/Module/Settings.php:1161 -msgid "May reduce spam activity" -msgstr "Kan eventuele spam verminderen" +#: ../../Zotlabs/Module/Settings.php:279 +msgid "Password changed." +msgstr "Wachtwoord veranderd." -#: ../../Zotlabs/Module/Settings.php:1162 -msgid "Default Post and Publish Permissions" -msgstr "Standaard permissies voor nieuwe berichten en publicaties" +#: ../../Zotlabs/Module/Settings.php:281 +msgid "Password update failed. Please try again." +msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." -#: ../../Zotlabs/Module/Settings.php:1164 -msgid "Use my default audience setting for the type of object published" -msgstr "Gebruik mijn standaard privacy-instelling voor dit type publicatie" +#: ../../Zotlabs/Module/Settings.php:525 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." -#: ../../Zotlabs/Module/Settings.php:1167 -msgid "Channel permissions category:" -msgstr "Kanaaltype en -permissies:" +#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 +#: ../../Zotlabs/Module/Settings.php:651 +msgid "Add application" +msgstr "Applicatie toevoegen" -#: ../../Zotlabs/Module/Settings.php:1173 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" +#: ../../Zotlabs/Module/Settings.php:592 +msgid "Name of application" +msgstr "Naam van applicatie" -#: ../../Zotlabs/Module/Settings.php:1173 -msgid "Useful to reduce spamming" -msgstr "Kan eventuele spam verminderen" +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +msgid "Consumer Key" +msgstr "Consumer key" -#: ../../Zotlabs/Module/Settings.php:1176 -msgid "Notification Settings" -msgstr "Notificatie-instellingen" +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" -#: ../../Zotlabs/Module/Settings.php:1177 -msgid "By default post a status message when:" -msgstr "Plaats automatisch een bericht wanneer:" +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +msgid "Consumer Secret" +msgstr "Consumer secret" -#: ../../Zotlabs/Module/Settings.php:1178 -msgid "accepting a friend request" -msgstr "Een connectieverzoek wordt geaccepteerd" +#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 +msgid "Redirect" +msgstr "Redirect/doorverwijzing" -#: ../../Zotlabs/Module/Settings.php:1179 -msgid "joining a forum/community" -msgstr "Je lid wordt van een forum/groep" +#: ../../Zotlabs/Module/Settings.php:595 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" -#: ../../Zotlabs/Module/Settings.php:1180 -msgid "making an interesting profile change" -msgstr "Er sprake is van een interessante profielwijziging" +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 +msgid "Icon url" +msgstr "Pictogram-URL" -#: ../../Zotlabs/Module/Settings.php:1181 -msgid "Send a notification email when:" -msgstr "Verzend een notificatie per e-mail wanneer:" +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Optioneel" -#: ../../Zotlabs/Module/Settings.php:1182 -msgid "You receive a connection request" -msgstr "Je een connectieverzoek ontvangt" +#: ../../Zotlabs/Module/Settings.php:607 +msgid "Application not found." +msgstr "Applicatie niet gevonden." -#: ../../Zotlabs/Module/Settings.php:1183 -msgid "Your connections are confirmed" -msgstr "Jouw connecties zijn bevestigd" +#: ../../Zotlabs/Module/Settings.php:650 +msgid "Connected Apps" +msgstr "Verbonden applicaties" -#: ../../Zotlabs/Module/Settings.php:1184 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op jouw kanaal heeft geschreven" +#: ../../Zotlabs/Module/Settings.php:654 +msgid "Client key starts with" +msgstr "Client key begint met" -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" +#: ../../Zotlabs/Module/Settings.php:655 +msgid "No name" +msgstr "Geen naam" -#: ../../Zotlabs/Module/Settings.php:1186 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" +#: ../../Zotlabs/Module/Settings.php:656 +msgid "Remove authorization" +msgstr "Autorisatie verwijderen" -#: ../../Zotlabs/Module/Settings.php:1187 -msgid "You receive a friend suggestion" -msgstr "Je een kanaalvoorstel ontvangt" +#: ../../Zotlabs/Module/Settings.php:669 +msgid "No feature settings configured" +msgstr "Geen plugin-instellingen aanwezig" -#: ../../Zotlabs/Module/Settings.php:1188 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" +#: ../../Zotlabs/Module/Settings.php:676 +msgid "Feature/Addon Settings" +msgstr "Plugin-instellingen" -#: ../../Zotlabs/Module/Settings.php:1189 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je bent in een bericht aangestoten/gepord/etc." +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Account Settings" +msgstr "Account-instellingen" -#: ../../Zotlabs/Module/Settings.php:1192 -msgid "Show visual notifications including:" -msgstr "Toon de volgende zichtbare notificaties:" +#: ../../Zotlabs/Module/Settings.php:700 +msgid "Current Password" +msgstr "Huidig wachtwoord" -#: ../../Zotlabs/Module/Settings.php:1194 -msgid "Unseen grid activity" -msgstr "Niet bekeken grid-activiteit" +#: ../../Zotlabs/Module/Settings.php:701 +msgid "Enter New Password" +msgstr "Nieuw wachtwoord invoeren" -#: ../../Zotlabs/Module/Settings.php:1195 -msgid "Unseen channel activity" -msgstr "Niet bekeken kanaal-activiteit" +#: ../../Zotlabs/Module/Settings.php:702 +msgid "Confirm New Password" +msgstr "Nieuw wachtwoord bevestigen" -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Unseen private messages" -msgstr "Niet bekeken privéberichten" +#: ../../Zotlabs/Module/Settings.php:702 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" -#: ../../Zotlabs/Module/Settings.php:1196 -#: ../../Zotlabs/Module/Settings.php:1201 -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Settings.php:1203 -msgid "Recommended" -msgstr "Aanbevolen" +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 +msgid "Email Address:" +msgstr "E-mailadres:" -#: ../../Zotlabs/Module/Settings.php:1197 -msgid "Upcoming events" -msgstr "Aankomende gebeurtenissen" +#: ../../Zotlabs/Module/Settings.php:706 +msgid "Remove this account including all its channels" +msgstr "Dit account en al zijn kanalen verwijderen" -#: ../../Zotlabs/Module/Settings.php:1198 -msgid "Events today" -msgstr "Gebeurtenissen van vandaag" +#: ../../Zotlabs/Module/Settings.php:729 +msgid "Additional Features" +msgstr "Extra functies" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Upcoming birthdays" -msgstr "Aankomende verjaardagen" +#: ../../Zotlabs/Module/Settings.php:753 +msgid "Connector Settings" +msgstr "Instellingen externe koppelingen" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Not available in all themes" -msgstr "Niet in alle thema's beschikbaar" +#: ../../Zotlabs/Module/Settings.php:792 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" + +#: ../../Zotlabs/Module/Settings.php:795 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (experimenteel)" -#: ../../Zotlabs/Module/Settings.php:1200 -msgid "System (personal) notifications" -msgstr "(Persoonlijke) systeemnotificaties" +#: ../../Zotlabs/Module/Settings.php:837 +msgid "Display Settings" +msgstr "Weergave-instellingen" -#: ../../Zotlabs/Module/Settings.php:1201 -msgid "System info messages" -msgstr "Systeemmededelingen" +#: ../../Zotlabs/Module/Settings.php:838 +msgid "Theme Settings" +msgstr "Thema-instellingen" -#: ../../Zotlabs/Module/Settings.php:1202 -msgid "System critical alerts" -msgstr "Kritische systeemwaarschuwingen" +#: ../../Zotlabs/Module/Settings.php:839 +msgid "Custom Theme Settings" +msgstr "Handmatige thema-instellingen" -#: ../../Zotlabs/Module/Settings.php:1203 -msgid "New connections" -msgstr "Nieuwe connecties" +#: ../../Zotlabs/Module/Settings.php:840 +msgid "Content Settings" +msgstr "Inhoudsinstellingen" -#: ../../Zotlabs/Module/Settings.php:1204 -msgid "System Registrations" -msgstr "Nieuwe accountregistraties op deze hub" +#: ../../Zotlabs/Module/Settings.php:846 +msgid "Display Theme:" +msgstr "Gebruik thema:" -#: ../../Zotlabs/Module/Settings.php:1205 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" +#: ../../Zotlabs/Module/Settings.php:847 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Notify me of events this many days in advance" -msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" +#: ../../Zotlabs/Module/Settings.php:848 +msgid "Preload images before rendering the page" +msgstr "Afbeeldingen laden voordat de pagina wordt weergegeven" -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Must be greater than 0" -msgstr "Moet hoger dan 0 zijn" +#: ../../Zotlabs/Module/Settings.php:848 +msgid "" +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven" -#: ../../Zotlabs/Module/Settings.php:1209 -msgid "Advanced Account/Page Type Settings" -msgstr "Instellingen geavanceerd account/paginatype" +#: ../../Zotlabs/Module/Settings.php:849 +msgid "Enable user zoom on mobile devices" +msgstr "Inzoomen op smartphones en tablets toestaan" -#: ../../Zotlabs/Module/Settings.php:1210 -msgid "Change the behaviour of this account for special situations" -msgstr "Verander het gedrag van dit account voor speciale situaties" +#: ../../Zotlabs/Module/Settings.php:850 +msgid "Update browser every xx seconds" +msgstr "Ververs de webbrowser om de zoveel seconde" -#: ../../Zotlabs/Module/Settings.php:1213 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" +#: ../../Zotlabs/Module/Settings.php:850 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimaal 10 seconde, geen maximum" -#: ../../Zotlabs/Module/Settings.php:1214 -msgid "Miscellaneous Settings" -msgstr "Diverse instellingen" +#: ../../Zotlabs/Module/Settings.php:851 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximaal aantal conversaties die per keer geladen worden:" -#: ../../Zotlabs/Module/Settings.php:1215 -msgid "Default photo upload folder" -msgstr "Standaard fotoalbum voor uploads" +#: ../../Zotlabs/Module/Settings.php:851 +msgid "Maximum of 100 items" +msgstr "Maximaal 100 conversaties" -#: ../../Zotlabs/Module/Settings.php:1215 -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "%Y - current year, %m - current month" -msgstr "%Y - dit jaar, %m - deze maand" +#: ../../Zotlabs/Module/Settings.php:852 +msgid "Show emoticons (smilies) as images" +msgstr "Toon emoticons (smilies) als afbeeldingen" -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "Default file upload folder" -msgstr "Standaard bestandsmap voor uploads" +#: ../../Zotlabs/Module/Settings.php:853 +msgid "Link post titles to source" +msgstr "Berichtkoppen naar originele locatie linken" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "Personal menu to display in your channel pages" -msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" +#: ../../Zotlabs/Module/Settings.php:854 +msgid "System Page Layout Editor - (advanced)" +msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" -#: ../../Zotlabs/Module/Settings.php:1220 -msgid "Remove this channel." -msgstr "Verwijder dit kanaal." +#: ../../Zotlabs/Module/Settings.php:857 +msgid "Use blog/list mode on channel page" +msgstr "Gebruik blog/lijst-modus op kanaalpagina" -#: ../../Zotlabs/Module/Settings.php:1221 -msgid "Firefox Share $Projectname provider" -msgstr "$Projectname-service voor Firefox Share" +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +msgid "(comments displayed separately)" +msgstr "(reacties worden afzonderlijk weergeven)" -#: ../../Zotlabs/Module/Settings.php:1222 -msgid "Start calendar week on monday" -msgstr "Begin in de agenda de week op maandag" +#: ../../Zotlabs/Module/Settings.php:858 +msgid "Use blog/list mode on grid page" +msgstr "Gebruik blog/lijst-modus op gridpagina" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "$Projectname Hub - Setup" +#: ../../Zotlabs/Module/Settings.php:859 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr "Could not connect to database." +#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 +msgid "click to expand content exceeding this height" +msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." +#: ../../Zotlabs/Module/Settings.php:860 +msgid "Grid page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op gridpagina (in pixels)" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "Could not create table." +#: ../../Zotlabs/Module/Settings.php:894 +msgid "Nobody except yourself" +msgstr "Niemand, behalve jezelf" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "Your hub database has been installed." +#: ../../Zotlabs/Module/Settings.php:895 +msgid "Only those you specifically allow" +msgstr "Alleen connecties met uitdrukkelijke toestemming" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." +#: ../../Zotlabs/Module/Settings.php:896 +msgid "Approved connections" +msgstr "Geaccepteerde connecties" -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Please see the file \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Settings.php:897 +msgid "Any connections" +msgstr "Alle connecties" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "System check" +#: ../../Zotlabs/Module/Settings.php:898 +msgid "Anybody on this website" +msgstr "Iedereen op deze hub" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "Check again" +#: ../../Zotlabs/Module/Settings.php:899 +msgid "Anybody in this network" +msgstr "Iedereen in dit netwerk" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Database connection" +#: ../../Zotlabs/Module/Settings.php:900 +msgid "Anybody authenticated" +msgstr "Geauthenticeerd" -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "In order to install $Projectname we need to know how to connect to your database." +#: ../../Zotlabs/Module/Settings.php:901 +msgid "Anybody on the internet" +msgstr "Iedereen op het internet" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Please contact your hosting provider or server administrator if you have questions about these settings." +#: ../../Zotlabs/Module/Settings.php:976 +msgid "Publish your default profile in the network directory" +msgstr "Publiceer je standaardprofiel in de kanalengids" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "The database you specify below should already exist. If it does not, please create it before continuing." +#: ../../Zotlabs/Module/Settings.php:981 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "Database Server Name" +#: ../../Zotlabs/Module/Settings.php:990 +msgid "Your channel address is" +msgstr "Jouw kanaaladres is" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "Default is 127.0.0.1" +#: ../../Zotlabs/Module/Settings.php:1032 +msgid "Channel Settings" +msgstr "Kanaal-instellingen" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Database Port" +#: ../../Zotlabs/Module/Settings.php:1039 +msgid "Basic Settings" +msgstr "Basis-instellingen" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Communication port number - use 0 for default" +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 +msgid "Full Name:" +msgstr "Volledige naam:" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Database Login Name" +#: ../../Zotlabs/Module/Settings.php:1042 +msgid "Your Timezone:" +msgstr "Jouw tijdzone:" -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Database Login Password" +#: ../../Zotlabs/Module/Settings.php:1043 +msgid "Default Post Location:" +msgstr "Standaardlocatie bericht:" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Database Name" +#: ../../Zotlabs/Module/Settings.php:1043 +msgid "Geographical location to display on your posts" +msgstr "Geografische locatie die bij het bericht moet worden vermeld" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "Database Type" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Use Browser Location:" +msgstr "Locatie van webbrowser gebruiken:" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "Hub administrator email address" +#: ../../Zotlabs/Module/Settings.php:1046 +msgid "Adult Content" +msgstr "Inhoud voor volwassenen" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Your account email address must match this in order to use the web admin panel." +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "Hub URL" +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Security and Privacy Settings" +msgstr "Veiligheids- en privacy-instellingen" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Please use SSL (https) URL if available." +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Please select a default timezone for your hub" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Hide my online presence" +msgstr "Verberg mijn aanwezigheid" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Hub settings" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Prevents displaying in your profile that you are online" +msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "Enable $Projectname advanced features?" +#: ../../Zotlabs/Module/Settings.php:1055 +msgid "Simple Privacy Settings:" +msgstr "Eenvoudige privacy-instellingen:" -#: ../../Zotlabs/Module/Setup.php:347 +#: ../../Zotlabs/Module/Settings.php:1056 msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Some advanced features, while useful - may be best suited for technically proficient audiences" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" + +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" + +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Private - default private, never open or public" +msgstr "Privé (standaard privé en nooit openbaar)" + +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Blocked - default blocked to/from everybody" +msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" + +#: ../../Zotlabs/Module/Settings.php:1061 +msgid "Allow others to tag your posts" +msgstr "Anderen toestaan om je berichten te taggen" -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." -msgstr "PHP version 5.5 or greater is required." +#: ../../Zotlabs/Module/Settings.php:1061 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" -msgstr "PHP version" +#: ../../Zotlabs/Module/Settings.php:1063 +msgid "Advanced Privacy Settings" +msgstr "Geavanceerde privacy-instellingen" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Could not find a command line version of PHP in the web server PATH." +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "Expire other channel content after this many days" +msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" -#: ../../Zotlabs/Module/Setup.php:405 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron." +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "0 or blank to use the website limit." +msgstr "0 of leeg om het standaard aantal dagen van deze hub te gebruiken." -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" -msgstr "PHP executable path" +#: ../../Zotlabs/Module/Settings.php:1065 +#, php-format +msgid "This website expires after %d days." +msgstr "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen." -#: ../../Zotlabs/Module/Setup.php:409 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Enter full path to php executable. You can leave this blank to continue the installation." +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "This website does not expire imported content." +msgstr "Deze hub laat de inhoud van andere kanalen niet verlopen." -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" -msgstr "Command line PHP" +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang." -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal connectieverzoeken per dag:" -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." -msgstr "This is required for message delivery to work." +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "May reduce spam activity" +msgstr "Kan eventuele spam verminderen" -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Settings.php:1067 +msgid "Default Post and Publish Permissions" +msgstr "Standaard permissies voor nieuwe berichten en publicaties" -#: ../../Zotlabs/Module/Setup.php:445 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once." +#: ../../Zotlabs/Module/Settings.php:1069 +msgid "Use my default audience setting for the type of object published" +msgstr "Gebruik mijn standaard privacy-instelling voor dit type publicatie" -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." -msgstr "You can adjust these settings in the servers php.ini." +#: ../../Zotlabs/Module/Settings.php:1072 +msgid "Channel permissions category:" +msgstr "Kanaaltype en -permissies:" -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" -msgstr "PHP upload limits" +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" -#: ../../Zotlabs/Module/Setup.php:475 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "Useful to reduce spamming" +msgstr "Kan eventuele spam verminderen" -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../Zotlabs/Module/Settings.php:1081 +msgid "Notification Settings" +msgstr "Notificatie-instellingen" -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" -msgstr "Generate encryption keys" +#: ../../Zotlabs/Module/Settings.php:1082 +msgid "By default post a status message when:" +msgstr "Plaats automatisch een bericht wanneer:" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" +#: ../../Zotlabs/Module/Settings.php:1083 +msgid "accepting a friend request" +msgstr "Een connectieverzoek wordt geaccepteerd" -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" +#: ../../Zotlabs/Module/Settings.php:1084 +msgid "joining a forum/community" +msgstr "Je lid wordt van een forum/groep" -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" +#: ../../Zotlabs/Module/Settings.php:1085 +msgid "making an interesting profile change" +msgstr "Er sprake is van een interessante profielwijziging" -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" -msgstr "mysqli or postgres PHP module" +#: ../../Zotlabs/Module/Settings.php:1086 +msgid "Send a notification email when:" +msgstr "Verzend een notificatie per e-mail wanneer:" -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" +#: ../../Zotlabs/Module/Settings.php:1087 +msgid "You receive a connection request" +msgstr "Je een connectieverzoek ontvangt" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "xml PHP module" -msgstr "xml PHP module" +#: ../../Zotlabs/Module/Settings.php:1088 +msgid "Your connections are confirmed" +msgstr "Jouw connecties zijn bevestigd" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" +#: ../../Zotlabs/Module/Settings.php:1089 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op jouw kanaal heeft geschreven" -#: ../../Zotlabs/Module/Setup.php:500 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" -#: ../../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: proc_open is required but is either not installed or has been disabled in php.ini" +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "You receive a friend suggestion" +msgstr "Je een kanaalvoorstel ontvangt" -#: ../../Zotlabs/Module/Setup.php:514 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: libCURL PHP module required but not installed." +#: ../../Zotlabs/Module/Settings.php:1093 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../Zotlabs/Module/Settings.php:1094 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je bent in een bericht aangestoten/gepord/etc." -#: ../../Zotlabs/Module/Setup.php:522 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: openssl PHP module required but not installed." +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Show visual notifications including:" +msgstr "Toon de volgende zichtbare notificaties:" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: mysqli or postgres PHP module required but neither are installed." +#: ../../Zotlabs/Module/Settings.php:1099 +msgid "Unseen grid activity" +msgstr "Niet bekeken grid-activiteit" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: mb_string PHP module required but not installed." +#: ../../Zotlabs/Module/Settings.php:1100 +msgid "Unseen channel activity" +msgstr "Niet bekeken kanaal-activiteit" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Error: xml PHP module required for DAV but not installed." +#: ../../Zotlabs/Module/Settings.php:1101 +msgid "Unseen private messages" +msgstr "Niet bekeken privéberichten" -#: ../../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 "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so." +#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "Recommended" +msgstr "Aanbevolen" -#: ../../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 "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can." +#: ../../Zotlabs/Module/Settings.php:1102 +msgid "Upcoming events" +msgstr "Aankomende gebeurtenissen" -#: ../../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 "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." +#: ../../Zotlabs/Module/Settings.php:1103 +msgid "Events today" +msgstr "Gebeurtenissen van vandaag" -#: ../../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 "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../Zotlabs/Module/Settings.php:1104 +msgid "Upcoming birthdays" +msgstr "Aankomende verjaardagen" -#: ../../Zotlabs/Module/Setup.php:558 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is writable" +#: ../../Zotlabs/Module/Settings.php:1104 +msgid "Not available in all themes" +msgstr "Niet in alle thema's beschikbaar" -#: ../../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 uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." +#: ../../Zotlabs/Module/Settings.php:1105 +msgid "System (personal) notifications" +msgstr "(Persoonlijke) systeemnotificaties" -#: ../../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 "In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder." +#: ../../Zotlabs/Module/Settings.php:1106 +msgid "System info messages" +msgstr "Systeemmededelingen" -#: ../../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 "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." +#: ../../Zotlabs/Module/Settings.php:1107 +msgid "System critical alerts" +msgstr "Kritische systeemwaarschuwingen" -#: ../../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: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "New connections" +msgstr "Nieuwe connecties" -#: ../../Zotlabs/Module/Setup.php:578 -#, php-format -msgid "%s is writable" -msgstr "%s is writable" +#: ../../Zotlabs/Module/Settings.php:1109 +msgid "System Registrations" +msgstr "Nieuwe accountregistraties op deze hub" -#: ../../Zotlabs/Module/Setup.php:594 +#: ../../Zotlabs/Module/Settings.php:1110 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 "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" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" -#: ../../Zotlabs/Module/Setup.php:598 -msgid "store is writable" -msgstr "store is writable" +#: ../../Zotlabs/Module/Settings.php:1112 +msgid "Notify me of events this many days in advance" +msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" -#: ../../Zotlabs/Module/Setup.php:631 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." +#: ../../Zotlabs/Module/Settings.php:1112 +msgid "Must be greater than 0" +msgstr "Moet hoger dan 0 zijn" -#: ../../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 "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" +#: ../../Zotlabs/Module/Settings.php:1114 +msgid "Advanced Account/Page Type Settings" +msgstr "Instellingen geavanceerd account/paginatype" -#: ../../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 "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." +#: ../../Zotlabs/Module/Settings.php:1115 +msgid "Change the behaviour of this account for special situations" +msgstr "Verander het gedrag van dit account voor speciale situaties" -#: ../../Zotlabs/Module/Setup.php:634 +#: ../../Zotlabs/Module/Settings.php:1118 msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" -#: ../../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 "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." +#: ../../Zotlabs/Module/Settings.php:1119 +msgid "Miscellaneous Settings" +msgstr "Diverse instellingen" -#: ../../Zotlabs/Module/Setup.php:636 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Providers are available that issue free certificates which are browser-valid." +#: ../../Zotlabs/Module/Settings.php:1120 +msgid "Default photo upload folder" +msgstr "Standaard fotoalbum voor uploads" -#: ../../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 "If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications." +#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1121 +msgid "%Y - current year, %m - current month" +msgstr "%Y - dit jaar, %m - deze maand" -#: ../../Zotlabs/Module/Setup.php:641 -msgid "SSL certificate validation" -msgstr "SSL certificate validation" +#: ../../Zotlabs/Module/Settings.php:1121 +msgid "Default file upload folder" +msgstr "Standaard bestandsmap voor uploads" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " +#: ../../Zotlabs/Module/Settings.php:1123 +msgid "Personal menu to display in your channel pages" +msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" -#: ../../Zotlabs/Module/Setup.php:650 -msgid "Url rewrite is working" -msgstr "Url rewrite is working" +#: ../../Zotlabs/Module/Settings.php:1125 +msgid "Remove this channel." +msgstr "Verwijder dit kanaal." -#: ../../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 "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." +#: ../../Zotlabs/Module/Settings.php:1126 +msgid "Firefox Share $Projectname provider" +msgstr "$Projectname-service voor Firefox Share" -#: ../../Zotlabs/Module/Setup.php:683 -msgid "Errors encountered creating database tables." -msgstr "Errors encountered creating database tables." +#: ../../Zotlabs/Module/Settings.php:1127 +msgid "Start calendar week on monday" +msgstr "Begin in de agenda de week op maandag" -#: ../../Zotlabs/Module/Setup.php:720 -msgid "

What next

" -msgstr "

What next

" +#: ../../Zotlabs/Module/Setup.php:179 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Hub - Setup" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:183 +msgid "Could not connect to database." +msgstr "Could not connect to database." + +#: ../../Zotlabs/Module/Setup.php:187 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Bestanden: met mij gedeeld" +#: ../../Zotlabs/Module/Setup.php:194 +msgid "Could not create table." +msgstr "Could not create table." -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NIEUW" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Your site database has been installed." +msgstr "Your hub database has been installed." -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Verwijder alle bestanden" +#: ../../Zotlabs/Module/Setup.php:203 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Verwijder dit bestand" +#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 +#: ../../Zotlabs/Module/Setup.php:721 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Please see the file \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Ding bijgewerkt" +#: ../../Zotlabs/Module/Setup.php:263 +msgid "System check" +msgstr "System check" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Opslaan van ding mislukt" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "Check again" +msgstr "Check again" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Ding toegevoegd" +#: ../../Zotlabs/Module/Setup.php:290 +msgid "Database connection" +msgstr "Database connection" -#: ../../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/Setup.php:291 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "In order to install $Projectname we need to know how to connect to your database." -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Ding weergeven" +#: ../../Zotlabs/Module/Setup.php:292 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Please contact your hosting provider or server administrator if you have questions about these settings." -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "Item niet gevonden" +#: ../../Zotlabs/Module/Setup.php:293 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "The database you specify below should already exist. If it does not, please create it before continuing." -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Ding bewerken" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Server Name" +msgstr "Database Server Name" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Kies een profiel" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Default is 127.0.0.1" +msgstr "Default is 127.0.0.1" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Plaats een bericht" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Port" +msgstr "Database Port" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Communication port number - use 0 for default" +msgstr "Communication port number - use 0 for default" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Naam van ding" +#: ../../Zotlabs/Module/Setup.php:299 +msgid "Database Login Name" +msgstr "Database Login Name" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" +#: ../../Zotlabs/Module/Setup.php:300 +msgid "Database Login Password" +msgstr "Database Login Password" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL voor foto van ding (optioneel)" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Name" +msgstr "Database Name" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Type" +msgstr "Database Type" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "Site administrator email address" +msgstr "Hub administrator email address" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Bron aangemaakt." +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Your account email address must match this in order to use the web admin panel." -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Bron aangemaakt." +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Website URL" +msgstr "Hub URL" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Please use SSL (https) URL if available." +msgstr "Please use SSL (https) URL if available." -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 -msgid "Channel Sources" -msgstr "Kanaalbronnen" +#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 +msgid "Please select a default timezone for your website" +msgstr "Please select a default timezone for your hub" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" +#: ../../Zotlabs/Module/Setup.php:333 +msgid "Site settings" +msgstr "Hub settings" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nieuwe bron" +#: ../../Zotlabs/Module/Setup.php:347 +msgid "Enable $Projectname advanced features?" +msgstr "Enable $Projectname advanced features?" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Module/Setup.php:347 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." +"Some advanced features, while useful - may be best suited for technically " +"proficient audiences" +msgstr "Some advanced features, while useful - may be best suited for technically proficient audiences" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importeer alleen inhoud met deze woorden (één per regel)" +#: ../../Zotlabs/Module/Setup.php:388 +msgid "PHP version 5.5 or greater is required." +msgstr "PHP version 5.5 or greater is required." -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Laat leeg om alle openbare inhoud te importeren" +#: ../../Zotlabs/Module/Setup.php:389 +msgid "PHP version" +msgstr "PHP version" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Kanaalnaam" +#: ../../Zotlabs/Module/Setup.php:404 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Could not find a command line version of PHP in the web server PATH." -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Setup.php:405 msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "De volgende categorieën aan berichten toevoegen die uit deze bron zijn geïmporteerd (door komma's gescheiden)" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron." -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Bron niet gevonden" +#: ../../Zotlabs/Module/Setup.php:409 +msgid "PHP executable path" +msgstr "PHP executable path" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Bron bewerken" +#: ../../Zotlabs/Module/Setup.php:409 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Enter full path to php executable. You can leave this blank to continue the installation." -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Bron verwijderen" +#: ../../Zotlabs/Module/Setup.php:414 +msgid "Command line PHP" +msgstr "Command line PHP" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Bron verwijderd" +#: ../../Zotlabs/Module/Setup.php:423 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Verwijderen bron mislukt." +#: ../../Zotlabs/Module/Setup.php:424 +msgid "This is required for message delivery to work." +msgstr "This is required for message delivery to work." -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s volgt het %3$s van %2$s" +#: ../../Zotlabs/Module/Setup.php:427 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Subthread.php:120 +#: ../../Zotlabs/Module/Setup.php:445 #, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s volgt het %3$s van %2$s niet meer" - -#: ../../Zotlabs/Module/Suggest.php:39 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once." -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" +#: ../../Zotlabs/Module/Setup.php:450 +msgid "You can adjust these settings in the servers php.ini." +msgstr "You can adjust these settings in the servers php.ini." -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "bericht" +#: ../../Zotlabs/Module/Setup.php:452 +msgid "PHP upload limits" +msgstr "PHP upload limits" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 -msgid "comment" -msgstr "reactie" +#: ../../Zotlabs/Module/Setup.php:475 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" +#: ../../Zotlabs/Module/Setup.php:476 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Tag verwijderd" +#: ../../Zotlabs/Module/Setup.php:479 +msgid "Generate encryption keys" +msgstr "Generate encryption keys" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Verwijder item-tag" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Kies een tag om te verwijderen" +#: ../../Zotlabs/Module/Setup.php:492 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Webpagina's" +#: ../../Zotlabs/Module/Setup.php:493 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Acties" +#: ../../Zotlabs/Module/Setup.php:494 +msgid "mysqli or postgres PHP module" +msgstr "mysqli or postgres PHP module" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Paginalink" +#: ../../Zotlabs/Module/Setup.php:495 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Paginatitel" +#: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "mcrypt PHP module" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "Niet gevonden" +#: ../../Zotlabs/Module/Setup.php:497 +msgid "xml PHP module" +msgstr "xml PHP module" + +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" -#: ../../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/Setup.php:501 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: Apache webserver mod-rewrite module is required but not installed." -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "Zandbak" +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Setup.php:507 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "\"# Wiki Sandbox\\n\\nWat er hier onder **edit** en **preview** staat *wordt niet opgeslagen*.\"" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Revisies vergelijken" +#: ../../Zotlabs/Module/Setup.php:515 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: libCURL PHP module required but not installed." -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Ongedaan maken" +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: GD graphics PHP module with JPEG support required but not installed." -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Vul de naam in van jouw nieuwe wiki:" +#: ../../Zotlabs/Module/Setup.php:523 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: openssl PHP module required but not installed." -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Vul de naam in van de nieuwe pagina:" +#: ../../Zotlabs/Module/Setup.php:527 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: mysqli or postgres PHP module required but neither are installed." -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Vul de nieuwe naam in:" +#: ../../Zotlabs/Module/Setup.php:531 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: mb_string PHP module required but not installed." -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Afbeelding uit een fotoalbum invoegen" +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Error: mcrypt PHP module required but not installed." -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "Afbeelding uit jouw albums invoegen" +#: ../../Zotlabs/Module/Setup.php:539 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Error: xml PHP module required for DAV but not installed." -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "OK" +#: ../../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 "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so." -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "Kies afbeeldingen om in te voegen" +#: ../../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 "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can." -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Kies een album" +#: ../../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 "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." -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Kies een ander album..." +#: ../../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 "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "Fout met ophalen albumlijst" +#: ../../Zotlabs/Module/Setup.php:563 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is writable" -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "Fout met ophalen fotolink" +#: ../../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 "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Fout met ophalen album" +#: ../../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 "In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder." -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Geen connecties." +#: ../../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 "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Setup.php:580 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bezoek het profiel van %s [%s]" +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" -msgstr "Connecties weergeven" +#: ../../Zotlabs/Module/Setup.php:583 +#, php-format +msgid "%s is writable" +msgstr "%s is writable" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Bron van item" +#: ../../Zotlabs/Module/Setup.php:599 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to" +" have write access to the store directory under the Red top level folder" +msgstr "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Geef toestemming voor applicatiekoppeling" +#: ../../Zotlabs/Module/Setup.php:603 +msgid "store is writable" +msgstr "store is writable" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" +#: ../../Zotlabs/Module/Setup.php:636 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen gaan." +#: ../../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 "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" -#: ../../Zotlabs/Module/Api.php:87 +#: ../../Zotlabs/Module/Setup.php:638 msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Xchan opzoeken" +#: ../../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 "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Zoek een xchan (of webbie) die begint met:" +#: ../../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 "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." + +#: ../../Zotlabs/Module/Setup.php:641 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Providers are available that issue free certificates which are browser-valid." -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "Naam chatkanaal ontbreekt" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "SSL certificate validation" +msgstr "SSL certificate validation" -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "Naam chatkanaal bestaat al" +#: ../../Zotlabs/Module/Setup.php:649 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "Ongeldige omschrijving chatkanaal" +#: ../../Zotlabs/Module/Setup.php:652 +msgid "Url rewrite is working" +msgstr "Url rewrite is working" -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "Chatkanaal niet gevonden" +#: ../../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 "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "Chatkanaal is vol" +#: ../../Zotlabs/Module/Setup.php:685 +msgid "Errors encountered creating database tables." +msgstr "Errors encountered creating database tables." -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 -msgid "$Projectname Notification" -msgstr "$Projectname-notificatie" +#: ../../Zotlabs/Module/Setup.php:719 +msgid "

What next

" +msgstr "

What next

" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 -msgid "$projectname" -msgstr "$projectname" +#: ../../Zotlabs/Module/Setup.php:720 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 -msgid "Thank You," -msgstr "Bedankt," +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Bestanden: met mij gedeeld" -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 -#, php-format -msgid "%s Administrator" -msgstr "Beheerder %s" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NIEUW" -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Verwijder alle bestanden" -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Verwijder dit bestand" -#: ../../Zotlabs/Lib/Enotify.php:106 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." +msgid "Version %s" +msgstr "Versie %s" -#: ../../Zotlabs/Lib/Enotify.php:107 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s zond jou %2$s." +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plugins en apps:" -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" -msgstr "een privébericht" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plugins en apps" -#: ../../Zotlabs/Lib/Enotify.php:108 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bezoek %s om je privéberichten te bekijken en/of er op te reageren." +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." -#: ../../Zotlabs/Lib/Enotify.php:164 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %4$s[/zrl]" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Tag: " -#: ../../Zotlabs/Lib/Enotify.php:172 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %5$s van %4$s[/zrl]" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Meest recente achtergrond-fetch:" -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]jouw %4$s[/zrl]" +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Gemiddelde systeembelasting is nu:" -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:Notificatie] Reactie op conversatie #%1$d door %2$s" +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" -#: ../../Zotlabs/Lib/Enotify.php:193 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s gaf een reactie op een bericht/conversatie die jij volgt." +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bezoek hubzilla.org " -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bezoek %s om de conversatie te bekijken en/of er op te reageren." +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "$projectname-issues" -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s heeft om %3$s een bericht op jouw kanaal geplaatst" +#: ../../Zotlabs/Module/Siteinfo.php:80 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" -#: ../../Zotlabs/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s heeft een bericht op [zrl=%3$s]jouw kanaal[/zrl] geplaatst" +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Hubbeheerders: " -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla:Notificatie] %s heeft je genoemd" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." -#: ../../Zotlabs/Lib/Enotify.php:231 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s noemde jou op %3$s" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Bron aangemaakt." -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]noemde jou[/zrl]." +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Bron aangemaakt." -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla:Notificatie] %1$s heeft je aangestoten" +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Lib/Enotify.php:245 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s heeft je aangestoten op %3$s" +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:71 +msgid "Channel Sources" +msgstr "Kanaalbronnen" -#: ../../Zotlabs/Lib/Enotify.php:246 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]heeft je aangestoten[/zrl]." +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" -#: ../../Zotlabs/Lib/Enotify.php:262 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla:Notificatie] %s heeft jouw bericht getagd" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nieuwe bron" -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s heeft jouw bericht om %3$s getagd" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." -#: ../../Zotlabs/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s heeft [zrl=%3$s]jouw bericht[/zrl] getagd" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importeer alleen inhoud met deze woorden (één per regel)" -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla:Notificatie] Connectieverzoek ontvangen" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Laat leeg om alle openbare inhoud te importeren" -#: ../../Zotlabs/Lib/Enotify.php:277 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, je hebt een nieuw connectieverzoek ontvangen van '%2$s' op %3$s" +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Kanaalnaam" -#: ../../Zotlabs/Lib/Enotify.php:278 -#, php-format +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, je hebt een [zrl=%2$s]nieuw connectieverzoek[/zrl] ontvangen van %3$s." - -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Je kan het profiel bekijken op %s" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "De volgende categorieën aan berichten toevoegen die uit deze bron zijn geïmporteerd (door komma's gescheiden)" -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bezoek %s om het connectieverzoek te accepteren of af te wijzen." +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Bron niet gevonden" -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Bron bewerken" -#: ../../Zotlabs/Lib/Enotify.php:292 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, je hebt een kanaalvoorstel ontvangen van '%2$s' om %3$s" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Bron verwijderen" -#: ../../Zotlabs/Lib/Enotify.php:293 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, je hebt [zrl=%2$s]een kanaalvoorstel[/zrl] ontvangen voor %3$s van %4$s." +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Bron verwijderd" -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "Naam:" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Verwijderen bron mislukt." -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "Foto:" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s volgt het %3$s van %2$s" -#: ../../Zotlabs/Lib/Enotify.php:303 +#: ../../Zotlabs/Module/Subthread.php:120 #, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s volgt het %3$s van %2$s niet meer" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:Notificatie]" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "maakte een nieuw bericht aan" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" -msgstr "gaf een reactie op een bericht van %s" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +msgid "post" +msgstr "bericht" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Hubbeheerder" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "reactie" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Bugrapport" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Bladwijzers bekijken" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Tag verwijderd" -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Mijn chatkanalen" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Verwijder item-tag" -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Firefox Share" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Kies een tag om te verwijderen" -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnose op afstand" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Ding bijgewerkt" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Kanalen voorstellen" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Inloggen" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Ding toegevoegd" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Grid" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Jouw kanaal" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Ding weergeven" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Agenda" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Item niet gevonden" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Kanalengids" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Ding bewerken" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Privéberichten" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Kies een profiel" -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chatten" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Plaats een bericht" -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Onderzoeken" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Voorstellen" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Willekeurig kanaal" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Uitnodigen " +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "URL voor foto van ding (optioneel)" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Extra functies" +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Bericht" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanaal exporteren" -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Aanschaffen" +#: ../../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 "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Niet voor iedereen zichtbaar" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Inhoud exporteren" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "Kies" +#: ../../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 "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "In map opslaan" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporteer jouw berichten uit een bepaald jaar." -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Aanwezig" +#: ../../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 "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak." -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "Niet aanwezig" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld dit jaar te selecteren. " -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Mogelijk aanwezig" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren." -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Eens" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen." -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "Oneens" +#: ../../Zotlabs/Module/Viewconnections.php:62 +msgid "No connections." +msgstr "Geen connecties." -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Onthouding" +#: ../../Zotlabs/Module/Viewconnections.php:75 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Bezoek het profiel van %s [%s]" -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Ster toevoegen" +#: ../../Zotlabs/Module/Viewconnections.php:104 +msgid "View Connections" +msgstr "Connecties weergeven" -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Ster verwijderen" +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Bron van item" -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Ster toevoegen of verwijderen" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Webpagina's" -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "met ster" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Acties" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Berichtkenmerk gevalideerd" +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Paginalink" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Berichtkenmerk onjuist" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Paginatitel" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Tag toevoegen" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Xchan opzoeken" -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 -msgid "like" -msgstr "vind dit leuk" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Zoek een xchan (of webbie) die begint met:" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "vind dit niet leuk" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Hubbeheerder" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "Share This" -msgstr "Delen" +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "Bugrapport" -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "share" -msgstr "delen" +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "Bladwijzers bekijken" -#: ../../Zotlabs/Lib/ThreadItem.php:275 -msgid "Delivery Report" -msgstr "Afleveringsrapport" +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "Mijn chatkanalen" -#: ../../Zotlabs/Lib/ThreadItem.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties weergeven" +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "Firefox Share" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 -#, php-format -msgid "View %s's profile - %s" -msgstr "Profiel van %s bekijken - %s" +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "Diagnose op afstand" -#: ../../Zotlabs/Lib/ThreadItem.php:326 -msgid "to" -msgstr "aan" +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Kanalen voorstellen" -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "via" -msgstr "via" +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Inloggen" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "Wall-to-Wall" -msgstr "Kanaal-naar-kanaal" +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Grid" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via Wall-To-Wall:" -msgstr "via kanaal-naar-kanaal" +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Jouw kanaal" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 -#, php-format -msgid "from %s" -msgstr "van %s" +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Agenda" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" -msgstr "laatst bewerkt: %s" +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Kanalengids" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" -msgstr "Verloopt: %s" +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Privéberichten" -#: ../../Zotlabs/Lib/ThreadItem.php:370 -msgid "Save Bookmarks" -msgstr "Bladwijzers opslaan" +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chatten" -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Add to Calendar" -msgstr "Aan agenda toevoegen" +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Onderzoeken" -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Mark all seen" -msgstr "Markeer alles als bekeken" +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Voorstellen" -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s alle" +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Willekeurig kanaal" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 -msgid "Bold" -msgstr "Vet" +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Uitnodigen " -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 -msgid "Italic" -msgstr "Cursief" +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Extra functies" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 -msgid "Underline" -msgstr "Onderstrepen" +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Bericht" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 -msgid "Quote" -msgstr "Citeren" +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Aanschaffen" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 -msgid "Code" -msgstr "Broncode" +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" +msgstr "Naam chatkanaal ontbreekt" -#: ../../Zotlabs/Lib/ThreadItem.php:716 -msgid "Image" -msgstr "Afbeelding" +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" +msgstr "Naam chatkanaal bestaat al" -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Insert Link" -msgstr "Link invoegen" +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." +msgstr "Ongeldige omschrijving chatkanaal" -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Video" -msgstr "Video" +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." +msgstr "Chatkanaal niet gevonden" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" +msgstr "Chatkanaal is vol" -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Alleen ik" +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +msgid "$Projectname Notification" +msgstr "$Projectname-notificatie" -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Openbaar" +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +msgid "$projectname" +msgstr "$projectname" -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Iedereen in het $Projectname-netwerk" +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +msgid "Thank You," +msgstr "Bedankt," -#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format -msgid "Any account on %s" -msgstr "Iedereen op %s" +msgid "%s Administrator" +msgstr "Beheerder %s" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Al mijn geaccepteerde connecties" +#: ../../Zotlabs/Lib/Enotify.php:100 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Alleen connecties die uitdrukkelijk door jou zijn toegestaan" +#: ../../Zotlabs/Lib/Enotify.php:104 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s" -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)" +#: ../../Zotlabs/Lib/Enotify.php:106 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "Al mijn geaccepteerde en nog niet geaccepteerde connecties" +#: ../../Zotlabs/Lib/Enotify.php:107 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s zond jou %2$s." -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken" +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" +msgstr "een privébericht" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken" +#: ../../Zotlabs/Lib/Enotify.php:108 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bezoek %s om je privéberichten te bekijken en/of er op te reageren." -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken" +#: ../../Zotlabs/Lib/Enotify.php:164 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %4$s[/zrl]" -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken" +#: ../../Zotlabs/Lib/Enotify.php:172 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %5$s van %4$s[/zrl]" -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken" +#: ../../Zotlabs/Lib/Enotify.php:181 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]jouw %4$s[/zrl]" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Geen gebruikersnaam in het importbestand gevonden." +#: ../../Zotlabs/Lib/Enotify.php:192 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla:Notificatie] Reactie op conversatie #%1$d door %2$s" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." +#: ../../Zotlabs/Lib/Enotify.php:193 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s gaf een reactie op een bericht/conversatie die jij volgt." + +#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 +#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 +#: ../../Zotlabs/Lib/Enotify.php:269 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bezoek %s om de conversatie te bekijken en/of er op te reageren." -#: ../../include/dba/dba_driver.php:171 +#: ../../Zotlabs/Lib/Enotify.php:202 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" -#: ../../include/photos.php:114 +#: ../../Zotlabs/Lib/Enotify.php:204 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s heeft om %3$s een bericht op jouw kanaal geplaatst" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" +#: ../../Zotlabs/Lib/Enotify.php:206 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s heeft een bericht op [zrl=%3$s]jouw kanaal[/zrl] geplaatst" -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla:Notificatie] %s heeft je genoemd" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "een nieuwe foto" +#: ../../Zotlabs/Lib/Enotify.php:231 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s noemde jou op %3$s" -#: ../../include/photos.php:303 +#: ../../Zotlabs/Lib/Enotify.php:232 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s plaatste %2$s op %3$s" +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]noemde jou[/zrl]." -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Fotoalbums" +#: ../../Zotlabs/Lib/Enotify.php:244 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla:Notificatie] %1$s heeft je aangestoten" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" +#: ../../Zotlabs/Lib/Enotify.php:245 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s heeft je aangestoten op %3$s" -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Uitloggen" +#: ../../Zotlabs/Lib/Enotify.php:246 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]heeft je aangestoten[/zrl]." -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Beëindig deze sessie" +#: ../../Zotlabs/Lib/Enotify.php:262 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla:Notificatie] %s heeft jouw bericht getagd" -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Home" +#: ../../Zotlabs/Lib/Enotify.php:263 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s heeft jouw bericht om %3$s getagd" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Jouw kanaal" +#: ../../Zotlabs/Lib/Enotify.php:264 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s heeft [zrl=%3$s]jouw bericht[/zrl] getagd" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Jouw profielpagina" +#: ../../Zotlabs/Lib/Enotify.php:276 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla:Notificatie] Connectieverzoek ontvangen" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" +#: ../../Zotlabs/Lib/Enotify.php:277 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, je hebt een nieuw connectieverzoek ontvangen van '%2$s' op %3$s" -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Profiel bewerken" +#: ../../Zotlabs/Lib/Enotify.php:278 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, je hebt een [zrl=%2$s]nieuw connectieverzoek[/zrl] ontvangen van %3$s." -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" +#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Je kan het profiel bekijken op %s" -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Jouw foto's" +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bezoek %s om het connectieverzoek te accepteren of af te wijzen." -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Jouw bestanden" +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, je hebt een kanaalvoorstel ontvangen van '%2$s' om %3$s" -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Bladwijzers" +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, je hebt [zrl=%2$s]een kanaalvoorstel[/zrl] ontvangen voor %3$s van %4$s." -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" +msgstr "Naam:" -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Jouw webpagina's" +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" +msgstr "Foto:" + +#: ../../Zotlabs/Lib/Enotify.php:303 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "Jouw wiki" +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Notificatie]" -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Inloggen" +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" +msgstr "maakte een nieuw bericht aan" -#: ../../include/nav.php:129 +#: ../../Zotlabs/Lib/Enotify.php:668 #, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Authenticatie op afstand" +msgid "commented on %s's post" +msgstr "gaf een reactie op een bericht van %s" -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +msgid "Private Message" +msgstr "Niet voor iedereen zichtbaar" -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Homepage" +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +msgid "Select" +msgstr "Kies" -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Maak een account aan" +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "In map opslaan" -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Hulp en documentatie" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Aanwezig" -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Apps" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "Niet aanwezig" -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Mogelijk aanwezig" -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Kanalengids" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "Eens" -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Jouw grid" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "Oneens" -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Markeer alle gridnotificaties als bekeken" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "Onthouding" -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Jouw kanaal" +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" +msgstr "Ster toevoegen" -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" +msgstr "Ster verwijderen" -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Notificaties" +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" +msgstr "Ster toevoegen of verwijderen" -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notificaties" +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" +msgstr "met ster" -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +msgid "Message signature validated" +msgstr "Berichtkenmerk gevalideerd" -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Privéberichten" +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +msgid "Message signature incorrect" +msgstr "Berichtkenmerk onjuist" -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" +msgstr "Tag toevoegen" -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" +#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +msgid "like" +msgstr "vind dit leuk" -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Postvak IN" +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "vind dit niet leuk" -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Postvak UIT" +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "Share This" +msgstr "Delen" -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nieuw bericht" +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "share" +msgstr "delen" -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Agenda" +#: ../../Zotlabs/Lib/ThreadItem.php:275 +msgid "Delivery Report" +msgstr "Afleveringsrapport" -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" +#: ../../Zotlabs/Lib/ThreadItem.php:293 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties weergeven" -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" +#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#, php-format +msgid "View %s's profile - %s" +msgstr "Profiel van %s bekijken - %s" -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" +#: ../../Zotlabs/Lib/ThreadItem.php:326 +msgid "to" +msgstr "aan" -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "via" +msgstr "via" -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Beheer" +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "Wall-to-Wall" +msgstr "Kanaal-naar-kanaal" -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "via Wall-To-Wall:" +msgstr "via kanaal-naar-kanaal" -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Aan het laden..." +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#, php-format +msgid "from %s" +msgstr "van %s" -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@kanaal, #tag, inhoud, ?hulp" +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#, php-format +msgid "last edited: %s" +msgstr "laatst bewerkt: %s" -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Wachten aub..." +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#, php-format +msgid "Expires: %s" +msgstr "Verloopt: %s" -#: ../../include/network.php:704 -msgid "view full size" -msgstr "volledige grootte tonen" +#: ../../Zotlabs/Lib/ThreadItem.php:370 +msgid "Save Bookmarks" +msgstr "Bladwijzers opslaan" -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Beheerder" +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Add to Calendar" +msgstr "Aan agenda toevoegen" -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Geen onderwerp" +#: ../../Zotlabs/Lib/ThreadItem.php:380 +msgid "Mark all seen" +msgstr "Markeer alles als bekeken" -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" +#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] alle" -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +msgid "Bold" +msgstr "Vet" -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU social" +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +msgid "Italic" +msgstr "Cursief" -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +msgid "Underline" +msgstr "Onderstrepen" -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +msgid "Quote" +msgstr "Citeren" -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +msgid "Code" +msgstr "Broncode" -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" +#: ../../Zotlabs/Lib/ThreadItem.php:716 +msgid "Image" +msgstr "Afbeelding" -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Insert Link" +msgstr "Link invoegen" -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Video" +msgstr "Video" -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Geen gebruikersnaam in het importbestand gevonden." -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nieuwe pagina" +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titel" +#: ../../include/dba/dba_driver.php:171 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 @@ -7439,1412 +6800,1582 @@ msgstr "vindt dit leuk" msgid "dislikes" msgstr "vindt dit niet leuk" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" +#: ../../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 "Start:" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Einde:" + +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." + +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Niet aangegeven" + +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Actie vereist" + +#: ../../include/event.php:1014 +msgid "Completed" +msgstr "Voltooid" + +#: ../../include/event.php:1015 +msgid "In Process" +msgstr "In behandeling" + +#: ../../include/event.php:1016 +msgid "Cancelled" +msgstr "Geannuleerd" + +#: ../../include/import.php:29 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." + +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." + +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Onbekend)" + +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." + +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." + +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." + +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." + +#: ../../include/items.php:1144 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." + +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." + +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Voor alle geaccepteerde connecties zichtbaar." + +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." + +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "Privacygroep is leeg" + +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Privacygroep: %s" + +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Connectie niet gevonden." + +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "profielfoto" + +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." + +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[geen onderwerp]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." + +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." + +#: ../../include/text.php:428 +msgid "prev" +msgstr "vorige" + +#: ../../include/text.php:430 +msgid "first" +msgstr "eerste" + +#: ../../include/text.php:459 +msgid "last" +msgstr "laatste" + +#: ../../include/text.php:462 +msgid "next" +msgstr "volgende" + +#: ../../include/text.php:472 +msgid "older" +msgstr "ouder" + +#: ../../include/text.php:474 +msgid "newer" +msgstr "nieuwer" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "Geen connecties" + +#: ../../include/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "Toon alle %s connecties" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "aanstoten" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "aangestoten" -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Ontbrekende naam" +#: ../../include/text.php:1039 +msgid "ping" +msgstr "ping" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Naam te lang" +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "gepingd" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Geen account-identificator" +#: ../../include/text.php:1040 +msgid "prod" +msgstr "por" -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Bijnaam is verplicht" +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "gepord" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Deze naam is gereserveerd. Kies een andere." +#: ../../include/text.php:1041 +msgid "slap" +msgstr "slaan" -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "sloeg" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Niet in staat om aangemaakte identiteit te vinden" +#: ../../include/text.php:1042 +msgid "finger" +msgstr "finger" -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Standaardprofiel" +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "gefingerd" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Opgevraagd kanaal is niet beschikbaar." +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "afpoeieren" -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Nieuw profiel aanmaken" +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "afgepoeierd" -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" +#: ../../include/text.php:1055 +msgid "happy" +msgstr "gelukkig" -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Geslacht:" +#: ../../include/text.php:1056 +msgid "sad" +msgstr "bedroefd" -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Status:" +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "mellow" -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Homepagina:" +#: ../../include/text.php:1058 +msgid "tired" +msgstr "moe" -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Nu online" +#: ../../include/text.php:1059 +msgid "perky" +msgstr "parmantig" -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Vind dit kanaal leuk" +#: ../../include/text.php:1060 +msgid "angry" +msgstr "boos" -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "F j Y" +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "verbijsterd" -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "F j" +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "verward" -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Geboortedatum:" +#: ../../include/text.php:1063 +msgid "interested" +msgstr "geïnteresseerd" -#: ../../include/channel.php:1232 -#, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "verbitterd" -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Seksuele voorkeur:" +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "vrolijk" -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Tags:" +#: ../../include/text.php:1066 +msgid "alive" +msgstr "levendig" -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Politieke overtuigingen:" +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "geërgerd" -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religie:" +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "bezorgd" -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Hobby's/interesses:" +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "humeurig" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Houdt van:" +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "verontrust" -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Houdt niet van:" +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "gefrustreerd " -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "gedeprimeerd" -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Mijn andere kanalen" +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "gemotiveerd" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Muzikale interesses:" +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "ontspannen" -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "verrast" -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Televisie:" +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "maandag" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Films/dansen/cultuur/vermaak:" +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "dinsdag" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Liefde/romantiek:" +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "woensdag" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Werk/beroep:" +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "donderdag" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "School/opleiding:" +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "vrijdag" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Vind dit ding leuk" +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "zaterdag" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nieuw venster" +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "zondag" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Open de geselecteerde locatie in een ander venster of tab" +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "januari" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Account '%s' verwijderd" +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "februari" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s is nu met %2$s verbonden" +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "maart" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s heeft %2$s aangestoten" +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "april" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "aangestoten" +#: ../../include/text.php:1261 +msgid "May" +msgstr "mei" -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "juni" -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Categorieën:" +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "juli" -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Bewaard onder:" +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "augustus" -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "In context bekijken" +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "september" -#: ../../include/conversation.php:850 -msgid "remove" -msgstr "verwijderen" +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "oktober" -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" -msgstr "Verwijder de geselecteerde items" +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "november" -#: ../../include/conversation.php:951 -msgid "View Source" -msgstr "Bron weergeven" +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "december" -#: ../../include/conversation.php:952 -msgid "Follow Thread" -msgstr "Conversatie volgen" +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Onbekende bijlage" -#: ../../include/conversation.php:953 -msgid "Unfollow Thread" -msgstr "Conversatie niet meer volgen" +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "onbekend" -#: ../../include/conversation.php:958 -msgid "Activity/Posts" -msgstr "Activiteit/berichten connectie" +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "categorie verwijderen" -#: ../../include/conversation.php:960 -msgid "Edit Connection" -msgstr "Connectie bewerken" +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "uit map verwijderen" -#: ../../include/conversation.php:961 -msgid "Message" -msgstr "Bericht" +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "standaard" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Pagina-lay-out" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." +#: ../../include/text.php:1761 +msgid "You can create your own with the layouts tool" +msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d persoon vindt dit leuk." -msgstr[1] "%2$d personen vinden dit leuk." +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Opmaaktype pagina" -#: ../../include/conversation.php:1084 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d persoon vindt dit niet leuk." -msgstr[1] "%2$d personen vinden dit niet leuk." +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Kies een andere taal" -#: ../../include/conversation.php:1090 -msgid "and" -msgstr "en" +#: ../../include/text.php:1953 +msgid "activity" +msgstr "activiteit" -#: ../../include/conversation.php:1093 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", en %d ander persoon" -msgstr[1] ", en %d andere personen" +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Ontwerp-hulpmiddelen" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s like this." -msgstr "%s vinden dit leuk." +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Pagina's" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s don't like this." -msgstr "%s vinden dit niet leuk." +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Systeem" -#: ../../include/conversation.php:1133 -msgid "Set your location" -msgstr "Locatie instellen" +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nieuwe app" -#: ../../include/conversation.php:1134 -msgid "Clear browser location" -msgstr "Locatie van webbrowser wissen" +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Voorgestelde kanalen" -#: ../../include/conversation.php:1182 -msgid "Tag term:" -msgstr "Tag:" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Meer..." -#: ../../include/conversation.php:1183 -msgid "Where are you right now?" -msgstr "Waar bevind je je op dit moment?" +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." -#: ../../include/conversation.php:1221 -msgid "Page link name" -msgstr "Linknaam pagina" +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Nieuwe connectie toevoegen" -#: ../../include/conversation.php:1224 -msgid "Post as" -msgstr "Bericht plaatsen als" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Vul kanaaladres in" -#: ../../include/conversation.php:1238 -msgid "Toggle voting" -msgstr "Peiling in- of uitschakelen" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Voorbeelden: bob@example.com, http://example.com/barbara" -#: ../../include/conversation.php:1246 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Aantekeningen" -#: ../../include/conversation.php:1269 -msgid "Set publish date" -msgstr "Publicatiedatum instellen" +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Verwijder zoekterm" -#: ../../include/conversation.php:1518 -msgid "Discover" -msgstr "Ontdekken" +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" -#: ../../include/conversation.php:1521 -msgid "Imported public streams" -msgstr "Openbare streams importeren" +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "toevoegen" -#: ../../include/conversation.php:1526 -msgid "Commented Order" -msgstr "Nieuwe reacties bovenaan" +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Bewaarde mappen" -#: ../../include/conversation.php:1529 -msgid "Sort by Comment Date" -msgstr "Berichten met nieuwe reacties bovenaan" +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Alles" -#: ../../include/conversation.php:1533 -msgid "Posted Order" -msgstr "Nieuwe berichten bovenaan" +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archieven" -#: ../../include/conversation.php:1536 -msgid "Sort by Post Date" -msgstr "Nieuwe berichten bovenaan" +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Vernieuwen" -#: ../../include/conversation.php:1544 -msgid "Posts that mention or involve you" -msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Account" -#: ../../include/conversation.php:1553 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Kanaal" -#: ../../include/conversation.php:1559 -msgid "Starred" -msgstr "Met ster" +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Extra functies" -#: ../../include/conversation.php:1562 -msgid "Favourite Posts" -msgstr "Favoriete berichten" +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Plugin-instellingen" -#: ../../include/conversation.php:1569 -msgid "Spam" -msgstr "Spam" +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Weergave" -#: ../../include/conversation.php:1572 -msgid "Posts flagged as SPAM" -msgstr "Berichten gemarkeerd als SPAM" +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Locaties beheren" -#: ../../include/conversation.php:1629 -msgid "Status Messages and Posts" -msgstr "Berichten in dit kanaal" +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Kanaal exporteren" -#: ../../include/conversation.php:1638 -msgid "About" -msgstr "Over" +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Verbonden applicaties" -#: ../../include/conversation.php:1641 -msgid "Profile Details" -msgstr "Profiel" +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Instellingen premiumkanaal" -#: ../../include/conversation.php:1657 -msgid "Files and Storage" -msgstr "Bestanden en opslagruimte" +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Privéberichten" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Chatkanalen" +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Gecombineerd postvak" -#: ../../include/conversation.php:1693 -msgid "Saved Bookmarks" -msgstr "Opgeslagen bladwijzers" +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Postvak IN" -#: ../../include/conversation.php:1703 -msgid "Manage Webpages" -msgstr "Webpagina's beheren" +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Postvak UIT" -#: ../../include/conversation.php:1768 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "aanwezig" -msgstr[1] "aanwezig" +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nieuw bericht" -#: ../../include/conversation.php:1771 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "niet aanwezig" -msgstr[1] "niet aanwezig" +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversaties" -#: ../../include/conversation.php:1774 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "nog niet beslist" -msgstr[1] "nog niet beslist" +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Ontvangen berichten" -#: ../../include/conversation.php:1777 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "eens" -msgstr[1] "eens" +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Verzonden berichten" -#: ../../include/conversation.php:1780 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "oneens" -msgstr[1] "oneens" +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Geen berichten" -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "onthouding" -msgstr[1] "onthoudingen" +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Verwijder conversatie" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Agenda-menu" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Dag tonen" -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Regelmatig" +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Week tonen" -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Elk uur" +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Maand tonen" -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Twee keer per dag" +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Agenda-hulpmiddelen" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Dagelijks" +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Exporteren" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Wekelijks" +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importeren" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Maandelijks" +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Chatkanalen" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Momenteel man" +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Overzicht" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Momenteel vrouw" +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Chatleden" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Voornamelijk man" +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Bladwijzers van chatkanalen" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Voornamelijk vrouw" +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Voorgestelde chatkanalen" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgender" +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/afbeelding" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Interseksueel" +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Klik voor meer" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transseksueel" +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Beoordelingen" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermafrodiet" +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Beoordeel mij" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Genderneutraal" +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Bekijk beoordelingen" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "Niet gespecificeerd" +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Forums" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Nog niet beslist" +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Taken" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Mannen" +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Documentatie" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Vrouwen" +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Project- en hub-informatie" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Homoseksueel" +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Voor leden" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbisch" +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Voor beheerders" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Geen voorkeur" +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Voor ontwikkelaars" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Biseksueel" +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "Accounts die op goedkeuring wachten" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autoseksueel" +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Inspecteer berichtenwachtrij" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Seksuele onthouding" +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Database-updates" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Maagd" +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Beheer" -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Afwijkend" +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Plugin-opties" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetisj" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Veel" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Aseksueel" +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Alleen" +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Eenzaam" +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Beschikbaar" +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Niet beschikbaar" +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Heeft een oogje op iemand" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Bladwijzers van %1$s" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Smoorverliefd" +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Aan het daten" +#: ../../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 "Afbeelding/foto" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Ontrouw" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Seksverslaafd" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installeer %s-element: " -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Vriendschap plus" +#: ../../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 "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Ongebonden/vluchtig" +#: ../../include/bbcode.php:254 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schreef het volgende %2$s %3$s" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Verloofd" +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Getrouwd" +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "spoiler" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Denkbeeldig getrouwd" +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Deze tekst wordt per persoon anders weergeven." -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partners" +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 schreef:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Samenwonend" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opties kanalengids" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Common-law-huwelijk" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Veilig zoeken" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Gelukkig" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Alleen openbare forums" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Niet op zoek" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Alleen deze hub" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Swinger" +#: ../../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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Verraden" +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Uitloggen" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Uit elkaar" +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Beëindig deze sessie" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Onstabiel" +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Jouw kanaal" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Gescheiden" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Jouw profielpagina" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Denkbeeldig gescheiden" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Weduwnaar/weduwe" +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Profiel bewerken" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Onzeker" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Het is ingewikkeld" +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Jouw foto's" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Maakt mij niks uit" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Jouw bestanden" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Vraag het me" +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Bladwijzers van %1$s" +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Bladwijzers" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "gast:" +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" -#: ../../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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Jouw webpagina's" -#: ../../include/text.php:404 -msgid "prev" -msgstr "vorige" +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Inloggen" -#: ../../include/text.php:406 -msgid "first" -msgstr "eerste" +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" -#: ../../include/text.php:435 -msgid "last" -msgstr "laatste" +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" -#: ../../include/text.php:438 -msgid "next" -msgstr "volgende" +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" -#: ../../include/text.php:448 -msgid "older" -msgstr "ouder" +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Homepage" -#: ../../include/text.php:450 -msgid "newer" -msgstr "nieuwer" +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Maak een account aan" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Geen connecties" +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Hulp en documentatie" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" -msgstr "Toon alle %s connecties" +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Apps" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "aanstoten" +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " -#: ../../include/text.php:1019 -msgid "ping" -msgstr "ping" +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Kanalengids" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "gepingd" +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Jouw grid" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "por" +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Markeer alle gridnotificaties als bekeken" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "gepord" +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Jouw kanaal" -#: ../../include/text.php:1021 -msgid "slap" -msgstr "slaan" +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "sloeg" +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Notificaties" -#: ../../include/text.php:1022 -msgid "finger" -msgstr "finger" +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notificaties" -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "gefingerd" +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "afpoeieren" +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Privéberichten" -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "afgepoeierd" +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" -#: ../../include/text.php:1035 -msgid "happy" -msgstr "gelukkig" +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" -#: ../../include/text.php:1036 -msgid "sad" -msgstr "bedroefd" +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Agenda" -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "mellow" +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" -#: ../../include/text.php:1038 -msgid "tired" -msgstr "moe" +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" -#: ../../include/text.php:1039 -msgid "perky" -msgstr "parmantig" +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" -#: ../../include/text.php:1040 -msgid "angry" -msgstr "boos" +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "verbijsterd" +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "verward" +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Aan het laden..." -#: ../../include/text.php:1043 -msgid "interested" -msgstr "geïnteresseerd" +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@kanaal, #tag, inhoud, ?hulp" -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "verbitterd" +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Wachten aub..." -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "vrolijk" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nieuw venster" -#: ../../include/text.php:1046 -msgid "alive" -msgstr "levendig" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Open de geselecteerde locatie in een ander venster of tab" -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "geërgerd" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Account '%s' verwijderd" -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "bezorgd" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "humeurig" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Kanalen vinden" -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "verontrust" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "gefrustreerd " +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Verbinden/volgen" -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "gedeprimeerd" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeeld: Robert Morgenstein, vissen" -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "gemotiveerd" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Willekeurig profiel" -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "ontspannen" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "verrast" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "maandag" +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeenschappelijke connectie" +msgstr[1] "%d gemeenschappelijke connecties" -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "dinsdag" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "meer connecties weergeven" -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "woensdag" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s is nu met %2$s verbonden" -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "donderdag" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s heeft %2$s aangestoten" -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "vrijdag" +#: ../../include/conversation.php:691 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "zaterdag" +#: ../../include/conversation.php:710 +msgid "Categories:" +msgstr "Categorieën:" -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "zondag" +#: ../../include/conversation.php:711 +msgid "Filed under:" +msgstr "Bewaard onder:" -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "januari" +#: ../../include/conversation.php:738 +msgid "View in context" +msgstr "In context bekijken" -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "februari" +#: ../../include/conversation.php:847 +msgid "remove" +msgstr "verwijderen" -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "maart" +#: ../../include/conversation.php:852 +msgid "Delete Selected Items" +msgstr "Verwijder de geselecteerde items" -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "april" +#: ../../include/conversation.php:948 +msgid "View Source" +msgstr "Bron weergeven" -#: ../../include/text.php:1241 -msgid "May" -msgstr "mei" +#: ../../include/conversation.php:949 +msgid "Follow Thread" +msgstr "Conversatie volgen" -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "juni" +#: ../../include/conversation.php:950 +msgid "Unfollow Thread" +msgstr "Conversatie niet meer volgen" -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "juli" +#: ../../include/conversation.php:955 +msgid "Activity/Posts" +msgstr "Activiteit/berichten connectie" -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "augustus" +#: ../../include/conversation.php:957 +msgid "Edit Connection" +msgstr "Connectie bewerken" -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "september" +#: ../../include/conversation.php:958 +msgid "Message" +msgstr "Bericht" -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "oktober" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s likes this." +msgstr "%s vindt dit leuk." -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "november" +#: ../../include/conversation.php:1075 +#, php-format +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "december" +#: ../../include/conversation.php:1079 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d persoon vindt dit leuk." +msgstr[1] "%2$d personen vinden dit leuk." -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Onbekende bijlage" +#: ../../include/conversation.php:1081 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d persoon vindt dit niet leuk." +msgstr[1] "%2$d personen vinden dit niet leuk." -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "onbekend" +#: ../../include/conversation.php:1087 +msgid "and" +msgstr "en" -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "categorie verwijderen" +#: ../../include/conversation.php:1090 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", en %d ander persoon" +msgstr[1] ", en %d andere personen" -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "uit map verwijderen" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s like this." +msgstr "%s vinden dit leuk." -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "standaard" +#: ../../include/conversation.php:1091 +#, php-format +msgid "%s don't like this." +msgstr "%s vinden dit niet leuk." -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Pagina-lay-out" +#: ../../include/conversation.php:1130 +msgid "Set your location" +msgstr "Locatie instellen" -#: ../../include/text.php:1742 -msgid "You can create your own with the layouts tool" -msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" +#: ../../include/conversation.php:1131 +msgid "Clear browser location" +msgstr "Locatie van webbrowser wissen" -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Opmaaktype pagina" +#: ../../include/conversation.php:1177 +msgid "Tag term:" +msgstr "Tag:" -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Kies een andere taal" +#: ../../include/conversation.php:1178 +msgid "Where are you right now?" +msgstr "Waar bevind je je op dit moment?" -#: ../../include/text.php:1934 -msgid "activity" -msgstr "activiteit" +#: ../../include/conversation.php:1210 +msgid "Page link name" +msgstr "Linknaam pagina" -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Ontwerp-hulpmiddelen" +#: ../../include/conversation.php:1213 +msgid "Post as" +msgstr "Bericht plaatsen als" -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Pagina's" +#: ../../include/conversation.php:1223 +msgid "Toggle voting" +msgstr "Peiling in- of uitschakelen" -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Uitgelogd." +#: ../../include/conversation.php:1231 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" +#: ../../include/conversation.php:1254 +msgid "Set publish date" +msgstr "Publicatiedatum instellen" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" +#: ../../include/conversation.php:1503 +msgid "Discover" +msgstr "Ontdekken" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" +#: ../../include/conversation.php:1506 +msgid "Imported public streams" +msgstr "Openbare streams importeren" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" +#: ../../include/conversation.php:1511 +msgid "Commented Order" +msgstr "Nieuwe reacties bovenaan" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profielen en dingen, buiten berichten en reacties" +#: ../../include/conversation.php:1514 +msgid "Sort by Comment Date" +msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" +#: ../../include/conversation.php:1518 +msgid "Posted Order" +msgstr "Nieuwe berichten bovenaan" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor groepforums" +#: ../../include/conversation.php:1521 +msgid "Sort by Post Date" +msgstr "Nieuwe berichten bovenaan" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" +#: ../../include/conversation.php:1529 +msgid "Posts that mention or involve you" +msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" +#: ../../include/conversation.php:1538 +msgid "Activity Stream - by date" +msgstr "Activiteitenstroom - volgens datum" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kan mijn pagina's bewerken" +#: ../../include/conversation.php:1544 +msgid "Starred" +msgstr "Met ster" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" +#: ../../include/conversation.php:1547 +msgid "Favourite Posts" +msgstr "Favoriete berichten" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" +#: ../../include/conversation.php:1554 +msgid "Spam" +msgstr "Spam" -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." +#: ../../include/conversation.php:1557 +msgid "Posts flagged as SPAM" +msgstr "Berichten gemarkeerd als SPAM" -#: ../../include/features.php:48 -msgid "General Features" -msgstr "Algemene functies" +#: ../../include/conversation.php:1614 +msgid "Status Messages and Posts" +msgstr "Berichten in dit kanaal" -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Inhoud laten verlopen" +#: ../../include/conversation.php:1623 +msgid "About" +msgstr "Over" -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" +#: ../../include/conversation.php:1626 +msgid "Profile Details" +msgstr "Profiel" -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Fotoalbums" -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" +#: ../../include/conversation.php:1642 +msgid "Files and Storage" +msgstr "Bestanden en opslagruimte" -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Geavanceerde profielen" +#: ../../include/conversation.php:1678 +msgid "Saved Bookmarks" +msgstr "Opgeslagen bladwijzers" -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Extra onderdelen en keuzes voor je profiel" +#: ../../include/conversation.php:1688 +msgid "Manage Webpages" +msgstr "Webpagina's beheren" -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Profiel importen/exporteren" +#: ../../include/conversation.php:1747 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "aanwezig" +msgstr[1] "aanwezig" -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." +#: ../../include/conversation.php:1750 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "niet aanwezig" +msgstr[1] "niet aanwezig" -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Webpagina's" +#: ../../include/conversation.php:1753 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "nog niet beslist" +msgstr[1] "nog niet beslist" -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Sta beheerde webpagina's op jouw kanaal toe" +#: ../../include/conversation.php:1756 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "eens" +msgstr[1] "eens" -#: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "Voeg een wiki aan jouw kanaal toe" +#: ../../include/conversation.php:1759 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "oneens" +msgstr[1] "oneens" -#: ../../include/features.php:56 -msgid "Hide Rating" -msgstr "Beoordelingen verbergen" +#: ../../include/conversation.php:1762 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "onthouding" +msgstr[1] "onthoudingen" -#: ../../include/features.php:56 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. " +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Regelmatig" -#: ../../include/features.php:57 -msgid "Private Notes" -msgstr "Privé-aantekeningen" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Elk uur" -#: ../../include/features.php:57 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Twee keer per dag" -#: ../../include/features.php:58 -msgid "Navigation Channel Select" -msgstr "Kanaal kiezen in navigatiemenu" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Dagelijks" -#: ../../include/features.php:58 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Wekelijks" -#: ../../include/features.php:59 -msgid "Photo Location" -msgstr "Fotolocatie" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Maandelijks" -#: ../../include/features.php:59 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart." +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Momenteel man" -#: ../../include/features.php:60 -msgid "Access Controlled Chatrooms" -msgstr "Chatkanalen met toegangscontrole " +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Momenteel vrouw" -#: ../../include/features.php:60 -msgid "Provide chatrooms and chat services with access control." -msgstr "Chatkanalen en chatdiensten met toegangscontrole aanbieden." +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Voornamelijk man" -#: ../../include/features.php:61 -msgid "Smart Birthdays" -msgstr "Slimme verjaardagen" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Voornamelijk vrouw" -#: ../../include/features.php:61 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn." +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transgender" -#: ../../include/features.php:62 -msgid "Expert Mode" -msgstr "Expertmodus" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Interseksueel" -#: ../../include/features.php:62 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Schakel de expertmodus in voor geavanceerde instellingen" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transseksueel" -#: ../../include/features.php:63 -msgid "Premium Channel" -msgstr "Premiumkanaal" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermafrodiet" -#: ../../include/features.php:63 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Genderneutraal" -#: ../../include/features.php:68 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "Niet gespecificeerd" -#: ../../include/features.php:71 -msgid "Large Photos" -msgstr "Grote foto's" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "Anders" -#: ../../include/features.php:71 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt." +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Nog niet beslist" -#: ../../include/features.php:72 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Mannen" -#: ../../include/features.php:73 -msgid "Even More Encryption" -msgstr "Extra encryptie" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Vrouwen" -#: ../../include/features.php:73 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Homoseksueel" -#: ../../include/features.php:74 -msgid "Enable Voting Tools" -msgstr "Peilingen inschakelen" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbisch" -#: ../../include/features.php:74 -msgid "Provide a class of post which others can vote on" -msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Geen voorkeur" -#: ../../include/features.php:75 -msgid "Delayed Posting" -msgstr "Berichten uitstellen" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Biseksueel" -#: ../../include/features.php:75 -msgid "Allow posts to be published at a later date" -msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autoseksueel" -#: ../../include/features.php:76 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Dubbele berichten/reacties tegenhouden" +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Seksuele onthouding" -#: ../../include/features.php:76 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Maagd" -#: ../../include/features.php:82 -msgid "Network and Stream Filtering" -msgstr "Netwerk- en streamfilter" +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Afwijkend" -#: ../../include/features.php:83 -msgid "Search by Date" -msgstr "Zoek op datum" +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetisj" -#: ../../include/features.php:83 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten op datum te filteren " +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Veel" -#: ../../include/features.php:84 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Privacygroepen" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Aseksueel" -#: ../../include/features.php:84 -msgid "Enable management and selection of privacy groups" -msgstr "Beheer en selectie van privacygroepen inschakelen" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Alleen" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Eenzaam" -#: ../../include/features.php:85 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Beschikbaar" -#: ../../include/features.php:86 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Niet beschikbaar" -#: ../../include/features.php:86 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Heeft een oogje op iemand" -#: ../../include/features.php:87 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Smoorverliefd" -#: ../../include/features.php:87 -msgid "Enable tab to display all new Network activity" -msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Aan het daten" -#: ../../include/features.php:88 -msgid "Affinity Tool" -msgstr "Verwantschapsfilter" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Ontrouw" -#: ../../include/features.php:88 -msgid "Filter stream activity by depth of relationships" -msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Seksverslaafd" -#: ../../include/features.php:89 -msgid "Connection Filtering" -msgstr "Berichtenfilters" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Vriendschap plus" -#: ../../include/features.php:89 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Ongebonden/vluchtig" -#: ../../include/features.php:90 -msgid "Show channel suggestions" -msgstr "Voor jou mogelijk interessante kanalen voorstellen" +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Verloofd" -#: ../../include/features.php:95 -msgid "Post/Comment Tools" -msgstr "Bericht- en reactiehulpmiddelen" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Getrouwd" -#: ../../include/features.php:96 -msgid "Community Tagging" -msgstr "Taggen door anderen" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Denkbeeldig getrouwd" -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" -msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partners" -#: ../../include/features.php:97 -msgid "Post Categories" -msgstr "Categorieën berichten" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Samenwonend" -#: ../../include/features.php:97 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Common-law-huwelijk" -#: ../../include/features.php:98 -msgid "Emoji Reactions" -msgstr "Emoji-reacties" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Gelukkig" -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Emoji-reacties in berichten toestaan" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Niet op zoek" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Bewaarde mappen" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Swinger" -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen op te slaan" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Verraden" -#: ../../include/features.php:100 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Uit elkaar" -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Onstabiel" -#: ../../include/features.php:101 -msgid "Star Posts" -msgstr "Geef berichten een ster" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Gescheiden" -#: ../../include/features.php:101 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mogelijkheid om speciale berichten met een ster te markeren" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Denkbeeldig gescheiden" -#: ../../include/features.php:102 -msgid "Tag Cloud" -msgstr "Tagwolk" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Weduwnaar/weduwe" -#: ../../include/features.php:102 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Onzeker" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Het is ingewikkeld" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Voeg nieuwe connecties aan deze privacygroep toe" +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "Maakt mij niks uit" -#: ../../include/group.php:289 -msgid "edit" -msgstr "bewerken" +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Vraag het me" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Privacygroep bewerken" +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Privacygroep toevoegen" +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Alleen ik" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Kanalen die zich in geen enkele privacygroep bevinden" +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Openbaar" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "toevoegen" +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Iedereen in het $Projectname-netwerk" -#: ../../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/PermissionDescription.php:118 +#, php-format +msgid "Any account on %s" +msgstr "Iedereen op %s" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Start:" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Al mijn geaccepteerde connecties" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Einde:" +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Alleen connecties die uitdrukkelijk door jou zijn toegestaan" -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)" -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Niet aangegeven" +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "Al mijn geaccepteerde en nog niet geaccepteerde connecties" -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Actie vereist" +#: ../../include/PermissionDescription.php:161 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken" -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Voltooid" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken" -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "In behandeling" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken" -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Geannuleerd" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken" + +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken" #: ../../include/account.php:28 msgid "Not a valid email address" @@ -8884,6 +8415,11 @@ msgstr "Registratiebevestiging voor %s" msgid "Registration request at %s" msgstr "Registratiebevestiging voor %s" +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 +msgid "Administrator" +msgstr "Beheerder" + #: ../../include/account.php:339 msgid "your registration password" msgstr "jouw registratiewachtwoord" @@ -8902,484 +8438,697 @@ msgstr "Account goedgekeurd" msgid "Registration revoked for %s" msgstr "Registratie ingetrokken voor %s" -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." - -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." - -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Account is geverifieerd. Je kan inloggen." -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" +#: ../../include/account.php:731 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." + +#: ../../include/account.php:736 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." #: ../../include/attach.php:247 ../../include/attach.php:333 msgid "Item was not found." msgstr "Item niet gevonden" -#: ../../include/attach.php:499 +#: ../../include/attach.php:497 msgid "No source file." msgstr "Geen bronbestand." -#: ../../include/attach.php:521 +#: ../../include/attach.php:519 msgid "Cannot locate file to replace" msgstr "Kan het te vervangen bestand niet vinden" -#: ../../include/attach.php:539 +#: ../../include/attach.php:537 msgid "Cannot locate file to revise/update" msgstr "Kan het bestand wat aangepast moet worden niet vinden" -#: ../../include/attach.php:674 +#: ../../include/attach.php:672 #, php-format msgid "File exceeds size limit of %d" msgstr "Bestand is groter dan de toegelaten %d" -#: ../../include/attach.php:688 +#: ../../include/attach.php:686 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." -#: ../../include/attach.php:846 +#: ../../include/attach.php:842 msgid "File upload failed. Possible system limit or action terminated." msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." -#: ../../include/attach.php:859 +#: ../../include/attach.php:855 msgid "Stored file could not be verified. Upload failed." msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." -#: ../../include/attach.php:915 ../../include/attach.php:931 +#: ../../include/attach.php:909 ../../include/attach.php:925 msgid "Path not available." msgstr "Pad niet beschikbaar." -#: ../../include/attach.php:977 ../../include/attach.php:1129 +#: ../../include/attach.php:971 ../../include/attach.php:1123 msgid "Empty pathname" msgstr "Padnaam leeg" -#: ../../include/attach.php:1003 +#: ../../include/attach.php:997 msgid "duplicate filename or path" msgstr "dubbele bestandsnaam of pad" -#: ../../include/attach.php:1025 +#: ../../include/attach.php:1019 msgid "Path not found." msgstr "Pad niet gevonden" -#: ../../include/attach.php:1083 +#: ../../include/attach.php:1077 msgid "mkdir failed." msgstr "directory aanmaken (mkdir) mislukt." -#: ../../include/attach.php:1087 +#: ../../include/attach.php:1081 msgid "database storage failed." msgstr "opslag in database mislukt." -#: ../../include/attach.php:1135 +#: ../../include/attach.php:1129 msgid "Empty path" msgstr "Ontbrekend bestandspad" -#: ../../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 "Afbeelding/foto" +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Ontbrekende naam" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installeer %s-element: " +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Naam te lang" -#: ../../include/bbcode.php:182 -#, php-format +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Geen account-identificator" + +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Bijnaam is verplicht" + +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Deze naam is gereserveerd. Kies een andere." + +#: ../../include/channel.php:211 msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." +"Nickname has unsupported characters or is already being used on this site." +msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schreef het volgende %2$s %3$s" +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "Niet in staat om aangemaakte identiteit te vinden" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Standaardprofiel" -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "Opgevraagd kanaal is niet beschikbaar." -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Deze tekst wordt per persoon anders weergeven." +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Nieuw profiel aanmaken" -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 schreef:" +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Onbekend)" +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Geslacht:" -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Status:" -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Homepagina:" -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Nu online" -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." +#: ../../include/channel.php:1147 +msgid "Like this channel" +msgstr "Vind dit kanaal leuk" + +#: ../../include/channel.php:1171 +msgid "j F, Y" +msgstr "F j Y" + +#: ../../include/channel.php:1172 +msgid "j F" +msgstr "F j" -#: ../../include/items.php:1149 +#: ../../include/channel.php:1179 +msgid "Birthday:" +msgstr "Geboortedatum:" + +#: ../../include/channel.php:1192 #, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" + +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Seksuele voorkeur:" + +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Tags:" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Politieke overtuigingen:" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religie:" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Hobby's/interesses:" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Houdt van:" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "Houdt niet van:" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" + +#: ../../include/channel.php:1217 +msgid "My other channels:" +msgstr "Mijn andere kanalen" + +#: ../../include/channel.php:1219 +msgid "Musical interests:" +msgstr "Muzikale interesses:" + +#: ../../include/channel.php:1221 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" + +#: ../../include/channel.php:1223 +msgid "Television:" +msgstr "Televisie:" + +#: ../../include/channel.php:1225 +msgid "Film/dance/culture/entertainment:" +msgstr "Films/dansen/cultuur/vermaak:" + +#: ../../include/channel.php:1227 +msgid "Love/Romance:" +msgstr "Liefde/romantiek:" + +#: ../../include/channel.php:1229 +msgid "Work/employment:" +msgstr "Werk/beroep:" + +#: ../../include/channel.php:1231 +msgid "School/education:" +msgstr "School/opleiding:" + +#: ../../include/channel.php:1251 +msgid "Like this thing" +msgstr "Vind dit ding leuk" + +#: ../../include/features.php:48 +msgid "General Features" +msgstr "Algemene functies" + +#: ../../include/features.php:50 +msgid "Content Expiration" +msgstr "Inhoud laten verlopen" + +#: ../../include/features.php:50 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" + +#: ../../include/features.php:51 +msgid "Multiple Profiles" +msgstr "Meerdere profielen" + +#: ../../include/features.php:51 +msgid "Ability to create multiple profiles" +msgstr "Mogelijkheid om meerdere profielen aan te maken" + +#: ../../include/features.php:52 +msgid "Advanced Profiles" +msgstr "Geavanceerde profielen" + +#: ../../include/features.php:52 +msgid "Additional profile sections and selections" +msgstr "Extra onderdelen en keuzes voor je profiel" + +#: ../../include/features.php:53 +msgid "Profile Import/Export" +msgstr "Profiel importen/exporteren" + +#: ../../include/features.php:53 +msgid "Save and load profile details across sites/channels" +msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." + +#: ../../include/features.php:54 +msgid "Web Pages" +msgstr "Webpagina's" + +#: ../../include/features.php:54 +msgid "Provide managed web pages on your channel" +msgstr "Sta beheerde webpagina's op jouw kanaal toe" + +#: ../../include/features.php:55 +msgid "Hide Rating" +msgstr "Beoordelingen verbergen" + +#: ../../include/features.php:55 +msgid "" +"Hide the rating buttons on your channel and profile pages. Note: People can " +"still rate you somewhere else." +msgstr "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. " + +#: ../../include/features.php:56 +msgid "Private Notes" +msgstr "Privé-aantekeningen" + +#: ../../include/features.php:56 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)" + +#: ../../include/features.php:57 +msgid "Navigation Channel Select" +msgstr "Kanaal kiezen in navigatiemenu" + +#: ../../include/features.php:57 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" + +#: ../../include/features.php:58 +msgid "Photo Location" +msgstr "Fotolocatie" + +#: ../../include/features.php:58 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart." + +#: ../../include/features.php:59 +msgid "Access Controlled Chatrooms" +msgstr "Chatkanalen met toegangscontrole " + +#: ../../include/features.php:59 +msgid "Provide chatrooms and chat services with access control." +msgstr "Chatkanalen en chatdiensten met toegangscontrole aanbieden." + +#: ../../include/features.php:60 +msgid "Smart Birthdays" +msgstr "Slimme verjaardagen" + +#: ../../include/features.php:60 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn." + +#: ../../include/features.php:61 +msgid "Expert Mode" +msgstr "Expertmodus" + +#: ../../include/features.php:61 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Schakel de expertmodus in voor geavanceerde instellingen" + +#: ../../include/features.php:62 +msgid "Premium Channel" +msgstr "Premiumkanaal" -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." +#: ../../include/features.php:62 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Voor alle geaccepteerde connecties zichtbaar." +#: ../../include/features.php:67 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." +#: ../../include/features.php:70 +msgid "Large Photos" +msgstr "Grote foto's" -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Privacygroep is leeg" +#: ../../include/features.php:70 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt." -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Privacygroep: %s" +#: ../../include/features.php:71 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Connectie niet gevonden." +#: ../../include/features.php:72 +msgid "Even More Encryption" +msgstr "Extra encryptie" -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "profielfoto" +#: ../../include/features.php:72 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Ingesloten (embedded) inhoud" +#: ../../include/features.php:73 +msgid "Enable Voting Tools" +msgstr "Peilingen inschakelen" -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Insluiten (embedding) uitgeschakeld" +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" +msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Systeem" +#: ../../include/features.php:74 +msgid "Delayed Posting" +msgstr "Berichten uitstellen" -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nieuwe app" +#: ../../include/features.php:74 +msgid "Allow posts to be published at a later date" +msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Voorgestelde kanalen" +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Dubbele berichten/reacties tegenhouden" -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Meer..." +#: ../../include/features.php:75 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" +msgstr "Netwerk- en streamfilter" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Nieuwe connectie toevoegen" +#: ../../include/features.php:82 +msgid "Search by Date" +msgstr "Zoek op datum" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Vul kanaaladres in" +#: ../../include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten op datum te filteren " -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Voorbeelden: bob@example.com, http://example.com/barbara" +#: ../../include/features.php:83 ../../include/group.php:311 +msgid "Privacy Groups" +msgstr "Privacygroepen" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Aantekeningen" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" +msgstr "Beheer en selectie van privacygroepen inschakelen" -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Verwijder zoekterm" +#: ../../include/features.php:84 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alles" +#: ../../include/features.php:85 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archieven" +#: ../../include/features.php:85 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Vernieuwen" +#: ../../include/features.php:86 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Account" +#: ../../include/features.php:86 +msgid "Enable tab to display all new Network activity" +msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanaal" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Verwantschapsfilter" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Extra functies" +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Plugin-instellingen" +#: ../../include/features.php:88 +msgid "Connection Filtering" +msgstr "Berichtenfilters" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Weergave" +#: ../../include/features.php:88 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Locaties beheren" +#: ../../include/features.php:89 +msgid "Show channel suggestions" +msgstr "Voor jou mogelijk interessante kanalen voorstellen" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Kanaal exporteren" +#: ../../include/features.php:94 +msgid "Post/Comment Tools" +msgstr "Bericht- en reactiehulpmiddelen" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Verbonden applicaties" +#: ../../include/features.php:95 +msgid "Community Tagging" +msgstr "Taggen door anderen" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Instellingen premiumkanaal" +#: ../../include/features.php:95 +msgid "Ability to tag existing posts" +msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Privéberichten" +#: ../../include/features.php:96 +msgid "Post Categories" +msgstr "Categorieën berichten" -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Gecombineerd postvak" +#: ../../include/features.php:96 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversaties" +#: ../../include/features.php:97 +msgid "Emoji Reactions" +msgstr "Emoji-reacties" -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Ontvangen berichten" +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "Emoji-reacties in berichten toestaan" -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Verzonden berichten" +#: ../../include/features.php:98 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen op te slaan" -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Geen berichten" +#: ../../include/features.php:99 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Verwijder conversatie" +#: ../../include/features.php:99 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Agenda-hulpmiddelen" +#: ../../include/features.php:100 +msgid "Star Posts" +msgstr "Geef berichten een ster" -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exporteren" +#: ../../include/features.php:100 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mogelijkheid om speciale berichten met een ster te markeren" -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importeren" +#: ../../include/features.php:101 +msgid "Tag Cloud" +msgstr "Tagwolk" -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Overzicht" +#: ../../include/features.php:101 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Chatleden" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Ingesloten (embedded) inhoud" -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Wiki's" +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Insluiten (embedding) uitgeschakeld" -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Wikipagina's" +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "Wie kan dit zien?" -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Bladwijzers van chatkanalen" +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "Handmatige selectie" + +#: ../../include/acl_selectors.php:273 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"." -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Voorgestelde chatkanalen" +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "Tonen" -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/afbeelding" +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Niet tonen" -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Klik voor meer" +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Andere netwerken en diensten" -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Beoordelingen" +#: ../../include/acl_selectors.php:311 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien." -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Beoordeel mij" +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Uitgelogd." -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Bekijk beoordelingen" +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Forums" +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Verjaardag of geboortedatum" -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Taken" +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Leeftijd:" -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Documentatie" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-DD of MM-DD" -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Project- en hub-informatie" +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "nooit" -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Voor leden" +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Voor beheerders" +#: ../../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 geleden" -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Voor ontwikkelaars" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "jaar" +msgstr[1] "jaren" -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Accounts die op goedkeuring wachten" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "maand" +msgstr[1] "maanden" -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Inspecteer berichtenwachtrij" +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "week" +msgstr[1] "weken" -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Database-updates" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dagen" -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Plugin-opties" +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "uur" +msgstr[1] "uren" -#: ../../include/activities.php:41 -msgid " and " -msgstr " en " +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuut" +msgstr[1] "minuten" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "openbaar profiel" +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "seconde" +msgstr[1] "seconden" -#: ../../include/activities.php:58 +#: ../../include/datetime.php:562 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" -#: ../../include/activities.php:59 +#: ../../include/datetime.php:563 #, php-format -msgid "Visit %1$s's %2$s" -msgstr "Bezoek het %2$s van %1$s" +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Bijlagen:" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Voeg nieuwe connecties aan deze privacygroep toe" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificatie $Projectname-gebeurtenis:" +#: ../../include/group.php:289 +msgid "edit" +msgstr "bewerken" + +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Privacygroep bewerken" + +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Privacygroep toevoegen" + +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Kanalen die zich in geen enkele privacygroep bevinden" #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Dit item verwijderen?" #: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "%s minder reacties weergeven" +msgid "[-] show less" +msgstr "[-] minder reacties weergeven" #: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%s uitklappen" +msgid "[+] expand" +msgstr "[+] uitklappen" #: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s inklappen" +msgid "[-] collapse" +msgstr "[-] inklappen" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -9609,222 +9358,277 @@ msgctxt "calendar" msgid "All day" msgstr "hele dag" -#: ../../include/contact_widgets.php:11 +#: ../../include/network.php:657 +msgid "view full size" +msgstr "volledige grootte tonen" + +#: ../../include/network.php:1885 +msgid "No Subject" +msgstr "Geen onderwerp" + +#: ../../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 uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Kanalen vinden" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" + +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "een nieuwe foto" + +#: ../../include/photos.php:299 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s plaatste %2$s op %3$s" + +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" + +#: ../../include/zot.php:699 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" + +#: ../../include/zot.php:715 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " + +#: ../../include/zot.php:2363 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" + +#: ../../include/zot.php:3712 +msgid "invalid target signature" +msgstr "ongeldig doelkenmerk" + +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nieuwe pagina" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titel" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kan mijn standaard kanaalprofiel bekijken" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Verbinden/volgen" +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeeld: Robert Morgenstein, vissen" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kan mijn foto's en andere bestanden bekijken" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Willekeurig profiel" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeenschappelijke connectie" -msgstr[1] "%d gemeenschappelijke connecties" +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "meer connecties weergeven" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opties kanalengids" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Veilig zoeken" +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profielen en dingen, buiten berichten en reacties" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Alleen openbare forums" +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Alleen deze hub" +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Geavanceerd - nuttig voor groepforums" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Geen ontvanger opgegeven." +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kan met mij chatten (wanneer beschikbaar)" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[geen onderwerp]" +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kan mijn pagina's bewerken" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" -#: ../../include/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "Wie kan dit zien?" +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Handmatige selectie" +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kan mijn kanaal beheren" -#: ../../include/acl_selectors.php:271 +#: ../../include/permissions.php:46 msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"." +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Tonen" +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Sociaal netwerk" -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Niet tonen" +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Sociaal - Vrijwel alles openbaar" -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Andere netwerken en diensten" +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Sociaal - Beperkt zichtbaar" -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien." +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Sociaal - Verborgen kanaal" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Verjaardag of geboortedatum" +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Groepsforum" -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Leeftijd:" +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Forum - Vrijwel alles openbaar" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-DD of MM-DD" +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - Beperkt zichtbaar" -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "nooit" +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - Verborgen kanaal" -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Feed herpubliceren" -#: ../../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 geleden" +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Feed - Vrijwel alles openbaar" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "jaar" -msgstr[1] "jaren" +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Feed - Beperkt zichtbaar" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "maand" -msgstr[1] "maanden" +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Speciaal doel" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "week" -msgstr[1] "weken" +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Speciaal - Beroemdheid/alleen volgen" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dagen" +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Speciaal - Groepsopslag" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "uur" -msgstr[1] "uren" +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Expertmodus/handmatig aanpassen" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuut" -msgstr[1] "minuten" +#: ../../include/activities.php:41 +msgid " and " +msgstr " en " -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "seconde" -msgstr[1] "seconden" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "openbaar profiel" -#: ../../include/datetime.php:562 +#: ../../include/activities.php:58 #, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" -#: ../../include/datetime.php:563 +#: ../../include/activities.php:59 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" - -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" - -#: ../../include/zot.php:697 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" - -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " +msgid "Visit %1$s's %2$s" +msgstr "Bezoek het %2$s van %1$s" -#: ../../include/zot.php:2326 +#: ../../include/activities.php:62 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." -#: ../../include/zot.php:3703 -msgid "invalid target signature" -msgstr "ongeldig doelkenmerk" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Bijlagen:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificatie $Projectname-gebeurtenis:" #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" @@ -9962,66 +9766,62 @@ msgstr "Grootte profielfoto's van berichten instellen" msgid "Set size of followup author photos" msgstr "Grootte profielfoto's van reacties instellen" -#: ../../boot.php:1163 +#: ../../boot.php:1162 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Zoek %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 "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1484 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1685 +#: ../../boot.php:1684 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla" #: ../../boot.php:1706 -msgid "Login/Email" -msgstr "E-mailadres of inlognaam" - -#: ../../boot.php:1707 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1708 +#: ../../boot.php:1707 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:2277 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" -#: ../../boot.php:2432 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b." -#: ../../boot.php:2435 +#: ../../boot.php:2428 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Probleem met SSL-certificaat voor %s" -#: ../../boot.php:2478 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "Cron is niet actief" -#: ../../boot.php:2482 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-taken zijn niet actief op %s" diff --git a/view/nl/hstrings.php b/view/nl/hstrings.php index 6cbc6425e..4ff83f788 100644 --- a/view/nl/hstrings.php +++ b/view/nl/hstrings.php @@ -4,39 +4,7 @@ if(! function_exists("string_plural_select_nl")) { function string_plural_select_nl($n){ return ($n != 1);; }} -App::$rtl = 0; -App::$strings["Social Networking"] = "Sociaal netwerk"; -App::$strings["Social - Mostly Public"] = "Sociaal - Vrijwel alles openbaar"; -App::$strings["Social - Restricted"] = "Sociaal - Beperkt zichtbaar"; -App::$strings["Social - Private"] = "Sociaal - Verborgen kanaal"; -App::$strings["Community Forum"] = "Groepsforum"; -App::$strings["Forum - Mostly Public"] = "Forum - Vrijwel alles openbaar"; -App::$strings["Forum - Restricted"] = "Forum - Beperkt zichtbaar"; -App::$strings["Forum - Private"] = "Forum - Verborgen kanaal"; -App::$strings["Feed Republish"] = "Feed herpubliceren"; -App::$strings["Feed - Mostly Public"] = "Feed - Vrijwel alles openbaar"; -App::$strings["Feed - Restricted"] = "Feed - Beperkt zichtbaar"; -App::$strings["Special Purpose"] = "Speciaal doel"; -App::$strings["Special - Celebrity/Soapbox"] = "Speciaal - Beroemdheid/alleen volgen"; -App::$strings["Special - Group Repository"] = "Speciaal - Groepsopslag"; -App::$strings["Other"] = "Anders"; -App::$strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; -App::$strings["Can view my channel stream and posts"] = "Kan mijn kanaal en berichten bekijken"; -App::$strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; -App::$strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; -App::$strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; -App::$strings["Can view my file storage and photos"] = "Kan mijn foto's en andere bestanden bekijken"; -App::$strings["Can upload/modify my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; -App::$strings["Can view my channel webpages"] = "Kan de webpagina's van mijn kanaal bekijken"; -App::$strings["Can create/edit my channel webpages"] = "Kan wegpagina's van mijn kanaal aanmaken en bewerken"; -App::$strings["Can post on my channel (wall) page"] = "Kan een bericht in mijn kanaal plaatsen"; -App::$strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; -App::$strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; -App::$strings["Can like/dislike profiles and profile things"] = "Kan profielen en profieldingen leuk en niet leuk vinden "; -App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; -App::$strings["Can chat with me"] = "Kan met mij chatten"; -App::$strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; -App::$strings["Can administer my channel"] = "Kan mijn kanaal beheren"; +; App::$strings["parent"] = "omhoog"; App::$strings["Collection"] = "map"; App::$strings["Principal"] = "principal"; @@ -69,8 +37,63 @@ App::$strings["Remote authentication blocked. You are logged into this site loca App::$strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; App::$strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; App::$strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor hulp met \$Projectname klik je op het vraagteken."; +App::$strings["Block Name"] = "Bloknaam"; +App::$strings["Blocks"] = "Blokken"; +App::$strings["Block Title"] = "Bloktitel"; +App::$strings["Created"] = "Aangemaakt"; +App::$strings["Edited"] = "Bewerkt"; +App::$strings["Share"] = "Delen"; +App::$strings["View"] = "Weergeven"; +App::$strings["Channel not found."] = "Kanaal niet gevonden."; +App::$strings["Permissions denied."] = "Permissies niet toegestaan"; +App::$strings["l, F j"] = "l j F"; +App::$strings["Link to Source"] = "Originele locatie"; +App::$strings["Edit Event"] = "Gebeurtenis bewerken"; +App::$strings["Create Event"] = "Gebeurtenis aanmaken"; +App::$strings["Previous"] = "Vorige"; +App::$strings["Next"] = "Volgende"; +App::$strings["Export"] = "Exporteren"; +App::$strings["Import"] = "Importeren"; +App::$strings["Submit"] = "Opslaan"; +App::$strings["Today"] = "Vandaag"; +App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; +App::$strings["Posts and comments"] = "Berichten en reacties"; +App::$strings["Only posts"] = "Alleen berichten"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; +App::$strings["Room not found"] = "Chatkanaal niet gevonden"; +App::$strings["Leave Room"] = "Chatkanaal verlaten"; +App::$strings["Delete Room"] = "Chatkanaal verwijderen"; +App::$strings["I am away right now"] = "Ik ben momenteel afwezig"; +App::$strings["I am online"] = "Ik ben online"; +App::$strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; +App::$strings["Please enter a link URL:"] = "Vul een URL in:"; +App::$strings["Encrypt text"] = "Tekst versleutelen"; +App::$strings["Insert web link"] = "Weblink invoegen"; +App::$strings["Feature disabled."] = "Functie uitgeschakeld."; +App::$strings["New Chatroom"] = "Nieuw chatkanaal"; +App::$strings["Chatroom name"] = "Naam chatkanaal"; +App::$strings["Expiration of chats (minutes)"] = "Aantal minuten voordat chatberichten worden verwijderd"; +App::$strings["Permissions"] = "Permissies"; +App::$strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; +App::$strings["No chatrooms available"] = "Geen chatkanalen beschikbaar"; +App::$strings["Create New"] = "Nieuwe aanmaken"; +App::$strings["Expiration"] = "Verloopt na"; +App::$strings["min"] = "min"; App::$strings["Away"] = "Afwezig"; App::$strings["Online"] = "Online"; +App::$strings["Invalid item."] = "Ongeldig item."; +App::$strings["Bookmark added"] = "Bladwijzer toegevoegd"; +App::$strings["My Bookmarks"] = "Mijn bladwijzers"; +App::$strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; +App::$strings["Continue"] = "Ga verder"; +App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal "; +App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; +App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; App::$strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; App::$strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; App::$strings["Connection updated."] = "Connectie bijgewerkt."; @@ -135,7 +158,6 @@ App::$strings["Do not import posts with this text"] = "Importeer geen berichten App::$strings["This information is public!"] = "Deze informatie is openbaar!"; App::$strings["Connection Pending Approval"] = "Connectie moet nog geaccepteerd worden"; App::$strings["inherited"] = "geërfd"; -App::$strings["Submit"] = "Opslaan"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; App::$strings["Their Settings"] = "Hun instellingen"; App::$strings["My Settings"] = "Mijn instellingen"; @@ -144,30 +166,6 @@ App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. "; App::$strings["Last update:"] = "Laatste wijziging:"; App::$strings["Public access denied."] = "Openbare toegang geweigerd."; -App::$strings["Item not found."] = "Item niet gevonden."; -App::$strings["First Name"] = "Voornaam"; -App::$strings["Last Name"] = "Achternaam"; -App::$strings["Nickname"] = "Bijnaam"; -App::$strings["Full Name"] = "Volledige naam"; -App::$strings["Email"] = "E-mail"; -App::$strings["Profile Photo"] = "Profielfoto"; -App::$strings["Profile Photo 16px"] = "Profielfoto 16px"; -App::$strings["Profile Photo 32px"] = "Profielfoto 32px"; -App::$strings["Profile Photo 48px"] = "Profielfoto 48px"; -App::$strings["Profile Photo 64px"] = "Profielfoto 64px"; -App::$strings["Profile Photo 80px"] = "Profielfoto 80px"; -App::$strings["Profile Photo 128px"] = "Profielfoto 128px"; -App::$strings["Timezone"] = "Tijdzone"; -App::$strings["Homepage URL"] = "URL homepagina"; -App::$strings["Language"] = "Taal"; -App::$strings["Birth Year"] = "Geboortejaar"; -App::$strings["Birth Month"] = "Geboortemaand"; -App::$strings["Birth Day"] = "Geboortedag"; -App::$strings["Birthdate"] = "Geboortedatum"; -App::$strings["Gender"] = "Geslacht"; -App::$strings["Male"] = "Man"; -App::$strings["Female"] = "Vrouw"; -App::$strings["Channel added."] = "Kanaal toegevoegd."; App::$strings["%d rating"] = array( 0 => "%d beoordeling", 1 => "%d beoordelingen", @@ -198,74 +196,13 @@ App::$strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; App::$strings["Newest to Oldest"] = "Nieuw naar oud"; App::$strings["Oldest to Newest"] = "Oud naar nieuw"; App::$strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; -App::$strings["Continue"] = "Ga verder"; -App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal "; -App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; -App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; -App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; -App::$strings["No calendar entries found."] = "Geen agenda-items gevonden."; -App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; -App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; -App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; -App::$strings["Event not found."] = "Gebeurtenis niet gevonden"; -App::$strings["event"] = "gebeurtenis"; -App::$strings["Edit event title"] = "Titel bewerken"; -App::$strings["Event title"] = "Titel"; -App::$strings["Required"] = "Vereist"; -App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; -App::$strings["Edit Category"] = "Categorie"; -App::$strings["Category"] = "Categorie"; -App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken"; -App::$strings["Start date and time"] = "Begindatum en -tijd"; -App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; -App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken"; -App::$strings["Finish date and time"] = "Einddatum en -tijd"; -App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; -App::$strings["Edit Description"] = "Omschrijving bewerken"; -App::$strings["Description"] = "Omschrijving"; -App::$strings["Edit Location"] = "Locatie bewerken"; -App::$strings["Location"] = "Locatie"; -App::$strings["Share this event"] = "Deel deze gebeurtenis"; -App::$strings["Preview"] = "Voorvertoning"; -App::$strings["Permission settings"] = "Permissies"; -App::$strings["Advanced Options"] = "Geavanceerde opties"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Gebeurtenis bewerken"; -App::$strings["Delete event"] = "Gebeurtenis verwijderen"; -App::$strings["Link to Source"] = "Originele locatie"; -App::$strings["calendar"] = "agenda"; -App::$strings["Edit Event"] = "Gebeurtenis bewerken"; -App::$strings["Create Event"] = "Gebeurtenis aanmaken"; -App::$strings["Previous"] = "Vorige"; -App::$strings["Next"] = "Volgende"; -App::$strings["Export"] = "Exporteren"; -App::$strings["View"] = "Weergeven"; -App::$strings["Month"] = "Maand"; -App::$strings["Week"] = "Week"; -App::$strings["Day"] = "Dag"; -App::$strings["Today"] = "Vandaag"; -App::$strings["Event removed"] = "Gebeurtenis verwijderd"; -App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; -App::$strings["Bookmark added"] = "Bladwijzer toegevoegd"; -App::$strings["My Bookmarks"] = "Mijn bladwijzers"; -App::$strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; +App::$strings["Item not found."] = "Item niet gevonden."; App::$strings["Item not found"] = "Item niet gevonden"; -App::$strings["Item is not editable"] = "Item is niet te bewerken"; -App::$strings["Edit post"] = "Bericht bewerken"; -App::$strings["Photos"] = "Foto's"; -App::$strings["Cancel"] = "Annuleren"; -App::$strings["Invalid item."] = "Ongeldig item."; -App::$strings["Channel not found."] = "Kanaal niet gevonden."; -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:"] = "Bewaar in map: "; -App::$strings["- select -"] = "- kies map -"; -App::$strings["Save"] = "Opslaan"; +App::$strings["Title (optional)"] = "Titel (optioneel)"; +App::$strings["Edit Block"] = "Blok bewerken"; +App::$strings["No channel."] = "Geen kanaal."; +App::$strings["Common connections"] = "Veel voorkomende connecties"; +App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties."; App::$strings["Blocked"] = "Geblokkeerd"; App::$strings["Ignored"] = "Genegeerd"; App::$strings["Hidden"] = "Verborgen"; @@ -317,38 +254,51 @@ App::$strings["select a photo from your photo albums"] = "Kies een foto uit jouw App::$strings["Crop Image"] = "Afbeelding bijsnijden"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; App::$strings["Done Editing"] = "Klaar met bewerken"; -App::$strings["webpage"] = "Webpagina"; -App::$strings["block"] = "blok"; -App::$strings["layout"] = "lay-out"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd"; -App::$strings["%s element installation failed"] = "Installatie %s-element mislukt"; -App::$strings["Permissions denied."] = "Permissies niet toegestaan"; -App::$strings["Import"] = "Importeren"; +App::$strings["Item is not editable"] = "Item is niet te bewerken"; +App::$strings["Edit post"] = "Bericht bewerken"; +App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; +App::$strings["No calendar entries found."] = "Geen agenda-items gevonden."; +App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; +App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; +App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; +App::$strings["Event not found."] = "Gebeurtenis niet gevonden"; +App::$strings["event"] = "gebeurtenis"; +App::$strings["Edit event title"] = "Titel bewerken"; +App::$strings["Event title"] = "Titel"; +App::$strings["Required"] = "Vereist"; +App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; +App::$strings["Edit Category"] = "Categorie"; +App::$strings["Category"] = "Categorie"; +App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken"; +App::$strings["Start date and time"] = "Begindatum en -tijd"; +App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; +App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken"; +App::$strings["Finish date and time"] = "Einddatum en -tijd"; +App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; +App::$strings["Edit Description"] = "Omschrijving bewerken"; +App::$strings["Description"] = "Omschrijving"; +App::$strings["Edit Location"] = "Locatie bewerken"; +App::$strings["Location"] = "Locatie"; +App::$strings["Share this event"] = "Deel deze gebeurtenis"; +App::$strings["Preview"] = "Voorvertoning"; +App::$strings["Permission settings"] = "Permissies"; +App::$strings["Advanced Options"] = "Geavanceerde opties"; +App::$strings["Edit event"] = "Gebeurtenis bewerken"; +App::$strings["Delete event"] = "Gebeurtenis verwijderen"; +App::$strings["calendar"] = "agenda"; +App::$strings["Event removed"] = "Gebeurtenis verwijderd"; +App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; +App::$strings["Photos"] = "Foto's"; +App::$strings["Cancel"] = "Annuleren"; App::$strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; App::$strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig"; -App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; -App::$strings["Room not found"] = "Chatkanaal niet gevonden"; -App::$strings["Leave Room"] = "Chatkanaal verlaten"; -App::$strings["Delete Room"] = "Chatkanaal verwijderen"; -App::$strings["I am away right now"] = "Ik ben momenteel afwezig"; -App::$strings["I am online"] = "Ik ben online"; -App::$strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; -App::$strings["Please enter a link URL:"] = "Vul een URL in:"; -App::$strings["Encrypt text"] = "Tekst versleutelen"; -App::$strings["Insert web link"] = "Weblink invoegen"; -App::$strings["Feature disabled."] = "Functie uitgeschakeld."; -App::$strings["New Chatroom"] = "Nieuw chatkanaal"; -App::$strings["Chatroom name"] = "Naam chatkanaal"; -App::$strings["Expiration of chats (minutes)"] = "Aantal minuten voordat chatberichten worden verwijderd"; -App::$strings["Permissions"] = "Permissies"; -App::$strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; -App::$strings["No chatrooms available"] = "Geen chatkanalen beschikbaar"; -App::$strings["Create New"] = "Nieuwe aanmaken"; -App::$strings["Expiration"] = "Verloopt na"; -App::$strings["min"] = "min"; +App::$strings["Save to Folder:"] = "Bewaar in map: "; +App::$strings["- select -"] = "- kies map -"; +App::$strings["Save"] = "Opslaan"; App::$strings["Invalid message"] = "Ongeldig bericht"; App::$strings["no results"] = "geen resultaten"; +App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s"; App::$strings["channel sync processed"] = "kanaalsync verwerkt"; App::$strings["queued"] = "in wachtrij"; App::$strings["posted"] = "verstuurd"; @@ -360,14 +310,14 @@ App::$strings["recipient not found"] = "ontvanger niet gevonden"; App::$strings["mail recalled"] = "Privébericht ingetrokken"; App::$strings["duplicate mail received"] = "dubbel privébericht ontvangen"; App::$strings["mail delivered"] = "privébericht afgeleverd"; -App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s"; -App::$strings["Options"] = "Opties"; -App::$strings["Redeliver"] = "Opnieuw afleveren"; App::$strings["Layout Name"] = "Naam lay-out"; App::$strings["Layout Description (Optional)"] = "Lay-out-omschrijving (optioneel)"; App::$strings["Edit Layout"] = "Lay-out bewerken"; App::$strings["Page link"] = "Paginalink"; App::$strings["Edit Webpage"] = "Webpagina bewerken"; +App::$strings["Channel added."] = "Kanaal toegevoegd."; +App::$strings["network"] = "netwerk"; +App::$strings["RSS"] = "RSS"; App::$strings["Privacy group created."] = "Privacygroep aangemaakt"; App::$strings["Could not create privacy group."] = "Kon privacygroep niet aanmaken"; App::$strings["Privacy group not found."] = "Privacygroep niet gevonden"; @@ -381,33 +331,16 @@ App::$strings["Privacy group editor"] = "Privacygroep bewerken"; App::$strings["Members"] = "Kanalen"; App::$strings["All Connected Channels"] = "Alle kanaalconnecties"; App::$strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; -App::$strings["App installed."] = "App geïnstalleerd"; -App::$strings["Malformed app."] = "Misvormde app."; -App::$strings["Embed code"] = "Insluitcode"; -App::$strings["Edit App"] = "App bewerken"; -App::$strings["Create App"] = "App maken"; -App::$strings["Name of app"] = "Naam van app"; -App::$strings["Location (URL) of app"] = "Locatie (URL) van app"; -App::$strings["Photo icon URL"] = "URL van pictogram"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; -App::$strings["Categories (optional, comma separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; -App::$strings["Version ID"] = "Versie-ID"; -App::$strings["Price of app"] = "Prijs van de app"; -App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; +App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; +App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; +App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; +App::$strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; +App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; App::$strings["Documentation Search"] = "Zoek documentatie"; App::$strings["Help:"] = "Hulp:"; App::$strings["Help"] = "Hulp"; App::$strings["\$Projectname Documentation"] = "\$Projectname-documentatie"; -App::$strings["Item not available."] = "Item is niet aanwezig."; -App::$strings["Layout updated."] = "Lay-out bijgewerkt."; -App::$strings["Edit System Page Description"] = "Systeempagina's bewerken"; -App::$strings["Layout not found."] = "Lay-out niet gevonden."; -App::$strings["Module Name:"] = "Modulenaam:"; -App::$strings["Layout Help"] = "Lay-out-hulp"; -App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; -App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; -App::$strings["network"] = "netwerk"; -App::$strings["RSS"] = "RSS"; App::$strings["Permission Denied."] = "Toegang geweigerd"; App::$strings["File not found."] = "Bestand niet gevonden."; App::$strings["Edit file permissions"] = "Bestandsrechten bewerken"; @@ -419,100 +352,8 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Kopieer/pla App::$strings["Share this file"] = "Dit bestand delen"; App::$strings["Show URL to this file"] = "Toon URL van dit bestand"; App::$strings["Notify your contacts about this file"] = "Jouw connecties over dit bestand berichten"; -App::$strings["Layouts"] = "Lay-outs"; -App::$strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; -App::$strings["Layout Description"] = "Lay-out-omschrijving"; -App::$strings["Created"] = "Aangemaakt"; -App::$strings["Edited"] = "Bewerkt"; -App::$strings["Share"] = "Delen"; -App::$strings["Download PDL file"] = "Download PDL-bestand"; -App::$strings["Like/Dislike"] = "Leuk/niet leuk"; -App::$strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account aan te maken om verder te kunnen gaan."; -App::$strings["Invalid request."] = "Ongeldig verzoek"; -App::$strings["channel"] = "kanaal"; -App::$strings["thing"] = "ding"; -App::$strings["Channel unavailable."] = "Kanaal niet beschikbaar."; -App::$strings["Previous action reversed."] = "Vorige actie omgedraaid"; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "bericht"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; -App::$strings["Action completed."] = "Actie voltooid"; -App::$strings["Thank you."] = "Bedankt"; -App::$strings["Profile not found."] = "Profiel niet gevonden."; -App::$strings["Profile deleted."] = "Profiel verwijderd."; -App::$strings["Profile-"] = "Profiel-"; -App::$strings["New profile created."] = "Nieuw profiel aangemaakt."; -App::$strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; -App::$strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; -App::$strings["Profile Name is required."] = "Profielnaam is vereist"; -App::$strings["Marital Status"] = "Huwelijke status"; -App::$strings["Romantic Partner"] = "Romantische partner"; -App::$strings["Likes"] = "Houdt van"; -App::$strings["Dislikes"] = "Houdt niet van"; -App::$strings["Work/Employment"] = "Werk/arbeid"; -App::$strings["Religion"] = "Religie"; -App::$strings["Political Views"] = "Politieke overtuigingen"; -App::$strings["Sexual Preference"] = "Seksuele voorkeur"; -App::$strings["Homepage"] = "Homepage"; -App::$strings["Interests"] = "Interesses"; -App::$strings["Address"] = "Kanaaladres"; -App::$strings["Profile updated."] = "Profiel bijgewerkt"; -App::$strings["Hide your connections list from viewers of this profile"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; -App::$strings["Edit Profile Details"] = "Profiel bewerken"; -App::$strings["View this profile"] = "Profiel weergeven"; -App::$strings["Edit visibility"] = "Zichtbaarheid bewerken"; -App::$strings["Profile Tools"] = "Hulpmiddelen"; -App::$strings["Change cover photo"] = "Omslagfoto wijzigen"; -App::$strings["Change profile photo"] = "Profielfoto veranderen"; -App::$strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; -App::$strings["Clone this profile"] = "Dit profiel klonen"; -App::$strings["Delete this profile"] = "Dit profiel verwijderen"; -App::$strings["Add profile things"] = "Dingen aan je profiel toevoegen"; -App::$strings["Personal"] = "Persoonlijk"; -App::$strings["Relation"] = "Relatie"; -App::$strings["Miscellaneous"] = "Diversen"; -App::$strings["Import profile from file"] = "Profiel vanuit bestand importeren"; -App::$strings["Export profile to file"] = "Profiel naar bestand exporteren"; -App::$strings["Your gender"] = "Jouw geslacht"; -App::$strings["Marital status"] = "Burgerlijke staat"; -App::$strings["Sexual preference"] = "Seksuele voorkeur"; -App::$strings["Profile name"] = "Profielnaam"; -App::$strings["This is your default profile."] = "Dit is jouw standaardprofiel"; -App::$strings["Your full name"] = "Jouw volledige naam"; -App::$strings["Title/Description"] = "Titel/omschrijving"; -App::$strings["Street address"] = "Straat en huisnummer"; -App::$strings["Locality/City"] = "Woonplaats"; -App::$strings["Region/State"] = "Provincie/gewest/deelstaat"; -App::$strings["Postal/Zip code"] = "Postcode"; -App::$strings["Country"] = "Land"; -App::$strings["Who (if applicable)"] = "Wie (wanneer van toepassing)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl"; -App::$strings["Since (date)"] = "Sinds (datum)"; -App::$strings["Tell us about yourself"] = "Vertel ons iets over jezelf"; -App::$strings["Hometown"] = "Oorspronkelijk uit"; -App::$strings["Political views"] = "Politieke overtuigingen"; -App::$strings["Religious views"] = "Religieuze overtuigingen"; -App::$strings["Keywords used in directory listings"] = "Trefwoorden voor in de kanalengids"; -App::$strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; -App::$strings["Musical interests"] = "Muzikale interesses"; -App::$strings["Books, literature"] = "Boeken/literatuur"; -App::$strings["Television"] = "Televisie"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/cultuur/entertainment"; -App::$strings["Hobbies/Interests"] = "Hobby's/interesses"; -App::$strings["Love/Romance"] = "Liefde/romantiek"; -App::$strings["School/Education"] = "School/opleiding"; -App::$strings["Contact information and social networks"] = "Contactinformatie en sociale netwerken"; -App::$strings["My other channels"] = "Mijn andere kanalen"; -App::$strings["Profile Image"] = "Profielfoto"; -App::$strings["Edit Profiles"] = "Bewerk profielen"; +App::$strings["Apps"] = "Apps"; +App::$strings["Item not available."] = "Item is niet aanwezig."; App::$strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; App::$strings["Nothing to import."] = "Niets gevonden om te importeren"; App::$strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; @@ -533,8 +374,6 @@ App::$strings["For either option, please choose whether to make this hub your ne App::$strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)"; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid."; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Welkom op %s"; App::$strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; App::$strings["Empty post discarded."] = "Leeg bericht geannuleerd"; App::$strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; @@ -543,76 +382,60 @@ App::$strings["System error. Post not saved."] = "Systeemfout. Bericht niet opge App::$strings["Unable to obtain post information from database."] = "Niet in staat om informatie over dit bericht uit de database te verkrijgen."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; -App::$strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; -App::$strings["Profile Photos"] = "Profielfoto's"; -App::$strings["Album not found."] = "Album niet gevonden."; -App::$strings["Delete Album"] = "Verwijder 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"] = "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder."; -App::$strings["Delete Photo"] = "Verwijder foto"; -App::$strings["No photos selected"] = "Geen foto's geselecteerd"; -App::$strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; -App::$strings["Upload Photos"] = "Foto's uploaden"; -App::$strings["Enter an album name"] = "Vul een albumnaam in"; -App::$strings["or select an existing album (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; -App::$strings["Create a status post for this upload"] = "Plaats een bericht voor deze upload."; -App::$strings["Caption (optional):"] = "Bijschrift (optioneel):"; -App::$strings["Description (optional):"] = "Omschrijving (optioneel):"; -App::$strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; -App::$strings["Contact Photos"] = "Connectiefoto's"; -App::$strings["Show Newest First"] = "Nieuwste eerst weergeven"; -App::$strings["Show Oldest First"] = "Oudste eerst weergeven"; -App::$strings["View Photo"] = "Foto weergeven"; -App::$strings["Edit Album"] = "Album bewerken"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; -App::$strings["Photo not available"] = "Foto niet aanwezig"; -App::$strings["Use as profile photo"] = "Als profielfoto gebruiken"; -App::$strings["Use as cover photo"] = "Als omslagfoto gebruiken"; -App::$strings["Private Photo"] = "Privéfoto"; -App::$strings["View Full Size"] = "Volledige grootte weergeven"; -App::$strings["Remove"] = "Verwijderen"; -App::$strings["Edit photo"] = "Foto bewerken"; -App::$strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; -App::$strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; -App::$strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; -App::$strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; -App::$strings["Caption"] = "Bijschrift"; -App::$strings["Add a Tag"] = "Tag toevoegen"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; -App::$strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; -App::$strings["I like this (toggle)"] = "Vind ik leuk"; -App::$strings["I don't like this (toggle)"] = "Vind ik niet leuk"; -App::$strings["Please wait"] = "Even wachten"; -App::$strings["This is you"] = "Dit ben jij"; -App::$strings["Comment"] = "Reactie"; -App::$strings["__ctx:title__ Likes"] = "vinden dit leuk"; -App::$strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; -App::$strings["__ctx:title__ Agree"] = "eens"; -App::$strings["__ctx:title__ Disagree"] = "oneens"; -App::$strings["__ctx:title__ Abstain"] = "onthoudingen"; -App::$strings["__ctx:title__ Attending"] = "aanwezig"; -App::$strings["__ctx:title__ Not attending"] = "niet aanwezig"; -App::$strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; -App::$strings["View all"] = "Toon alles"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "vindt dit leuk", - 1 => "vinden dit leuk", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "vindt dit niet leuk", - 1 => "vinden dit niet leuk", -); -App::$strings["Photo Tools"] = "Hulpmiddelen"; -App::$strings["In This Photo:"] = "Op deze foto:"; -App::$strings["Map"] = "Kaart"; -App::$strings["__ctx:noun__ Likes"] = "vinden dit leuk"; -App::$strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; -App::$strings["Close"] = "Sluiten"; -App::$strings["View Album"] = "Album weergeven"; -App::$strings["Recent Photos"] = "Recente foto's"; -App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; -App::$strings["Visible to:"] = "Zichtbaar voor:"; +App::$strings["Layouts"] = "Lay-outs"; +App::$strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; +App::$strings["Layout Description"] = "Lay-out-omschrijving"; +App::$strings["Download PDL file"] = "Download PDL-bestand"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Welkom op %s"; +App::$strings["First Name"] = "Voornaam"; +App::$strings["Last Name"] = "Achternaam"; +App::$strings["Nickname"] = "Bijnaam"; +App::$strings["Full Name"] = "Volledige naam"; +App::$strings["Email"] = "E-mail"; +App::$strings["Profile Photo"] = "Profielfoto"; +App::$strings["Profile Photo 16px"] = "Profielfoto 16px"; +App::$strings["Profile Photo 32px"] = "Profielfoto 32px"; +App::$strings["Profile Photo 48px"] = "Profielfoto 48px"; +App::$strings["Profile Photo 64px"] = "Profielfoto 64px"; +App::$strings["Profile Photo 80px"] = "Profielfoto 80px"; +App::$strings["Profile Photo 128px"] = "Profielfoto 128px"; +App::$strings["Timezone"] = "Tijdzone"; +App::$strings["Homepage URL"] = "URL homepagina"; +App::$strings["Language"] = "Taal"; +App::$strings["Birth Year"] = "Geboortejaar"; +App::$strings["Birth Month"] = "Geboortemaand"; +App::$strings["Birth Day"] = "Geboortedag"; +App::$strings["Birthdate"] = "Geboortedatum"; +App::$strings["Gender"] = "Geslacht"; +App::$strings["Male"] = "Man"; +App::$strings["Female"] = "Vrouw"; +App::$strings["webpage"] = "Webpagina"; +App::$strings["block"] = "blok"; +App::$strings["layout"] = "lay-out"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd"; +App::$strings["%s element installation failed"] = "Installatie %s-element mislukt"; +App::$strings["Like/Dislike"] = "Leuk/niet leuk"; +App::$strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account aan te maken om verder te kunnen gaan."; +App::$strings["Invalid request."] = "Ongeldig verzoek"; +App::$strings["channel"] = "kanaal"; +App::$strings["thing"] = "ding"; +App::$strings["Channel unavailable."] = "Kanaal niet beschikbaar."; +App::$strings["Previous action reversed."] = "Vorige actie omgedraaid"; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "bericht"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; +App::$strings["Action completed."] = "Actie voltooid"; +App::$strings["Thank you."] = "Bedankt"; App::$strings["Import completed"] = "Importeren voltooid"; App::$strings["Import Items"] = "Importeer items"; App::$strings["Use this form to import existing posts and content from an export file."] = "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren."; @@ -635,12 +458,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. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; App::$strings["or visit"] = "of bezoek"; App::$strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; +App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; +App::$strings["Visible to:"] = "Zichtbaar voor:"; App::$strings["Location not found."] = "Locatie niet gevonden."; App::$strings["Location lookup failed."] = "Opzoeken locatie mislukt"; App::$strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen."; App::$strings["Syncing locations"] = "Locaties synchronizeren"; App::$strings["No locations found."] = "Geen locaties gevonden."; App::$strings["Manage Channel Locations"] = "Kanaallocaties beheren"; +App::$strings["Address"] = "Kanaaladres"; App::$strings["Primary"] = "Primair"; App::$strings["Drop"] = "Verwijderen"; App::$strings["Sync Now"] = "Nu synchroniseren"; @@ -681,30 +507,6 @@ App::$strings["Make Default"] = "Als standaard instellen"; App::$strings["%d new messages"] = "%d nieuwe berichten"; App::$strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; App::$strings["Delegated Channel"] = "Uitbesteed kanaal"; -App::$strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; -App::$strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; -App::$strings["Menu Name"] = "Menunaam"; -App::$strings["Unique name (not visible on webpage) - required"] = "Unieke naam vereist (niet zichtbaar op webpagina)"; -App::$strings["Menu Title"] = "Menutitel"; -App::$strings["Visible on webpage - leave empty for no title"] = "Zichtbaar op webpagina (leeg laten voor geen titel)"; -App::$strings["Allow Bookmarks"] = "Bladwijzers toestaan"; -App::$strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; -App::$strings["Submit and proceed"] = "Opslaan en doorgaan"; -App::$strings["Menus"] = "Menu's"; -App::$strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; -App::$strings["Delete this menu"] = "Menu verwijderen"; -App::$strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; -App::$strings["Edit this menu"] = "Dit menu bewerken"; -App::$strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; -App::$strings["Menu not found."] = "Menu niet gevonden."; -App::$strings["Edit Menu"] = "Menu bewerken"; -App::$strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; -App::$strings["Menu name"] = "Naam van menu"; -App::$strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; -App::$strings["Menu title"] = "Titel van menu"; -App::$strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; -App::$strings["Allow bookmarks"] = "Bladwijzers toestaan"; -App::$strings["Not found."] = "Niet gevonden."; App::$strings["No valid account found."] = "Geen geldige account gevonden."; App::$strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; App::$strings["Site Member (%s)"] = "Lid van hub (%s)"; @@ -721,9 +523,37 @@ App::$strings["Forgot your Password?"] = "Wachtwoord vergeten?"; App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; App::$strings["Email Address"] = "E-mailadres"; App::$strings["Reset"] = "Opnieuw instellen"; +App::$strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; +App::$strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; +App::$strings["Menu Name"] = "Menunaam"; +App::$strings["Unique name (not visible on webpage) - required"] = "Unieke naam vereist (niet zichtbaar op webpagina)"; +App::$strings["Menu Title"] = "Menutitel"; +App::$strings["Visible on webpage - leave empty for no title"] = "Zichtbaar op webpagina (leeg laten voor geen titel)"; +App::$strings["Allow Bookmarks"] = "Bladwijzers toestaan"; +App::$strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; +App::$strings["Submit and proceed"] = "Opslaan en doorgaan"; +App::$strings["Menus"] = "Menu's"; +App::$strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; +App::$strings["Delete this menu"] = "Menu verwijderen"; +App::$strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; +App::$strings["Edit this menu"] = "Dit menu bewerken"; +App::$strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; +App::$strings["Menu not found."] = "Menu niet gevonden."; +App::$strings["Edit Menu"] = "Menu bewerken"; +App::$strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; +App::$strings["Menu name"] = "Naam van menu"; +App::$strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; +App::$strings["Menu title"] = "Titel van menu"; +App::$strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; +App::$strings["Allow bookmarks"] = "Bladwijzers toestaan"; +App::$strings["Not found."] = "Niet gevonden."; App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; App::$strings["Mood"] = "Stemming"; App::$strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +App::$strings["Profile Match"] = "Profielovereenkomst"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; +App::$strings["is interested in:"] = "is geïnteresseerd in:"; +App::$strings["No matches"] = "Geen overeenkomsten"; App::$strings["No such group"] = "Collectie niet gevonden"; App::$strings["No such channel"] = "Niet zo'n kanaal"; App::$strings["forum"] = "forum"; @@ -733,13 +563,6 @@ App::$strings["Privacy group: "] = "Privacygroep: "; App::$strings["Invalid connection."] = "Ongeldige connectie."; App::$strings["No more system notifications."] = "Geen systeemnotificaties meer."; App::$strings["System Notifications"] = "Systeemnotificaties"; -App::$strings["Profile Match"] = "Profielovereenkomst"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; -App::$strings["is interested in:"] = "is geïnteresseerd in:"; -App::$strings["No matches"] = "Geen overeenkomsten"; -App::$strings["Posts and comments"] = "Berichten en reacties"; -App::$strings["Only posts"] = "Alleen berichten"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; App::$strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; App::$strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; App::$strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; @@ -769,6 +592,203 @@ App::$strings["Menu item deleted."] = "Menu-item verwijderd."; App::$strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; App::$strings["Edit Menu Element"] = "Menu-element bewerken"; App::$strings["Link text"] = "Linktekst"; +App::$strings["Name or caption"] = "Naam"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\""; +App::$strings["Choose a short nickname"] = "Korte bijnaam"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s"; +App::$strings["Channel role and privacy"] = "Kanaaltype en privacy"; +App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau."; +App::$strings["Read more about roles"] = "Lees meer over kanaaltypes"; +App::$strings["Create Channel"] = "Kanaal aanmaken"; +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."] = "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen."; +App::$strings["or import an existing channel from another location."] = "Of importeer een bestaand kanaal vanaf een andere locatie"; +App::$strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; +App::$strings["Discard"] = "Annuleren"; +App::$strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; +App::$strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; +App::$strings["Profile Photos"] = "Profielfoto's"; +App::$strings["Album not found."] = "Album niet gevonden."; +App::$strings["Delete Album"] = "Verwijder 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"] = "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder."; +App::$strings["Delete Photo"] = "Verwijder foto"; +App::$strings["No photos selected"] = "Geen foto's geselecteerd"; +App::$strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; +App::$strings["Upload Photos"] = "Foto's uploaden"; +App::$strings["Enter an album name"] = "Vul een albumnaam in"; +App::$strings["or select an existing album (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; +App::$strings["Create a status post for this upload"] = "Plaats een bericht voor deze upload."; +App::$strings["Caption (optional):"] = "Bijschrift (optioneel):"; +App::$strings["Description (optional):"] = "Omschrijving (optioneel):"; +App::$strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; +App::$strings["Contact Photos"] = "Connectiefoto's"; +App::$strings["Show Newest First"] = "Nieuwste eerst weergeven"; +App::$strings["Show Oldest First"] = "Oudste eerst weergeven"; +App::$strings["View Photo"] = "Foto weergeven"; +App::$strings["Edit Album"] = "Album bewerken"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; +App::$strings["Photo not available"] = "Foto niet aanwezig"; +App::$strings["Use as profile photo"] = "Als profielfoto gebruiken"; +App::$strings["Use as cover photo"] = "Als omslagfoto gebruiken"; +App::$strings["Private Photo"] = "Privéfoto"; +App::$strings["View Full Size"] = "Volledige grootte weergeven"; +App::$strings["Remove"] = "Verwijderen"; +App::$strings["Edit photo"] = "Foto bewerken"; +App::$strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; +App::$strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; +App::$strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; +App::$strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; +App::$strings["Caption"] = "Bijschrift"; +App::$strings["Add a Tag"] = "Tag toevoegen"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; +App::$strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; +App::$strings["I like this (toggle)"] = "Vind ik leuk"; +App::$strings["I don't like this (toggle)"] = "Vind ik niet leuk"; +App::$strings["Please wait"] = "Even wachten"; +App::$strings["This is you"] = "Dit ben jij"; +App::$strings["Comment"] = "Reactie"; +App::$strings["__ctx:title__ Likes"] = "vinden dit leuk"; +App::$strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; +App::$strings["__ctx:title__ Agree"] = "eens"; +App::$strings["__ctx:title__ Disagree"] = "oneens"; +App::$strings["__ctx:title__ Abstain"] = "onthoudingen"; +App::$strings["__ctx:title__ Attending"] = "aanwezig"; +App::$strings["__ctx:title__ Not attending"] = "niet aanwezig"; +App::$strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; +App::$strings["View all"] = "Toon alles"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "vindt dit leuk", + 1 => "vinden dit leuk", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "vindt dit niet leuk", + 1 => "vinden dit niet leuk", +); +App::$strings["Photo Tools"] = "Hulpmiddelen"; +App::$strings["In This Photo:"] = "Op deze foto:"; +App::$strings["Map"] = "Kaart"; +App::$strings["__ctx:noun__ Likes"] = "vinden dit leuk"; +App::$strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; +App::$strings["Close"] = "Sluiten"; +App::$strings["View Album"] = "Album weergeven"; +App::$strings["Recent Photos"] = "Recente foto's"; +App::$strings["sent you a private message"] = "stuurde jou een privébericht"; +App::$strings["added your channel"] = "voegde jouw kanaal toe"; +App::$strings["g A l F d"] = "G:i, l d F"; +App::$strings["[today]"] = "[vandaag]"; +App::$strings["posted an event"] = "plaatste een gebeurtenis"; +App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; +App::$strings["Post successful."] = "Verzenden bericht geslaagd."; +App::$strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; +App::$strings["Login failed."] = "Inloggen mislukt."; +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."] = "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd."; +App::$strings["Configuration Editor"] = "Configuratiebewerker"; +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."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. "; +App::$strings["Layout updated."] = "Lay-out bijgewerkt."; +App::$strings["Edit System Page Description"] = "Systeempagina's bewerken"; +App::$strings["Layout not found."] = "Lay-out niet gevonden."; +App::$strings["Module Name:"] = "Modulenaam:"; +App::$strings["Layout Help"] = "Lay-out-hulp"; +App::$strings["Poke"] = "Aanstoten"; +App::$strings["Poke somebody"] = "Iemand aanstoten"; +App::$strings["Poke/Prod"] = "Aanstoten/porren"; +App::$strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren"; +App::$strings["Recipient"] = "Ontvanger"; +App::$strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +App::$strings["Make this post private"] = "Maak dit bericht privé"; +App::$strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; +App::$strings["Profile not found."] = "Profiel niet gevonden."; +App::$strings["Profile deleted."] = "Profiel verwijderd."; +App::$strings["Profile-"] = "Profiel-"; +App::$strings["New profile created."] = "Nieuw profiel aangemaakt."; +App::$strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; +App::$strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; +App::$strings["Profile Name is required."] = "Profielnaam is vereist"; +App::$strings["Marital Status"] = "Huwelijke status"; +App::$strings["Romantic Partner"] = "Romantische partner"; +App::$strings["Likes"] = "Houdt van"; +App::$strings["Dislikes"] = "Houdt niet van"; +App::$strings["Work/Employment"] = "Werk/arbeid"; +App::$strings["Religion"] = "Religie"; +App::$strings["Political Views"] = "Politieke overtuigingen"; +App::$strings["Sexual Preference"] = "Seksuele voorkeur"; +App::$strings["Homepage"] = "Homepage"; +App::$strings["Interests"] = "Interesses"; +App::$strings["Profile updated."] = "Profiel bijgewerkt"; +App::$strings["Hide your connections list from viewers of this profile"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; +App::$strings["Edit Profile Details"] = "Profiel bewerken"; +App::$strings["View this profile"] = "Profiel weergeven"; +App::$strings["Edit visibility"] = "Zichtbaarheid bewerken"; +App::$strings["Profile Tools"] = "Hulpmiddelen"; +App::$strings["Change cover photo"] = "Omslagfoto wijzigen"; +App::$strings["Change profile photo"] = "Profielfoto veranderen"; +App::$strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; +App::$strings["Clone this profile"] = "Dit profiel klonen"; +App::$strings["Delete this profile"] = "Dit profiel verwijderen"; +App::$strings["Add profile things"] = "Dingen aan je profiel toevoegen"; +App::$strings["Personal"] = "Persoonlijk"; +App::$strings["Relation"] = "Relatie"; +App::$strings["Miscellaneous"] = "Diversen"; +App::$strings["Import profile from file"] = "Profiel vanuit bestand importeren"; +App::$strings["Export profile to file"] = "Profiel naar bestand exporteren"; +App::$strings["Your gender"] = "Jouw geslacht"; +App::$strings["Marital status"] = "Burgerlijke staat"; +App::$strings["Sexual preference"] = "Seksuele voorkeur"; +App::$strings["Profile name"] = "Profielnaam"; +App::$strings["This is your default profile."] = "Dit is jouw standaardprofiel"; +App::$strings["Your full name"] = "Jouw volledige naam"; +App::$strings["Title/Description"] = "Titel/omschrijving"; +App::$strings["Street address"] = "Straat en huisnummer"; +App::$strings["Locality/City"] = "Woonplaats"; +App::$strings["Region/State"] = "Provincie/gewest/deelstaat"; +App::$strings["Postal/Zip code"] = "Postcode"; +App::$strings["Country"] = "Land"; +App::$strings["Who (if applicable)"] = "Wie (wanneer van toepassing)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl"; +App::$strings["Since (date)"] = "Sinds (datum)"; +App::$strings["Tell us about yourself"] = "Vertel ons iets over jezelf"; +App::$strings["Hometown"] = "Oorspronkelijk uit"; +App::$strings["Political views"] = "Politieke overtuigingen"; +App::$strings["Religious views"] = "Religieuze overtuigingen"; +App::$strings["Keywords used in directory listings"] = "Trefwoorden voor in de kanalengids"; +App::$strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; +App::$strings["Musical interests"] = "Muzikale interesses"; +App::$strings["Books, literature"] = "Boeken/literatuur"; +App::$strings["Television"] = "Televisie"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/cultuur/entertainment"; +App::$strings["Hobbies/Interests"] = "Hobby's/interesses"; +App::$strings["Love/Romance"] = "Liefde/romantiek"; +App::$strings["School/Education"] = "School/opleiding"; +App::$strings["Contact information and social networks"] = "Contactinformatie en sociale netwerken"; +App::$strings["My other channels"] = "Mijn andere kanalen"; +App::$strings["Profile Image"] = "Profielfoto"; +App::$strings["Edit Profiles"] = "Bewerk profielen"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; +App::$strings["Upload Profile Photo"] = "Profielfoto uploaden"; +App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; +App::$strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; +App::$strings["Profile"] = "Profiel"; +App::$strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; +App::$strings["Visible To"] = "Zichtbaar voor"; +App::$strings["Public Hubs"] = "Openbare hubs"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; +App::$strings["Hub URL"] = "Hub-URL"; +App::$strings["Access Type"] = "Toegangs-
 type"; +App::$strings["Registration Policy"] = "Registratie-
 beleid"; +App::$strings["Stats"] = "Stats"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Beoordelingen"; +App::$strings["Rate"] = "Beoordeel"; +App::$strings["Website:"] = "Website:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; +App::$strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; +App::$strings["No ratings"] = "Geen beoordelingen"; +App::$strings["Rating: "] = "Beoordeling: "; +App::$strings["Website: "] = "Website: "; +App::$strings["Description: "] = "Omschrijving: "; App::$strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; App::$strings["# Accounts"] = "# accounts"; App::$strings["# blocked accounts"] = "# geblokkeerde accounts"; @@ -1011,91 +1031,19 @@ App::$strings["(In addition to basic fields)"] = "(als toevoeging op de standaar App::$strings["All available fields"] = "Alle beschikbare velden"; App::$strings["Custom Fields"] = "Extra (handmatig toegevoegde) velden"; App::$strings["Create Custom Field"] = "Extra velden aanmaken"; -App::$strings["Name or caption"] = "Naam"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\""; -App::$strings["Choose a short nickname"] = "Korte bijnaam"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s"; -App::$strings["Channel role and privacy"] = "Kanaaltype en privacy"; -App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau."; -App::$strings["Read more about roles"] = "Lees meer over kanaaltypes"; -App::$strings["Create Channel"] = "Kanaal aanmaken"; -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."] = "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen."; -App::$strings["or import an existing channel from another location."] = "Of importeer een bestaand kanaal vanaf een andere locatie"; -App::$strings["sent you a private message"] = "stuurde jou een privébericht"; -App::$strings["added your channel"] = "voegde jouw kanaal toe"; -App::$strings["g A l F d"] = "G:i, l d F"; -App::$strings["[today]"] = "[vandaag]"; -App::$strings["posted an event"] = "plaatste een gebeurtenis"; -App::$strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; -App::$strings["Discard"] = "Annuleren"; -App::$strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; -App::$strings["Poke"] = "Aanstoten"; -App::$strings["Poke somebody"] = "Iemand aanstoten"; -App::$strings["Poke/Prod"] = "Aanstoten/porren"; -App::$strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren"; -App::$strings["Recipient"] = "Ontvanger"; -App::$strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -App::$strings["Make this post private"] = "Maak dit bericht privé"; -App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; -App::$strings["Post successful."] = "Verzenden bericht geslaagd."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; -App::$strings["Login failed."] = "Inloggen mislukt."; -App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; -App::$strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; -App::$strings["Profile"] = "Profiel"; -App::$strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; -App::$strings["Visible To"] = "Zichtbaar voor"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd."; -App::$strings["Configuration Editor"] = "Configuratiebewerker"; -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."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. "; -App::$strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; -App::$strings["Version %s"] = "Versie %s"; -App::$strings["Installed plugins/addons/apps:"] = "Ingeschakelde plugins en apps:"; -App::$strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plugins en apps"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; -App::$strings["Tag: "] = "Tag: "; -App::$strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; -App::$strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; -App::$strings["Running at web location"] = "Draaiend op weblocatie"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; -App::$strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; -App::$strings["\$projectname issues"] = "\$projectname-issues"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; -App::$strings["Site Administrators"] = "Hubbeheerders: "; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; -App::$strings["The error message was:"] = "Het foutbericht was:"; -App::$strings["Authentication failed."] = "Authenticatie mislukt."; -App::$strings["Remote Authentication"] = "Authenticatie op afstand"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; -App::$strings["Authenticate"] = "Authenticeren"; -App::$strings["Public Hubs"] = "Openbare hubs"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; -App::$strings["Hub URL"] = "Hub-URL"; -App::$strings["Access Type"] = "Toegangs-
 type"; -App::$strings["Registration Policy"] = "Registratie-
 beleid"; -App::$strings["Stats"] = "Stats"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Beoordelingen"; -App::$strings["Rate"] = "Beoordeel"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; -App::$strings["Upload Profile Photo"] = "Profielfoto uploaden"; -App::$strings["Block Name"] = "Bloknaam"; -App::$strings["Blocks"] = "Blokken"; -App::$strings["Block Title"] = "Bloktitel"; -App::$strings["Website:"] = "Website:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; -App::$strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; -App::$strings["No ratings"] = "Geen beoordelingen"; -App::$strings["Rating: "] = "Beoordeling: "; -App::$strings["Website: "] = "Website: "; -App::$strings["Description: "] = "Omschrijving: "; -App::$strings["Apps"] = "Apps"; -App::$strings["Title (optional)"] = "Titel (optioneel)"; -App::$strings["Edit Block"] = "Blok bewerken"; -App::$strings["No channel."] = "Geen kanaal."; -App::$strings["Common connections"] = "Veel voorkomende connecties"; -App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties."; +App::$strings["App installed."] = "App geïnstalleerd"; +App::$strings["Malformed app."] = "Misvormde app."; +App::$strings["Embed code"] = "Insluitcode"; +App::$strings["Edit App"] = "App bewerken"; +App::$strings["Create App"] = "App maken"; +App::$strings["Name of app"] = "Naam van app"; +App::$strings["Location (URL) of app"] = "Locatie (URL) van app"; +App::$strings["Photo icon URL"] = "URL van pictogram"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; +App::$strings["Categories (optional, comma separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; +App::$strings["Version ID"] = "Versie-ID"; +App::$strings["Price of app"] = "Prijs van de app"; +App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; App::$strings["Select a bookmark folder"] = "Kies een bladwijzermap"; App::$strings["Save Bookmark"] = "Bladwijzer opslaan"; App::$strings["URL of bookmark"] = "URL van bladwijzer"; @@ -1121,7 +1069,7 @@ App::$strings["no"] = "Nee"; App::$strings["yes"] = "Ja"; App::$strings["Membership on this site is by invitation only."] = "Registreren op deze \$Projectname-hub kan alleen op uitnodiging."; App::$strings["Register"] = "Registreren"; -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."] = "Mogelijk moet op deze hub eerst jouw e-mail geverifieerd worden. Wanneer je na het indienen van dit formulier op de inlogpagina terecht komt, dan dien je jouw e-mail te controleren voor instructies. Controleer eventueel ook jouw spamfolder."; +App::$strings["Proceed to create your first channel"] = "Volgende stap: aanmaken van jouw eerste kanaal"; App::$strings["Please login."] = "Inloggen."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; App::$strings["Remove This Account"] = "Verwijder dit account"; @@ -1138,23 +1086,17 @@ App::$strings["This channel will be completely removed from the network. "] = "D App::$strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het \$Projectname-netwerk verwijderen"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het \$Projectname-netwerk verwijderd"; App::$strings["Remove Channel"] = "Kanaal verwijderen"; -App::$strings["Export Channel"] = "Kanaal exporteren"; -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."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; -App::$strings["Export Content"] = "Inhoud exporteren"; -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."] = "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; -App::$strings["Export your posts from a given year."] = "Exporteer jouw berichten uit een bepaald jaar."; -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."] = "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld dit jaar te selecteren. "; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren."; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2\$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen."; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; +App::$strings["The error message was:"] = "Het foutbericht was:"; +App::$strings["Authentication failed."] = "Authenticatie mislukt."; +App::$strings["Remote Authentication"] = "Authenticatie op afstand"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; +App::$strings["Authenticate"] = "Authenticeren"; App::$strings["Items tagged with: %s"] = "Items getagd met %s"; App::$strings["Search results for: %s"] = "Zoekresultaten voor %s"; App::$strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; App::$strings["Name is required"] = "Naam is vereist"; App::$strings["Key and Secret are required"] = "Key en secret zijn vereist"; -App::$strings["This channel is limited to %d tokens"] = "Dit kanaal heeft een limiet van %d tokens"; -App::$strings["Name and Password are required."] = "Naam en wachtwoord zijn vereist"; -App::$strings["Token saved."] = "Token opgeslagen."; App::$strings["Not valid email."] = "Geen geldig e-mailadres."; App::$strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; App::$strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; @@ -1187,12 +1129,6 @@ App::$strings["Confirm New Password"] = "Nieuw wachtwoord bevestigen"; App::$strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; App::$strings["Email Address:"] = "E-mailadres:"; App::$strings["Remove this account including all its channels"] = "Dit account en al zijn kanalen verwijderen"; -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."] = "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot de privéinhoud."; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Je kan ook dropbox-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:"; -App::$strings["Guest Access Tokens"] = "Gasttoegang"; -App::$strings["Login Name"] = "Inlognaam"; -App::$strings["Login Password"] = "Wachtwoord:"; -App::$strings["Expires (yyyy-mm-dd)"] = "Geldig t/m (yyyy-mm-dd)"; App::$strings["Additional Features"] = "Extra functies"; App::$strings["Connector Settings"] = "Instellingen externe koppelingen"; App::$strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; @@ -1355,6 +1291,7 @@ App::$strings["GD graphics PHP module"] = "GD graphics PHP module"; App::$strings["OpenSSL PHP module"] = "OpenSSL PHP module"; App::$strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; App::$strings["mb_string PHP module"] = "mb_string PHP module"; +App::$strings["mcrypt PHP module"] = "mcrypt PHP module"; App::$strings["xml PHP module"] = "xml PHP module"; App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; @@ -1365,6 +1302,7 @@ App::$strings["Error: GD graphics PHP module with JPEG support required but not App::$strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; App::$strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; +App::$strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: xml PHP module required for DAV but not installed."; 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."] = "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."; 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."] = "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."; @@ -1376,7 +1314,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."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; 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: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; App::$strings["%s is writable"] = "%s is writable"; -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"] = "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["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 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 is writable"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; 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!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; @@ -1384,7 +1322,6 @@ 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."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; -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."] = "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 certificate validation"; App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; App::$strings["Url rewrite is working"] = "Url rewrite is working"; @@ -1396,20 +1333,19 @@ App::$strings["Files: shared with me"] = "Bestanden: met mij gedeeld"; App::$strings["NEW"] = "NIEUW"; App::$strings["Remove all files"] = "Verwijder alle bestanden"; App::$strings["Remove this file"] = "Verwijder dit bestand"; -App::$strings["Thing updated"] = "Ding bijgewerkt"; -App::$strings["Object store: failed"] = "Opslaan van ding mislukt"; -App::$strings["Thing added"] = "Ding toegevoegd"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Ding weergeven"; -App::$strings["item not found."] = "Item niet gevonden"; -App::$strings["Edit Thing"] = "Ding bewerken"; -App::$strings["Select a profile"] = "Kies een profiel"; -App::$strings["Post an activity"] = "Plaats een bericht"; -App::$strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; -App::$strings["Name of thing e.g. something"] = "Naam van ding"; -App::$strings["URL of thing (optional)"] = "URL van ding (optioneel)"; -App::$strings["URL for photo of thing (optional)"] = "URL voor foto van ding (optioneel)"; -App::$strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; +App::$strings["Version %s"] = "Versie %s"; +App::$strings["Installed plugins/addons/apps:"] = "Ingeschakelde plugins en apps:"; +App::$strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plugins en apps"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; +App::$strings["Tag: "] = "Tag: "; +App::$strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; +App::$strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; +App::$strings["Running at web location"] = "Draaiend op weblocatie"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; +App::$strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; +App::$strings["\$projectname issues"] = "\$projectname-issues"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; +App::$strings["Site Administrators"] = "Hubbeheerders: "; App::$strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; App::$strings["Source created."] = "Bron aangemaakt."; App::$strings["Source updated."] = "Bron aangemaakt."; @@ -1437,38 +1373,60 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s App::$strings["Tag removed"] = "Tag verwijderd"; App::$strings["Remove Item Tag"] = "Verwijder item-tag"; App::$strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; -App::$strings["Webpages"] = "Webpagina's"; -App::$strings["Actions"] = "Acties"; -App::$strings["Page Link"] = "Paginalink"; -App::$strings["Page Title"] = "Paginatitel"; -App::$strings["Not found"] = "Niet gevonden"; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Sandbox"] = "Zandbak"; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandbox\\n\\nWat er hier onder **edit** en **preview** staat *wordt niet opgeslagen*.\""; -App::$strings["Revision Comparison"] = "Revisies vergelijken"; -App::$strings["Revert"] = "Ongedaan maken"; -App::$strings["Enter the name of your new wiki:"] = "Vul de naam in van jouw nieuwe wiki:"; -App::$strings["Enter the name of the new page:"] = "Vul de naam in van de nieuwe pagina:"; -App::$strings["Enter the new name:"] = "Vul de nieuwe naam in:"; -App::$strings["Embed image from photo albums"] = "Afbeelding uit een fotoalbum invoegen"; -App::$strings["Embed an image from your albums"] = "Afbeelding uit jouw albums invoegen"; -App::$strings["OK"] = "OK"; -App::$strings["Choose images to embed"] = "Kies afbeeldingen om in te voegen"; -App::$strings["Choose an album"] = "Kies een album"; -App::$strings["Choose a different album..."] = "Kies een ander album..."; -App::$strings["Error getting album list"] = "Fout met ophalen albumlijst"; -App::$strings["Error getting photo link"] = "Fout met ophalen fotolink"; -App::$strings["Error getting album"] = "Fout met ophalen album"; +App::$strings["Thing updated"] = "Ding bijgewerkt"; +App::$strings["Object store: failed"] = "Opslaan van ding mislukt"; +App::$strings["Thing added"] = "Ding toegevoegd"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Ding weergeven"; +App::$strings["item not found."] = "Item niet gevonden"; +App::$strings["Edit Thing"] = "Ding bewerken"; +App::$strings["Select a profile"] = "Kies een profiel"; +App::$strings["Post an activity"] = "Plaats een bericht"; +App::$strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; +App::$strings["Name of thing e.g. something"] = "Naam van ding"; +App::$strings["URL of thing (optional)"] = "URL van ding (optioneel)"; +App::$strings["URL for photo of thing (optional)"] = "URL voor foto van ding (optioneel)"; +App::$strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; +App::$strings["Export Channel"] = "Kanaal exporteren"; +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."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; +App::$strings["Export Content"] = "Inhoud exporteren"; +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."] = "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; +App::$strings["Export your posts from a given year."] = "Exporteer jouw berichten uit een bepaald jaar."; +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."] = "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld dit jaar te selecteren. "; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren."; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2\$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen."; App::$strings["No connections."] = "Geen connecties."; App::$strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; App::$strings["View Connections"] = "Connecties weergeven"; App::$strings["Source of Item"] = "Bron van item"; -App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; -App::$strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; -App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; +App::$strings["Webpages"] = "Webpagina's"; +App::$strings["Actions"] = "Acties"; +App::$strings["Page Link"] = "Paginalink"; +App::$strings["Page Title"] = "Paginatitel"; App::$strings["Xchan Lookup"] = "Xchan opzoeken"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; +App::$strings["Site Admin"] = "Hubbeheerder"; +App::$strings["Bug Report"] = "Bugrapport"; +App::$strings["View Bookmarks"] = "Bladwijzers bekijken"; +App::$strings["My Chatrooms"] = "Mijn chatkanalen"; +App::$strings["Firefox Share"] = "Firefox Share"; +App::$strings["Remote Diagnostics"] = "Diagnose op afstand"; +App::$strings["Suggest Channels"] = "Kanalen voorstellen"; +App::$strings["Login"] = "Inloggen"; +App::$strings["Grid"] = "Grid"; +App::$strings["Channel Home"] = "Jouw kanaal"; +App::$strings["Events"] = "Agenda"; +App::$strings["Directory"] = "Kanalengids"; +App::$strings["Mail"] = "Privéberichten"; +App::$strings["Chat"] = "Chatten"; +App::$strings["Probe"] = "Onderzoeken"; +App::$strings["Suggest"] = "Voorstellen"; +App::$strings["Random Channel"] = "Willekeurig kanaal"; +App::$strings["Invite"] = "Uitnodigen "; +App::$strings["Features"] = "Extra functies"; +App::$strings["Post"] = "Bericht"; +App::$strings["Purchase"] = "Aanschaffen"; App::$strings["Missing room name"] = "Naam chatkanaal ontbreekt"; App::$strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; App::$strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; @@ -1516,27 +1474,6 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Bezoek App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificatie]"; App::$strings["created a new post"] = "maakte een nieuw bericht aan"; App::$strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; -App::$strings["Site Admin"] = "Hubbeheerder"; -App::$strings["Bug Report"] = "Bugrapport"; -App::$strings["View Bookmarks"] = "Bladwijzers bekijken"; -App::$strings["My Chatrooms"] = "Mijn chatkanalen"; -App::$strings["Firefox Share"] = "Firefox Share"; -App::$strings["Remote Diagnostics"] = "Diagnose op afstand"; -App::$strings["Suggest Channels"] = "Kanalen voorstellen"; -App::$strings["Login"] = "Inloggen"; -App::$strings["Grid"] = "Grid"; -App::$strings["Channel Home"] = "Jouw kanaal"; -App::$strings["Events"] = "Agenda"; -App::$strings["Directory"] = "Kanalengids"; -App::$strings["Mail"] = "Privéberichten"; -App::$strings["Chat"] = "Chatten"; -App::$strings["Probe"] = "Onderzoeken"; -App::$strings["Suggest"] = "Voorstellen"; -App::$strings["Random Channel"] = "Willekeurig kanaal"; -App::$strings["Invite"] = "Uitnodigen "; -App::$strings["Features"] = "Extra functies"; -App::$strings["Post"] = "Bericht"; -App::$strings["Purchase"] = "Aanschaffen"; App::$strings["Private Message"] = "Niet voor iedereen zichtbaar"; App::$strings["Select"] = "Kies"; App::$strings["Save to Folder"] = "In map opslaan"; @@ -1573,7 +1510,7 @@ App::$strings["Expires: %s"] = "Verloopt: %s"; App::$strings["Save Bookmarks"] = "Bladwijzers opslaan"; App::$strings["Add to Calendar"] = "Aan agenda toevoegen"; App::$strings["Mark all seen"] = "Markeer alles als bekeken"; -App::$strings["%s show all"] = "%s alle"; +App::$strings["[+] show all"] = "[+] alle"; App::$strings["Bold"] = "Vet"; App::$strings["Italic"] = "Cursief"; App::$strings["Underline"] = "Onderstrepen"; @@ -1582,93 +1519,9 @@ App::$strings["Code"] = "Broncode"; App::$strings["Image"] = "Afbeelding"; App::$strings["Insert Link"] = "Link invoegen"; App::$strings["Video"] = "Video"; -App::$strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; -App::$strings["Only me"] = "Alleen ik"; -App::$strings["Public"] = "Openbaar"; -App::$strings["Anybody in the \$Projectname network"] = "Iedereen in het \$Projectname-netwerk"; -App::$strings["Any account on %s"] = "Iedereen op %s"; -App::$strings["Any of my connections"] = "Al mijn geaccepteerde connecties"; -App::$strings["Only connections I specifically allow"] = "Alleen connecties die uitdrukkelijk door jou zijn toegestaan"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Al mijn geaccepteerde en nog niet geaccepteerde connecties"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken"; -App::$strings["This is your default setting for who can view your default channel profile"] = "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken"; -App::$strings["This is your default setting for who can view your connections"] = "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken"; -App::$strings["This is your default setting for the audience of your webpages"] = "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken"; App::$strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden."; App::$strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; -App::$strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; -App::$strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; -App::$strings["a new photo"] = "een nieuwe foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s"; -App::$strings["Photo Albums"] = "Fotoalbums"; -App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -App::$strings["Logout"] = "Uitloggen"; -App::$strings["End this session"] = "Beëindig deze sessie"; -App::$strings["Home"] = "Home"; -App::$strings["Your posts and conversations"] = "Jouw kanaal"; -App::$strings["Your profile page"] = "Jouw profielpagina"; -App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; -App::$strings["Edit Profile"] = "Profiel bewerken"; -App::$strings["Edit your profile"] = "Jouw profiel bewerken"; -App::$strings["Your photos"] = "Jouw foto's"; -App::$strings["Your files"] = "Jouw bestanden"; -App::$strings["Your chatrooms"] = "Jouw chatkanalen"; -App::$strings["Bookmarks"] = "Bladwijzers"; -App::$strings["Your bookmarks"] = "Jouw bladwijzers"; -App::$strings["Your webpages"] = "Jouw webpagina's"; -App::$strings["Your wiki"] = "Jouw wiki"; -App::$strings["Sign in"] = "Inloggen"; -App::$strings["%s - click to logout"] = "%s - klik om uit te loggen"; -App::$strings["Remote authentication"] = "Authenticatie op afstand"; -App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; -App::$strings["Home Page"] = "Homepage"; -App::$strings["Create an account"] = "Maak een account aan"; -App::$strings["Help and documentation"] = "Hulp en documentatie"; -App::$strings["Applications, utilities, links, games"] = "Apps"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; -App::$strings["Channel Directory"] = "Kanalengids"; -App::$strings["Your grid"] = "Jouw grid"; -App::$strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; -App::$strings["Channel home"] = "Jouw kanaal"; -App::$strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; -App::$strings["Notices"] = "Notificaties"; -App::$strings["Notifications"] = "Notificaties"; -App::$strings["See all notifications"] = "Alle notificaties weergeven"; -App::$strings["Private mail"] = "Privéberichten"; -App::$strings["See all private messages"] = "Alle privéberichten weergeven"; -App::$strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; -App::$strings["Inbox"] = "Postvak IN"; -App::$strings["Outbox"] = "Postvak UIT"; -App::$strings["New Message"] = "Nieuw bericht"; -App::$strings["Event Calendar"] = "Agenda"; -App::$strings["See all events"] = "Alle gebeurtenissen weergeven"; -App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; -App::$strings["Manage Your Channels"] = "Beheer je kanalen"; -App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; -App::$strings["Admin"] = "Beheer"; -App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; -App::$strings["Loading..."] = "Aan het laden..."; -App::$strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; -App::$strings["Please wait..."] = "Wachten aub..."; -App::$strings["view full size"] = "volledige grootte tonen"; -App::$strings["Administrator"] = "Beheerder"; -App::$strings["No Subject"] = "Geen onderwerp"; -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"] = "Nieuwe pagina"; -App::$strings["Title"] = "Titel"; App::$strings["Categories"] = "Categorieën"; App::$strings["Tags"] = "Tags"; App::$strings["Keywords"] = "Trefwoorden"; @@ -1678,196 +1531,34 @@ App::$strings["want"] = "wil"; App::$strings["wants"] = "wil"; App::$strings["likes"] = "vindt dit leuk"; App::$strings["dislikes"] = "vindt dit niet leuk"; -App::$strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; -App::$strings["Empty name"] = "Ontbrekende naam"; -App::$strings["Name too long"] = "Naam te lang"; -App::$strings["No account identifier"] = "Geen account-identificator"; -App::$strings["Nickname is required."] = "Bijnaam is verplicht"; -App::$strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; -App::$strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; -App::$strings["Default Profile"] = "Standaardprofiel"; -App::$strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; -App::$strings["Create New Profile"] = "Nieuw profiel aanmaken"; -App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar"; -App::$strings["Gender:"] = "Geslacht:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Homepagina:"; -App::$strings["Online Now"] = "Nu online"; -App::$strings["Like this channel"] = "Vind dit kanaal leuk"; -App::$strings["j F, Y"] = "F j Y"; -App::$strings["j F"] = "F j"; -App::$strings["Birthday:"] = "Geboortedatum:"; -App::$strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Seksuele voorkeur:"; -App::$strings["Tags:"] = "Tags:"; -App::$strings["Political Views:"] = "Politieke overtuigingen:"; -App::$strings["Religion:"] = "Religie:"; -App::$strings["Hobbies/Interests:"] = "Hobby's/interesses:"; -App::$strings["Likes:"] = "Houdt van:"; -App::$strings["Dislikes:"] = "Houdt niet van:"; -App::$strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -App::$strings["My other channels:"] = "Mijn andere kanalen"; -App::$strings["Musical interests:"] = "Muzikale interesses:"; -App::$strings["Books, literature:"] = "Boeken, literatuur:"; -App::$strings["Television:"] = "Televisie:"; -App::$strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; -App::$strings["Love/Romance:"] = "Liefde/romantiek:"; -App::$strings["Work/employment:"] = "Werk/beroep:"; -App::$strings["School/education:"] = "School/opleiding:"; -App::$strings["Like this thing"] = "Vind dit ding leuk"; -App::$strings["New window"] = "Nieuw venster"; -App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; -App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; -App::$strings["poked"] = "aangestoten"; -App::$strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; -App::$strings["Categories:"] = "Categorieën:"; -App::$strings["Filed under:"] = "Bewaard onder:"; -App::$strings["View in context"] = "In context bekijken"; -App::$strings["remove"] = "verwijderen"; -App::$strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; -App::$strings["View Source"] = "Bron weergeven"; -App::$strings["Follow Thread"] = "Conversatie volgen"; -App::$strings["Unfollow Thread"] = "Conversatie niet meer volgen"; -App::$strings["Activity/Posts"] = "Activiteit/berichten connectie"; -App::$strings["Edit Connection"] = "Connectie bewerken"; -App::$strings["Message"] = "Bericht"; -App::$strings["%s likes this."] = "%s vindt dit leuk."; -App::$strings["%s doesn't like this."] = "%s vindt dit niet leuk."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d persoon vindt dit leuk.", - 1 => "%2\$d personen vinden dit leuk.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d persoon vindt dit niet leuk.", - 1 => "%2\$d personen vinden dit niet leuk.", -); -App::$strings["and"] = "en"; -App::$strings[", and %d other people"] = array( - 0 => ", en %d ander persoon", - 1 => ", en %d andere personen", -); -App::$strings["%s like this."] = "%s vinden dit leuk."; -App::$strings["%s don't like this."] = "%s vinden dit niet leuk."; -App::$strings["Set your location"] = "Locatie instellen"; -App::$strings["Clear browser location"] = "Locatie van webbrowser wissen"; -App::$strings["Tag term:"] = "Tag:"; -App::$strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; -App::$strings["Page link name"] = "Linknaam pagina"; -App::$strings["Post as"] = "Bericht plaatsen als"; -App::$strings["Toggle voting"] = "Peiling in- of uitschakelen"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; -App::$strings["Set publish date"] = "Publicatiedatum instellen"; -App::$strings["Discover"] = "Ontdekken"; -App::$strings["Imported public streams"] = "Openbare streams importeren"; -App::$strings["Commented Order"] = "Nieuwe reacties bovenaan"; -App::$strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; -App::$strings["Posted Order"] = "Nieuwe berichten bovenaan"; -App::$strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; -App::$strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; -App::$strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; -App::$strings["Starred"] = "Met ster"; -App::$strings["Favourite Posts"] = "Favoriete berichten"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; -App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal"; -App::$strings["About"] = "Over"; -App::$strings["Profile Details"] = "Profiel"; -App::$strings["Files and Storage"] = "Bestanden en opslagruimte"; -App::$strings["Chatrooms"] = "Chatkanalen"; -App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; -App::$strings["Manage Webpages"] = "Webpagina's beheren"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "aanwezig", - 1 => "aanwezig", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "niet aanwezig", - 1 => "niet aanwezig", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "nog niet beslist", - 1 => "nog niet beslist", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "eens", - 1 => "eens", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "oneens", - 1 => "oneens", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "onthouding", - 1 => "onthoudingen", -); +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +App::$strings["Starts:"] = "Start:"; +App::$strings["Finishes:"] = "Einde:"; +App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; +App::$strings["Not specified"] = "Niet aangegeven"; +App::$strings["Needs Action"] = "Actie vereist"; +App::$strings["Completed"] = "Voltooid"; +App::$strings["In Process"] = "In behandeling"; +App::$strings["Cancelled"] = "Geannuleerd"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; App::$strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; -App::$strings["Frequently"] = "Regelmatig"; -App::$strings["Hourly"] = "Elk uur"; -App::$strings["Twice daily"] = "Twee keer per dag"; -App::$strings["Daily"] = "Dagelijks"; -App::$strings["Weekly"] = "Wekelijks"; -App::$strings["Monthly"] = "Maandelijks"; -App::$strings["Currently Male"] = "Momenteel man"; -App::$strings["Currently Female"] = "Momenteel vrouw"; -App::$strings["Mostly Male"] = "Voornamelijk man"; -App::$strings["Mostly Female"] = "Voornamelijk vrouw"; -App::$strings["Transgender"] = "Transgender"; -App::$strings["Intersex"] = "Interseksueel"; -App::$strings["Transsexual"] = "Transseksueel"; -App::$strings["Hermaphrodite"] = "Hermafrodiet"; -App::$strings["Neuter"] = "Genderneutraal"; -App::$strings["Non-specific"] = "Niet gespecificeerd"; -App::$strings["Undecided"] = "Nog niet beslist"; -App::$strings["Males"] = "Mannen"; -App::$strings["Females"] = "Vrouwen"; -App::$strings["Gay"] = "Homoseksueel"; -App::$strings["Lesbian"] = "Lesbisch"; -App::$strings["No Preference"] = "Geen voorkeur"; -App::$strings["Bisexual"] = "Biseksueel"; -App::$strings["Autosexual"] = "Autoseksueel"; -App::$strings["Abstinent"] = "Seksuele onthouding"; -App::$strings["Virgin"] = "Maagd"; -App::$strings["Deviant"] = "Afwijkend"; -App::$strings["Fetish"] = "Fetisj"; -App::$strings["Oodles"] = "Veel"; -App::$strings["Nonsexual"] = "Aseksueel"; -App::$strings["Single"] = "Alleen"; -App::$strings["Lonely"] = "Eenzaam"; -App::$strings["Available"] = "Beschikbaar"; -App::$strings["Unavailable"] = "Niet beschikbaar"; -App::$strings["Has crush"] = "Heeft een oogje op iemand"; -App::$strings["Infatuated"] = "Smoorverliefd"; -App::$strings["Dating"] = "Aan het daten"; -App::$strings["Unfaithful"] = "Ontrouw"; -App::$strings["Sex Addict"] = "Seksverslaafd"; -App::$strings["Friends/Benefits"] = "Vriendschap plus"; -App::$strings["Casual"] = "Ongebonden/vluchtig"; -App::$strings["Engaged"] = "Verloofd"; -App::$strings["Married"] = "Getrouwd"; -App::$strings["Imaginarily married"] = "Denkbeeldig getrouwd"; -App::$strings["Partners"] = "Partners"; -App::$strings["Cohabiting"] = "Samenwonend"; -App::$strings["Common law"] = "Common-law-huwelijk"; -App::$strings["Happy"] = "Gelukkig"; -App::$strings["Not looking"] = "Niet op zoek"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Verraden"; -App::$strings["Separated"] = "Uit elkaar"; -App::$strings["Unstable"] = "Onstabiel"; -App::$strings["Divorced"] = "Gescheiden"; -App::$strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; -App::$strings["Widowed"] = "Weduwnaar/weduwe"; -App::$strings["Uncertain"] = "Onzeker"; -App::$strings["It's complicated"] = "Het is ingewikkeld"; -App::$strings["Don't care"] = "Maakt mij niks uit"; -App::$strings["Ask me"] = "Vraag het me"; -App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -App::$strings["guest:"] = "gast:"; -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."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; +App::$strings["(Unknown)"] = "(Onbekend)"; +App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; +App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; +App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; +App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; +App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; +App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; +App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; +App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; +App::$strings["Privacy group is empty."] = "Privacygroep is leeg"; +App::$strings["Privacy group: %s"] = "Privacygroep: %s"; +App::$strings["Connection not found."] = "Connectie niet gevonden."; +App::$strings["profile photo"] = "profielfoto"; +App::$strings["No recipient provided."] = "Geen ontvanger opgegeven."; +App::$strings["[no subject]"] = "[geen onderwerp]"; +App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; +App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; App::$strings["prev"] = "vorige"; App::$strings["first"] = "eerste"; App::$strings["last"] = "laatste"; @@ -1877,6 +1568,7 @@ App::$strings["newer"] = "nieuwer"; App::$strings["No connections"] = "Geen connecties"; App::$strings["View all %s connections"] = "Toon alle %s connecties"; App::$strings["poke"] = "aanstoten"; +App::$strings["poked"] = "aangestoten"; App::$strings["ping"] = "ping"; App::$strings["pinged"] = "gepingd"; App::$strings["prod"] = "por"; @@ -1939,21 +1631,385 @@ App::$strings["Select an alternate language"] = "Kies een andere taal"; App::$strings["activity"] = "activiteit"; App::$strings["Design Tools"] = "Ontwerp-hulpmiddelen"; App::$strings["Pages"] = "Pagina's"; -App::$strings["Logged out."] = "Uitgelogd."; -App::$strings["Failed authentication"] = "Mislukte authenticatie"; -App::$strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; -App::$strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; -App::$strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; -App::$strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; -App::$strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; -App::$strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; -App::$strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; -App::$strings["Can write to my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; -App::$strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; -App::$strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; +App::$strings["System"] = "Systeem"; +App::$strings["New App"] = "Nieuwe app"; +App::$strings["Suggestions"] = "Voorgestelde kanalen"; +App::$strings["See more..."] = "Meer..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; +App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen"; +App::$strings["Enter channel address"] = "Vul kanaaladres in"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara"; +App::$strings["Notes"] = "Aantekeningen"; +App::$strings["Remove term"] = "Verwijder zoekterm"; +App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +App::$strings["add"] = "toevoegen"; +App::$strings["Saved Folders"] = "Bewaarde mappen"; +App::$strings["Everything"] = "Alles"; +App::$strings["Archives"] = "Archieven"; +App::$strings["Refresh"] = "Vernieuwen"; +App::$strings["Account settings"] = "Account"; +App::$strings["Channel settings"] = "Kanaal"; +App::$strings["Additional features"] = "Extra functies"; +App::$strings["Feature/Addon settings"] = "Plugin-instellingen"; +App::$strings["Display settings"] = "Weergave"; +App::$strings["Manage locations"] = "Locaties beheren"; +App::$strings["Export channel"] = "Kanaal exporteren"; +App::$strings["Connected apps"] = "Verbonden applicaties"; +App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; +App::$strings["Private Mail Menu"] = "Privéberichten"; +App::$strings["Combined View"] = "Gecombineerd postvak"; +App::$strings["Inbox"] = "Postvak IN"; +App::$strings["Outbox"] = "Postvak UIT"; +App::$strings["New Message"] = "Nieuw bericht"; +App::$strings["Conversations"] = "Conversaties"; +App::$strings["Received Messages"] = "Ontvangen berichten"; +App::$strings["Sent Messages"] = "Verzonden berichten"; +App::$strings["No messages."] = "Geen berichten"; +App::$strings["Delete conversation"] = "Verwijder conversatie"; +App::$strings["Events Menu"] = "Agenda-menu"; +App::$strings["Day View"] = "Dag tonen"; +App::$strings["Week View"] = "Week tonen"; +App::$strings["Month View"] = "Maand tonen"; +App::$strings["Events Tools"] = "Agenda-hulpmiddelen"; +App::$strings["Export Calendar"] = "Exporteren"; +App::$strings["Import Calendar"] = "Importeren"; +App::$strings["Chatrooms"] = "Chatkanalen"; +App::$strings["Overview"] = "Overzicht"; +App::$strings["Chat Members"] = "Chatleden"; +App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; +App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; +App::$strings["photo/image"] = "foto/afbeelding"; +App::$strings["Click to show more"] = "Klik voor meer"; +App::$strings["Rating Tools"] = "Beoordelingen"; +App::$strings["Rate Me"] = "Beoordeel mij"; +App::$strings["View Ratings"] = "Bekijk beoordelingen"; +App::$strings["Forums"] = "Forums"; +App::$strings["Tasks"] = "Taken"; +App::$strings["Documentation"] = "Documentatie"; +App::$strings["Project/Site Information"] = "Project- en hub-informatie"; +App::$strings["For Members"] = "Voor leden"; +App::$strings["For Administrators"] = "Voor beheerders"; +App::$strings["For Developers"] = "Voor ontwikkelaars"; +App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; +App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; +App::$strings["DB updates"] = "Database-updates"; +App::$strings["Admin"] = "Beheer"; +App::$strings["Plugin Features"] = "Plugin-opties"; +App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; +App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie."; +App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; +App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; +App::$strings["Protocol disabled."] = "Protocol uitgeschakeld."; +App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; +App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; +App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; +App::$strings["Public Timeline"] = "Openbare tijdlijn"; +App::$strings["Image/photo"] = "Afbeelding/foto"; +App::$strings["Encrypted content"] = "Versleutelde inhoud"; +App::$strings["Install %s element: "] = "Installeer %s-element: "; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klik om te openen of te sluiten"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; +App::$strings["$1 wrote:"] = "$1 schreef:"; +App::$strings["Directory Options"] = "Opties kanalengids"; +App::$strings["Safe Mode"] = "Veilig zoeken"; +App::$strings["Public Forums Only"] = "Alleen openbare forums"; +App::$strings["This Website Only"] = "Alleen deze hub"; +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."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; +App::$strings["Logout"] = "Uitloggen"; +App::$strings["End this session"] = "Beëindig deze sessie"; +App::$strings["Home"] = "Home"; +App::$strings["Your posts and conversations"] = "Jouw kanaal"; +App::$strings["Your profile page"] = "Jouw profielpagina"; +App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; +App::$strings["Edit Profile"] = "Profiel bewerken"; +App::$strings["Edit your profile"] = "Jouw profiel bewerken"; +App::$strings["Your photos"] = "Jouw foto's"; +App::$strings["Your files"] = "Jouw bestanden"; +App::$strings["Your chatrooms"] = "Jouw chatkanalen"; +App::$strings["Bookmarks"] = "Bladwijzers"; +App::$strings["Your bookmarks"] = "Jouw bladwijzers"; +App::$strings["Your webpages"] = "Jouw webpagina's"; +App::$strings["Sign in"] = "Inloggen"; +App::$strings["%s - click to logout"] = "%s - klik om uit te loggen"; +App::$strings["Remote authentication"] = "Authenticatie op afstand"; +App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; +App::$strings["Home Page"] = "Homepage"; +App::$strings["Create an account"] = "Maak een account aan"; +App::$strings["Help and documentation"] = "Hulp en documentatie"; +App::$strings["Applications, utilities, links, games"] = "Apps"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; +App::$strings["Channel Directory"] = "Kanalengids"; +App::$strings["Your grid"] = "Jouw grid"; +App::$strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; +App::$strings["Channel home"] = "Jouw kanaal"; +App::$strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; +App::$strings["Notices"] = "Notificaties"; +App::$strings["Notifications"] = "Notificaties"; +App::$strings["See all notifications"] = "Alle notificaties weergeven"; +App::$strings["Private mail"] = "Privéberichten"; +App::$strings["See all private messages"] = "Alle privéberichten weergeven"; +App::$strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; +App::$strings["Event Calendar"] = "Agenda"; +App::$strings["See all events"] = "Alle gebeurtenissen weergeven"; +App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; +App::$strings["Manage Your Channels"] = "Beheer je kanalen"; +App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; +App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; +App::$strings["Loading..."] = "Aan het laden..."; +App::$strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; +App::$strings["Please wait..."] = "Wachten aub..."; +App::$strings["New window"] = "Nieuw venster"; +App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; +App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; +App::$strings["%d invitation available"] = array( + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", +); +App::$strings["Find Channels"] = "Kanalen vinden"; +App::$strings["Enter name or interest"] = "Vul naam of interesse in"; +App::$strings["Connect/Follow"] = "Verbinden/volgen"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; +App::$strings["Random Profile"] = "Willekeurig profiel"; +App::$strings["Invite Friends"] = "Vrienden uitnodigen"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; +App::$strings["%d connection in common"] = array( + 0 => "%d gemeenschappelijke connectie", + 1 => "%d gemeenschappelijke connecties", +); +App::$strings["show more"] = "meer connecties weergeven"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; +App::$strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; +App::$strings["Categories:"] = "Categorieën:"; +App::$strings["Filed under:"] = "Bewaard onder:"; +App::$strings["View in context"] = "In context bekijken"; +App::$strings["remove"] = "verwijderen"; +App::$strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; +App::$strings["View Source"] = "Bron weergeven"; +App::$strings["Follow Thread"] = "Conversatie volgen"; +App::$strings["Unfollow Thread"] = "Conversatie niet meer volgen"; +App::$strings["Activity/Posts"] = "Activiteit/berichten connectie"; +App::$strings["Edit Connection"] = "Connectie bewerken"; +App::$strings["Message"] = "Bericht"; +App::$strings["%s likes this."] = "%s vindt dit leuk."; +App::$strings["%s doesn't like this."] = "%s vindt dit niet leuk."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d persoon vindt dit leuk.", + 1 => "%2\$d personen vinden dit leuk.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d persoon vindt dit niet leuk.", + 1 => "%2\$d personen vinden dit niet leuk.", +); +App::$strings["and"] = "en"; +App::$strings[", and %d other people"] = array( + 0 => ", en %d ander persoon", + 1 => ", en %d andere personen", +); +App::$strings["%s like this."] = "%s vinden dit leuk."; +App::$strings["%s don't like this."] = "%s vinden dit niet leuk."; +App::$strings["Set your location"] = "Locatie instellen"; +App::$strings["Clear browser location"] = "Locatie van webbrowser wissen"; +App::$strings["Tag term:"] = "Tag:"; +App::$strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; +App::$strings["Page link name"] = "Linknaam pagina"; +App::$strings["Post as"] = "Bericht plaatsen als"; +App::$strings["Toggle voting"] = "Peiling in- of uitschakelen"; +App::$strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; +App::$strings["Set publish date"] = "Publicatiedatum instellen"; +App::$strings["OK"] = "OK"; +App::$strings["Discover"] = "Ontdekken"; +App::$strings["Imported public streams"] = "Openbare streams importeren"; +App::$strings["Commented Order"] = "Nieuwe reacties bovenaan"; +App::$strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; +App::$strings["Posted Order"] = "Nieuwe berichten bovenaan"; +App::$strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +App::$strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; +App::$strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; +App::$strings["Starred"] = "Met ster"; +App::$strings["Favourite Posts"] = "Favoriete berichten"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; +App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal"; +App::$strings["About"] = "Over"; +App::$strings["Profile Details"] = "Profiel"; +App::$strings["Photo Albums"] = "Fotoalbums"; +App::$strings["Files and Storage"] = "Bestanden en opslagruimte"; +App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; +App::$strings["Manage Webpages"] = "Webpagina's beheren"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "aanwezig", + 1 => "aanwezig", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "niet aanwezig", + 1 => "niet aanwezig", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "nog niet beslist", + 1 => "nog niet beslist", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "eens", + 1 => "eens", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "oneens", + 1 => "oneens", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "onthouding", + 1 => "onthoudingen", +); +App::$strings["Frequently"] = "Regelmatig"; +App::$strings["Hourly"] = "Elk uur"; +App::$strings["Twice daily"] = "Twee keer per dag"; +App::$strings["Daily"] = "Dagelijks"; +App::$strings["Weekly"] = "Wekelijks"; +App::$strings["Monthly"] = "Maandelijks"; +App::$strings["Currently Male"] = "Momenteel man"; +App::$strings["Currently Female"] = "Momenteel vrouw"; +App::$strings["Mostly Male"] = "Voornamelijk man"; +App::$strings["Mostly Female"] = "Voornamelijk vrouw"; +App::$strings["Transgender"] = "Transgender"; +App::$strings["Intersex"] = "Interseksueel"; +App::$strings["Transsexual"] = "Transseksueel"; +App::$strings["Hermaphrodite"] = "Hermafrodiet"; +App::$strings["Neuter"] = "Genderneutraal"; +App::$strings["Non-specific"] = "Niet gespecificeerd"; +App::$strings["Other"] = "Anders"; +App::$strings["Undecided"] = "Nog niet beslist"; +App::$strings["Males"] = "Mannen"; +App::$strings["Females"] = "Vrouwen"; +App::$strings["Gay"] = "Homoseksueel"; +App::$strings["Lesbian"] = "Lesbisch"; +App::$strings["No Preference"] = "Geen voorkeur"; +App::$strings["Bisexual"] = "Biseksueel"; +App::$strings["Autosexual"] = "Autoseksueel"; +App::$strings["Abstinent"] = "Seksuele onthouding"; +App::$strings["Virgin"] = "Maagd"; +App::$strings["Deviant"] = "Afwijkend"; +App::$strings["Fetish"] = "Fetisj"; +App::$strings["Oodles"] = "Veel"; +App::$strings["Nonsexual"] = "Aseksueel"; +App::$strings["Single"] = "Alleen"; +App::$strings["Lonely"] = "Eenzaam"; +App::$strings["Available"] = "Beschikbaar"; +App::$strings["Unavailable"] = "Niet beschikbaar"; +App::$strings["Has crush"] = "Heeft een oogje op iemand"; +App::$strings["Infatuated"] = "Smoorverliefd"; +App::$strings["Dating"] = "Aan het daten"; +App::$strings["Unfaithful"] = "Ontrouw"; +App::$strings["Sex Addict"] = "Seksverslaafd"; +App::$strings["Friends/Benefits"] = "Vriendschap plus"; +App::$strings["Casual"] = "Ongebonden/vluchtig"; +App::$strings["Engaged"] = "Verloofd"; +App::$strings["Married"] = "Getrouwd"; +App::$strings["Imaginarily married"] = "Denkbeeldig getrouwd"; +App::$strings["Partners"] = "Partners"; +App::$strings["Cohabiting"] = "Samenwonend"; +App::$strings["Common law"] = "Common-law-huwelijk"; +App::$strings["Happy"] = "Gelukkig"; +App::$strings["Not looking"] = "Niet op zoek"; +App::$strings["Swinger"] = "Swinger"; +App::$strings["Betrayed"] = "Verraden"; +App::$strings["Separated"] = "Uit elkaar"; +App::$strings["Unstable"] = "Onstabiel"; +App::$strings["Divorced"] = "Gescheiden"; +App::$strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; +App::$strings["Widowed"] = "Weduwnaar/weduwe"; +App::$strings["Uncertain"] = "Onzeker"; +App::$strings["It's complicated"] = "Het is ingewikkeld"; +App::$strings["Don't care"] = "Maakt mij niks uit"; +App::$strings["Ask me"] = "Vraag het me"; +App::$strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; +App::$strings["Only me"] = "Alleen ik"; +App::$strings["Public"] = "Openbaar"; +App::$strings["Anybody in the \$Projectname network"] = "Iedereen in het \$Projectname-netwerk"; +App::$strings["Any account on %s"] = "Iedereen op %s"; +App::$strings["Any of my connections"] = "Al mijn geaccepteerde connecties"; +App::$strings["Only connections I specifically allow"] = "Alleen connecties die uitdrukkelijk door jou zijn toegestaan"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Al mijn geaccepteerde en nog niet geaccepteerde connecties"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken"; +App::$strings["This is your default setting for who can view your default channel profile"] = "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken"; +App::$strings["This is your default setting for who can view your connections"] = "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken"; +App::$strings["This is your default setting for the audience of your webpages"] = "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken"; +App::$strings["Not a valid email address"] = "Geen geldig e-mailadres"; +App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; +App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; +App::$strings["An invitation is required."] = "Een uitnodiging is vereist"; +App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; +App::$strings["Please enter the required information."] = "Vul de vereiste informatie in."; +App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; +App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; +App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s"; +App::$strings["Administrator"] = "Beheerder"; +App::$strings["your registration password"] = "jouw registratiewachtwoord"; +App::$strings["Registration details for %s"] = "Registratiegegevens voor %s"; +App::$strings["Account approved."] = "Account goedgekeurd"; +App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +App::$strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; +App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; +App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; +App::$strings["Item was not found."] = "Item niet gevonden"; +App::$strings["No source file."] = "Geen bronbestand."; +App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; +App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; +App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; +App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; +App::$strings["Path not available."] = "Pad niet beschikbaar."; +App::$strings["Empty pathname"] = "Padnaam leeg"; +App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; +App::$strings["Path not found."] = "Pad niet gevonden"; +App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; +App::$strings["database storage failed."] = "opslag in database mislukt."; +App::$strings["Empty path"] = "Ontbrekend bestandspad"; +App::$strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; +App::$strings["Empty name"] = "Ontbrekende naam"; +App::$strings["Name too long"] = "Naam te lang"; +App::$strings["No account identifier"] = "Geen account-identificator"; +App::$strings["Nickname is required."] = "Bijnaam is verplicht"; +App::$strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; +App::$strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; +App::$strings["Default Profile"] = "Standaardprofiel"; +App::$strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; +App::$strings["Create New Profile"] = "Nieuw profiel aanmaken"; +App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar"; +App::$strings["Gender:"] = "Geslacht:"; +App::$strings["Status:"] = "Status:"; +App::$strings["Homepage:"] = "Homepagina:"; +App::$strings["Online Now"] = "Nu online"; +App::$strings["Like this channel"] = "Vind dit kanaal leuk"; +App::$strings["j F, Y"] = "F j Y"; +App::$strings["j F"] = "F j"; +App::$strings["Birthday:"] = "Geboortedatum:"; +App::$strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Seksuele voorkeur:"; +App::$strings["Tags:"] = "Tags:"; +App::$strings["Political Views:"] = "Politieke overtuigingen:"; +App::$strings["Religion:"] = "Religie:"; +App::$strings["Hobbies/Interests:"] = "Hobby's/interesses:"; +App::$strings["Likes:"] = "Houdt van:"; +App::$strings["Dislikes:"] = "Houdt niet van:"; +App::$strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +App::$strings["My other channels:"] = "Mijn andere kanalen"; +App::$strings["Musical interests:"] = "Muzikale interesses:"; +App::$strings["Books, literature:"] = "Boeken, literatuur:"; +App::$strings["Television:"] = "Televisie:"; +App::$strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; +App::$strings["Love/Romance:"] = "Liefde/romantiek:"; +App::$strings["Work/employment:"] = "Werk/beroep:"; +App::$strings["School/education:"] = "School/opleiding:"; +App::$strings["Like this thing"] = "Vind dit ding leuk"; App::$strings["General Features"] = "Algemene functies"; App::$strings["Content Expiration"] = "Inhoud laten verlopen"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; @@ -1965,7 +2021,6 @@ App::$strings["Profile Import/Export"] = "Profiel importen/exporteren"; App::$strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; App::$strings["Web Pages"] = "Webpagina's"; App::$strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; -App::$strings["Provide a wiki for your channel"] = "Voeg een wiki aan jouw kanaal toe"; App::$strings["Hide Rating"] = "Beoordelingen verbergen"; App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. "; App::$strings["Private Notes"] = "Privé-aantekeningen"; @@ -1999,7 +2054,6 @@ App::$strings["Search by Date"] = "Zoek op datum"; App::$strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; App::$strings["Privacy Groups"] = "Privacygroepen"; App::$strings["Enable management and selection of privacy groups"] = "Beheer en selectie van privacygroepen inschakelen"; -App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; App::$strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; App::$strings["Network Personal Tab"] = "Persoonlijke netwerktab"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; @@ -2008,166 +2062,79 @@ App::$strings["Enable tab to display all new Network activity"] = "Laat de tab a App::$strings["Affinity Tool"] = "Verwantschapsfilter"; App::$strings["Filter stream activity by depth of relationships"] = "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag"; App::$strings["Connection Filtering"] = "Berichtenfilters"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal"; -App::$strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; -App::$strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; -App::$strings["Community Tagging"] = "Taggen door anderen"; -App::$strings["Ability to tag existing posts"] = "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen"; -App::$strings["Post Categories"] = "Categorieën berichten"; -App::$strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -App::$strings["Emoji Reactions"] = "Emoji-reacties"; -App::$strings["Add emoji reaction ability to posts"] = "Emoji-reacties in berichten toestaan"; -App::$strings["Saved Folders"] = "Bewaarde mappen"; -App::$strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; -App::$strings["Dislike Posts"] = "Vind berichten niet leuk"; -App::$strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; -App::$strings["Star Posts"] = "Geef berichten een ster"; -App::$strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; -App::$strings["Tag Cloud"] = "Tagwolk"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; -App::$strings["Add new connections to this privacy group"] = "Voeg nieuwe connecties aan deze privacygroep toe"; -App::$strings["edit"] = "bewerken"; -App::$strings["Edit group"] = "Privacygroep bewerken"; -App::$strings["Add privacy group"] = "Privacygroep toevoegen"; -App::$strings["Channels not in any privacy group"] = "Kanalen die zich in geen enkele privacygroep bevinden"; -App::$strings["add"] = "toevoegen"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -App::$strings["Starts:"] = "Start:"; -App::$strings["Finishes:"] = "Einde:"; -App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; -App::$strings["Not specified"] = "Niet aangegeven"; -App::$strings["Needs Action"] = "Actie vereist"; -App::$strings["Completed"] = "Voltooid"; -App::$strings["In Process"] = "In behandeling"; -App::$strings["Cancelled"] = "Geannuleerd"; -App::$strings["Not a valid email address"] = "Geen geldig e-mailadres"; -App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; -App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; -App::$strings["An invitation is required."] = "Een uitnodiging is vereist"; -App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; -App::$strings["Please enter the required information."] = "Vul de vereiste informatie in."; -App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; -App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; -App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s"; -App::$strings["your registration password"] = "jouw registratiewachtwoord"; -App::$strings["Registration details for %s"] = "Registratiegegevens voor %s"; -App::$strings["Account approved."] = "Account goedgekeurd"; -App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; -App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; -App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; -App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie."; -App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; -App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; -App::$strings["Protocol disabled."] = "Protocol uitgeschakeld."; -App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; -App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; -App::$strings["Item was not found."] = "Item niet gevonden"; -App::$strings["No source file."] = "Geen bronbestand."; -App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; -App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; -App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; -App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; -App::$strings["Path not available."] = "Pad niet beschikbaar."; -App::$strings["Empty pathname"] = "Padnaam leeg"; -App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; -App::$strings["Path not found."] = "Pad niet gevonden"; -App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; -App::$strings["database storage failed."] = "opslag in database mislukt."; -App::$strings["Empty path"] = "Ontbrekend bestandspad"; -App::$strings["Image/photo"] = "Afbeelding/foto"; -App::$strings["Encrypted content"] = "Versleutelde inhoud"; -App::$strings["Install %s element: "] = "Installeer %s-element: "; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klik om te openen of te sluiten"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; -App::$strings["$1 wrote:"] = "$1 schreef:"; -App::$strings["(Unknown)"] = "(Onbekend)"; -App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; -App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; -App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; -App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; -App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; -App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; -App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; -App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; -App::$strings["Privacy group is empty."] = "Privacygroep is leeg"; -App::$strings["Privacy group: %s"] = "Privacygroep: %s"; -App::$strings["Connection not found."] = "Connectie niet gevonden."; -App::$strings["profile photo"] = "profielfoto"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal"; +App::$strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; +App::$strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; +App::$strings["Community Tagging"] = "Taggen door anderen"; +App::$strings["Ability to tag existing posts"] = "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen"; +App::$strings["Post Categories"] = "Categorieën berichten"; +App::$strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; +App::$strings["Emoji Reactions"] = "Emoji-reacties"; +App::$strings["Add emoji reaction ability to posts"] = "Emoji-reacties in berichten toestaan"; +App::$strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; +App::$strings["Dislike Posts"] = "Vind berichten niet leuk"; +App::$strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; +App::$strings["Star Posts"] = "Geef berichten een ster"; +App::$strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; +App::$strings["Tag Cloud"] = "Tagwolk"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud"; App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; -App::$strings["System"] = "Systeem"; -App::$strings["New App"] = "Nieuwe app"; -App::$strings["Suggestions"] = "Voorgestelde kanalen"; -App::$strings["See more..."] = "Meer..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; -App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen"; -App::$strings["Enter channel address"] = "Vul kanaaladres in"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara"; -App::$strings["Notes"] = "Aantekeningen"; -App::$strings["Remove term"] = "Verwijder zoekterm"; -App::$strings["Everything"] = "Alles"; -App::$strings["Archives"] = "Archieven"; -App::$strings["Refresh"] = "Vernieuwen"; -App::$strings["Account settings"] = "Account"; -App::$strings["Channel settings"] = "Kanaal"; -App::$strings["Additional features"] = "Extra functies"; -App::$strings["Feature/Addon settings"] = "Plugin-instellingen"; -App::$strings["Display settings"] = "Weergave"; -App::$strings["Manage locations"] = "Locaties beheren"; -App::$strings["Export channel"] = "Kanaal exporteren"; -App::$strings["Connected apps"] = "Verbonden applicaties"; -App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; -App::$strings["Private Mail Menu"] = "Privéberichten"; -App::$strings["Combined View"] = "Gecombineerd postvak"; -App::$strings["Conversations"] = "Conversaties"; -App::$strings["Received Messages"] = "Ontvangen berichten"; -App::$strings["Sent Messages"] = "Verzonden berichten"; -App::$strings["No messages."] = "Geen berichten"; -App::$strings["Delete conversation"] = "Verwijder conversatie"; -App::$strings["Events Tools"] = "Agenda-hulpmiddelen"; -App::$strings["Export Calendar"] = "Exporteren"; -App::$strings["Import Calendar"] = "Importeren"; -App::$strings["Overview"] = "Overzicht"; -App::$strings["Chat Members"] = "Chatleden"; -App::$strings["Wiki List"] = "Wiki's"; -App::$strings["Wiki Pages"] = "Wikipagina's"; -App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; -App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; -App::$strings["photo/image"] = "foto/afbeelding"; -App::$strings["Click to show more"] = "Klik voor meer"; -App::$strings["Rating Tools"] = "Beoordelingen"; -App::$strings["Rate Me"] = "Beoordeel mij"; -App::$strings["View Ratings"] = "Bekijk beoordelingen"; -App::$strings["Forums"] = "Forums"; -App::$strings["Tasks"] = "Taken"; -App::$strings["Documentation"] = "Documentatie"; -App::$strings["Project/Site Information"] = "Project- en hub-informatie"; -App::$strings["For Members"] = "Voor leden"; -App::$strings["For Administrators"] = "Voor beheerders"; -App::$strings["For Developers"] = "Voor ontwikkelaars"; -App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; -App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; -App::$strings["DB updates"] = "Database-updates"; -App::$strings["Plugin Features"] = "Plugin-opties"; -App::$strings[" and "] = " en "; -App::$strings["public profile"] = "openbaar profiel"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; -App::$strings["Attachments:"] = "Bijlagen:"; -App::$strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; +App::$strings["Who can see this?"] = "Wie kan dit zien?"; +App::$strings["Custom selection"] = "Handmatige selectie"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"."; +App::$strings["Show"] = "Tonen"; +App::$strings["Don't show"] = "Niet tonen"; +App::$strings["Other networks and post services"] = "Andere netwerken en diensten"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien."; +App::$strings["Logged out."] = "Uitgelogd."; +App::$strings["Failed authentication"] = "Mislukte authenticatie"; +App::$strings["Birthday"] = "Verjaardag of geboortedatum"; +App::$strings["Age: "] = "Leeftijd:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; +App::$strings["never"] = "nooit"; +App::$strings["less than a second ago"] = "minder dan een seconde geleden"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "jaar", + 1 => "jaren", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "maand", + 1 => "maanden", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "week", + 1 => "weken", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "dag", + 1 => "dagen", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "uur", + 1 => "uren", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuut", + 1 => "minuten", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "seconde", + 1 => "seconden", +); +App::$strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; +App::$strings["Add new connections to this privacy group"] = "Voeg nieuwe connecties aan deze privacygroep toe"; +App::$strings["edit"] = "bewerken"; +App::$strings["Edit group"] = "Privacygroep bewerken"; +App::$strings["Add privacy group"] = "Privacygroep toevoegen"; +App::$strings["Channels not in any privacy group"] = "Kanalen die zich in geen enkele privacygroep bevinden"; App::$strings["Delete this item?"] = "Dit item verwijderen?"; -App::$strings["%s show less"] = "%s minder reacties weergeven"; -App::$strings["%s expand"] = "%s uitklappen"; -App::$strings["%s collapse"] = "%s inklappen"; +App::$strings["[-] show less"] = "[-] minder reacties weergeven"; +App::$strings["[+] expand"] = "[+] uitklappen"; +App::$strings["[-] collapse"] = "[-] inklappen"; App::$strings["Password too short"] = "Wachtwoord te kort"; App::$strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; App::$strings["everybody"] = "iedereen"; @@ -2222,78 +2189,72 @@ App::$strings["__ctx:calendar__ month"] = "maand"; App::$strings["__ctx:calendar__ week"] = "week"; App::$strings["__ctx:calendar__ day"] = "dag"; App::$strings["__ctx:calendar__ All day"] = "hele dag"; -App::$strings["%d invitation available"] = array( - 0 => "%d uitnodiging beschikbaar", - 1 => "%d uitnodigingen beschikbaar", -); -App::$strings["Find Channels"] = "Kanalen vinden"; -App::$strings["Enter name or interest"] = "Vul naam of interesse in"; -App::$strings["Connect/Follow"] = "Verbinden/volgen"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; -App::$strings["Random Profile"] = "Willekeurig profiel"; -App::$strings["Invite Friends"] = "Vrienden uitnodigen"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; -App::$strings["%d connection in common"] = array( - 0 => "%d gemeenschappelijke connectie", - 1 => "%d gemeenschappelijke connecties", -); -App::$strings["show more"] = "meer connecties weergeven"; -App::$strings["Directory Options"] = "Opties kanalengids"; -App::$strings["Safe Mode"] = "Veilig zoeken"; -App::$strings["Public Forums Only"] = "Alleen openbare forums"; -App::$strings["This Website Only"] = "Alleen deze hub"; -App::$strings["No recipient provided."] = "Geen ontvanger opgegeven."; -App::$strings["[no subject]"] = "[geen onderwerp]"; -App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; -App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; -App::$strings["Who can see this?"] = "Wie kan dit zien?"; -App::$strings["Custom selection"] = "Handmatige selectie"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"."; -App::$strings["Show"] = "Tonen"; -App::$strings["Don't show"] = "Niet tonen"; -App::$strings["Other networks and post services"] = "Andere netwerken en diensten"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
Met deze permissies bepaal je wie het bericht kan zien."; -App::$strings["Birthday"] = "Verjaardag of geboortedatum"; -App::$strings["Age: "] = "Leeftijd:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; -App::$strings["never"] = "nooit"; -App::$strings["less than a second ago"] = "minder dan een seconde geleden"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "jaar", - 1 => "jaren", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "maand", - 1 => "maanden", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "week", - 1 => "weken", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "dag", - 1 => "dagen", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "uur", - 1 => "uren", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuut", - 1 => "minuten", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "seconde", - 1 => "seconden", -); -App::$strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; -App::$strings["Public Timeline"] = "Openbare tijdlijn"; +App::$strings["view full size"] = "volledige grootte tonen"; +App::$strings["No Subject"] = "Geen onderwerp"; +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"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; +App::$strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; +App::$strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; +App::$strings["a new photo"] = "een nieuwe foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s"; +App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden"; App::$strings["Invalid data packet"] = "Datapakket ongeldig"; App::$strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; App::$strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; App::$strings["invalid target signature"] = "ongeldig doelkenmerk"; +App::$strings["New Page"] = "Nieuwe pagina"; +App::$strings["Title"] = "Titel"; +App::$strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; +App::$strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; +App::$strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; +App::$strings["Can view my file storage and photos"] = "Kan mijn foto's en andere bestanden bekijken"; +App::$strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; +App::$strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; +App::$strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; +App::$strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; +App::$strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; +App::$strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; +App::$strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; +App::$strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; +App::$strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; +App::$strings["Can write to my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; +App::$strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; +App::$strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; +App::$strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; +App::$strings["Social Networking"] = "Sociaal netwerk"; +App::$strings["Social - Mostly Public"] = "Sociaal - Vrijwel alles openbaar"; +App::$strings["Social - Restricted"] = "Sociaal - Beperkt zichtbaar"; +App::$strings["Social - Private"] = "Sociaal - Verborgen kanaal"; +App::$strings["Community Forum"] = "Groepsforum"; +App::$strings["Forum - Mostly Public"] = "Forum - Vrijwel alles openbaar"; +App::$strings["Forum - Restricted"] = "Forum - Beperkt zichtbaar"; +App::$strings["Forum - Private"] = "Forum - Verborgen kanaal"; +App::$strings["Feed Republish"] = "Feed herpubliceren"; +App::$strings["Feed - Mostly Public"] = "Feed - Vrijwel alles openbaar"; +App::$strings["Feed - Restricted"] = "Feed - Beperkt zichtbaar"; +App::$strings["Special Purpose"] = "Speciaal doel"; +App::$strings["Special - Celebrity/Soapbox"] = "Speciaal - Beroemdheid/alleen volgen"; +App::$strings["Special - Group Repository"] = "Speciaal - Groepsopslag"; +App::$strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; +App::$strings[" and "] = " en "; +App::$strings["public profile"] = "openbaar profiel"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; +App::$strings["Attachments:"] = "Bijlagen:"; +App::$strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla-standaard)"; App::$strings["Theme settings"] = "Thema-instellingen"; App::$strings["Select scheme"] = "Kies schema van thema"; @@ -2333,7 +2294,6 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek."; App::$strings["Update Error at %s"] = "Update-fout op %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla"; -App::$strings["Login/Email"] = "E-mailadres of inlognaam"; App::$strings["Password"] = "Wachtwoord"; App::$strings["Remember me"] = "Aangemeld blijven"; App::$strings["Forgot your password?"] = "Wachtwoord vergeten?"; 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_actionspanel.tpl b/view/tpl/cloud_actionspanel.tpl index 8976b3007..81a586e75 100644 --- a/view/tpl/cloud_actionspanel.tpl +++ b/view/tpl/cloud_actionspanel.tpl @@ -1,20 +1,20 @@
- -
- - - -
-
+ +
+ + + +
+
- {{if $quota.limit || $quota.used}}{{/if}} -
- - -
- - -
-
+ {{if $quota.limit || $quota.used}}{{/if}} + +
+ + + + +
+
diff --git a/view/tpl/cloud_directory.tpl b/view/tpl/cloud_directory.tpl index 06176fdb8..870f7e9e1 100644 --- a/view/tpl/cloud_directory.tpl +++ b/view/tpl/cloud_directory.tpl @@ -1,4 +1,4 @@ -
+
diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index ee00e25e6..9953875ef 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -164,12 +164,6 @@ function enableOnUser(){ }); } catch(e) { } - - - // call initialization file - if (window.File && window.FileList && window.FileReader) { - DragDropUploadInit(); - } }); function deleteCheckedItems() { @@ -452,81 +446,7 @@ function enableOnUser(){ }, 'json'); }; - - // - // initialize - function DragDropUploadInit() { - - var filedrag = $("#profile-jot-text"); - - // is XHR2 available? - var xhr = new XMLHttpRequest(); - if (xhr.upload) { - - // file drop - filedrag.on("dragover", DragDropUploadFileHover); - filedrag.on("dragleave", DragDropUploadFileHover); - filedrag.on("drop", DragDropUploadFileSelectHandler); - - } - - window.filesToUpload = 0; - window.fileUploadsCompleted = 0; - - - } - - // file drag hover - function DragDropUploadFileHover(e) { - e.stopPropagation(); - e.preventDefault(); - e.target.className = (e.type == "dragover" ? "hover" : ""); - } - - // file selection - function DragDropUploadFileSelectHandler(e) { - - // cancel event and hover styling - DragDropUploadFileHover(e); - - // fetch FileList object - var files = e.target.files || e.originalEvent.dataTransfer.files; - // process all File objects - for (var i = 0, f; f = files[i]; i++) { - DragDropUploadFile(f, i); - } - - } - - // upload files - function DragDropUploadFile(file, idx) { - - window.filesToUpload = window.filesToUpload + 1; - - var xhr = new XMLHttpRequest(); - xhr.withCredentials = true; // Include the SESSION cookie info for authentication - (xhr.upload || xhr).addEventListener('progress', function (e) { - $('#profile-rotator').spin('tiny'); - }); - xhr.addEventListener('load', function (e) { - //console.log('xhr upload complete', e); - window.fileUploadsCompleted = window.fileUploadsCompleted + 1; - // When all the uploads have completed, refresh the page - if (window.filesToUpload > 0 && window.fileUploadsCompleted === window.filesToUpload) { - addeditortext(xhr.responseText); - $('#jot-media').val($('#jot-media').val() + xhr.responseText); - $('#profile-rotator').spin(false); - window.fileUploadsCompleted = window.filesToUpload = 0; - } - }); - // POST to the wall_upload endpoint - xhr.open('post', '{{$baseurl}}/wall_attach/{{$nickname}}', true); - - var data = new FormData(); - data.append('userfile', file); - xhr.send(data); - } - +