From bc74425872704ad955b37de18639ec831a245761 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 28 Jul 2016 16:02:51 -0700 Subject: [PATCH] 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 | 15 +- 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 | 194 +- 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 | 3290 +++--- util/po2php.php | 4 +- vendor/sabre/dav/lib/DAV/Browser/Plugin.php | 6 +- view/ca/hmessages.po | 9660 ++++++++-------- view/ca/hstrings.php | 2196 ++-- view/css/conversation.css | 6 - view/css/mod_cloud.css | 6 - view/de/hmessages.po | 9616 ++++++++-------- view/de/hstrings.php | 2154 ++-- view/es-es/hmessages.po | 9616 ++++++++-------- view/es-es/hstrings.php | 2152 ++-- view/fr/hmessages.po | 9594 ++++++++-------- view/fr/hstrings.php | 2152 ++-- view/it/hmessages.po | 9800 ++++++++--------- view/it/hstrings.php | 2200 ++-- view/js/main.js | 4 +- view/js/mod_cloud.js | 190 - view/nb-no/hmessages.po | 9458 ++++++++-------- view/nb-no/hstrings.php | 2136 ++-- view/nl/hmessages.po | 9614 ++++++++-------- view/nl/hstrings.php | 2152 ++-- 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, 43275 insertions(+), 45748 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); + $permDetails = $global_perms[$permname]; - $result = new PermissionDescription('', $channelPerm); + // 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']; - } + $x = get_role_perms($role); + if($x['perms_accept']) + $abook_my_perms = $x['perms_accept']; } - - $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); - } - } - + $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,24 +422,19 @@ 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); + $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) . ' '; } - else { - del_pconfig(local_channel(),'autoperms',$k); + if($p === 'directory_publish') { + $publish = intval($v); } - } - - if($role_permissions['limits']) { - foreach($role_permissions['limits'] as $k => $v) { - \Zotlabs\Access\PermissionLimits::Set(local_channel(),$k,$v); - } - } - if(array_key_exists('directory_publish',$role_permissions)) { - $publish = intval($role_permissions['directory_publish']); } } @@ -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); - } + $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) { - $m = \Zotlabs\Access\Permissions::FilledAutoperms($channel['channel_id']); - if($m) { - $my_perms = $m; - } - } - - 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'; - - $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'] ]; - } - } + elseif($msg['message']['type'] === 'mail') { + $col = 'channel_w_mail'; + $field = PERMS_W_MAIL; } - // logger('message: ' . print_r($msg['message'],true)); + 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) . " ) "; + } + + $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 +#: ../../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/widgets.php:103 +msgid "System" +msgstr "" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "" + +#: ../../include/widgets.php:175 #, php-format -msgid "Image exceeds website size limit of %lu bytes" +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/photos.php:121 -msgid "Image file is empty." +#: ../../include/widgets.php:181 +msgid "Add New Connection" msgstr "" -#: ../../include/photos.php:259 -msgid "Photo storage failed." +#: ../../include/widgets.php:182 +msgid "Enter channel address" msgstr "" -#: ../../include/photos.php:299 -msgid "a new photo" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" msgstr "" -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" +#: ../../include/widgets.php:199 +msgid "Notes" msgstr "" -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" +#: ../../include/widgets.php:273 +msgid "Remove term" msgstr "" -#: ../../include/photos.php:510 -msgid "Upload New Photos" +#: ../../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,10 +7441,35 @@ 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" +#: ../../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 @@ -7428,171 +7504,561 @@ 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 +#: ../../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 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +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" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Ask me" +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:812 +msgid "This event has been added to your calendar." +msgstr "" + +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "" + +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "" + +#: ../../include/event.php:1014 +msgid "Completed" +msgstr "" + +#: ../../include/event.php:1015 +msgid "In Process" +msgstr "" + +#: ../../include/event.php:1016 +msgid "Cancelled" +msgstr "" + +#: ../../include/bookmarks.php:35 #, php-format -msgid "User '%s' deleted" +msgid "%1$s's bookmarks" +msgstr "" + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: ../../include/datetime.php:272 ../../boot.php:2486 +msgid "never" +msgstr "" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../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/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" msgstr "" #: ../../include/conversation.php:204 @@ -7804,11 +8270,6 @@ msgstr "" 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 "" @@ -7859,613 +8320,71 @@ msgid_plural "Abstains" msgstr[0] "" msgstr[1] "" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../include/items.php:898 ../../include/items.php:943 +msgid "(Unknown)" msgstr "" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." +#: ../../include/items.php:1142 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/selectors.php:30 -msgid "Frequently" +#: ../../include/items.php:1144 +msgid "Visible to you only." msgstr "" -#: ../../include/selectors.php:31 -msgid "Hourly" +#: ../../include/items.php:1146 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/selectors.php:32 -msgid "Twice daily" +#: ../../include/items.php:1148 +msgid "Visible to anybody authenticated." 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" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "" - -#: ../../include/bookmarks.php:35 +#: ../../include/items.php:1150 #, php-format -msgid "%1$s's bookmarks" +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/security.php:109 -msgid "guest:" +#: ../../include/items.php:1152 +msgid "Visible to all connections." 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/items.php:1154 +msgid "Visible to approved connections." msgstr "" -#: ../../include/text.php:404 -msgid "prev" +#: ../../include/items.php:1156 +msgid "Visible to specific connections." msgstr "" -#: ../../include/text.php:406 -msgid "first" +#: ../../include/items.php:3919 +msgid "Privacy group is empty." msgstr "" -#: ../../include/text.php:435 -msgid "last" -msgstr "" - -#: ../../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 +#: ../../include/items.php:3926 #, php-format -msgid "View all %s connections" +msgid "Privacy group: %s" msgstr "" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" +#: ../../include/items.php:3938 +msgid "Connection not found." msgstr "" -#: ../../include/text.php:1019 -msgid "ping" +#: ../../include/items.php:4291 +msgid "profile photo" msgstr "" -#: ../../include/text.php:1019 -msgid "pinged" +#: ../../include/connections.php:95 +msgid "New window" msgstr "" -#: ../../include/text.php:1020 -msgid "prod" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:1021 -msgid "slap" -msgstr "" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "" - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "" - -#: ../../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:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -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:2235 -msgid "Design Tools" -msgstr "" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "" - -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "" - -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -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 @@ -8659,10 +8578,6 @@ msgstr "" 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 "" @@ -8731,11 +8646,6 @@ msgstr "" 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 "" @@ -8791,47 +8701,144 @@ msgstr "" msgid "Channels not in any privacy group" msgstr "" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" msgstr "" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" +#: ../../include/permissions.php:28 +msgid "Can view my connections" msgstr "" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" msgstr "" -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." +#: ../../include/permissions.php:30 +msgid "Can view my webpages" msgstr "" -#: ../../include/event.php:1014 -msgid "Not specified" +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../include/event.php:1015 -msgid "Needs Action" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/event.php:1016 -msgid "Completed" +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" msgstr "" -#: ../../include/event.php:1017 -msgid "In Process" +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" msgstr "" -#: ../../include/event.php:1018 -msgid "Cancelled" +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "" + +#: ../../include/permissions.php:46 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "" + +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" msgstr "" #: ../../include/account.php:28 @@ -8902,32 +8909,8 @@ msgstr "" msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "" - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "" - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "" - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "" - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "" - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "" - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." +#: ../../include/api.php:1326 +msgid "Public Timeline" msgstr "" #: ../../include/attach.php:247 ../../include/attach.php:333 @@ -9039,284 +9022,21 @@ msgstr "" msgid "$1 wrote:" msgstr "" -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" +#: ../../include/import.php:29 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../include/items.php:1143 -msgid "Visible to you only." +#: ../../include/auth.php:116 +msgid "Logged out." msgstr "" -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "" - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "" - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "" - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "" - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "" - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "" - -#: ../../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: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: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: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:1410 -msgid "Forums" -msgstr "" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -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 "" @@ -9544,6 +9325,34 @@ msgstr "" 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 msgid "Sun" msgstr "" @@ -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/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" +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" msgstr "" -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" +#: ../../include/text.php:1019 +msgid "ping" msgstr "" -#: ../../include/api.php:1327 -msgid "Public Timeline" +#: ../../include/text.php:1019 +msgid "pinged" msgstr "" -#: ../../include/zot.php:697 -msgid "Invalid data packet" +#: ../../include/text.php:1020 +msgid "prod" msgstr "" -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" +#: ../../include/text.php:1020 +msgid "prodded" msgstr "" -#: ../../include/zot.php:2326 -#, php-format -msgid "Unable to verify site signature for %s" +#: ../../include/text.php:1021 +msgid "slap" msgstr "" -#: ../../include/zot.php:3703 -msgid "invalid target signature" +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:1022 +msgid "finger" +msgstr "" + +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:1035 +msgid "happy" +msgstr "" + +#: ../../include/text.php:1036 +msgid "sad" +msgstr "" + +#: ../../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,6 +265,229 @@ msgstr "El perfil demanat no està disponible." msgid "Some blurb about what to do when you're new here" msgstr "Algunes propostes sobre el que cal fer quan ets nou aquí" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nom del Bloc" + +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Bloc" + +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Títol del bloc" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 +#: ../../include/page_widgets.php:44 +msgid "Created" +msgstr "Creat" + +#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 +#: ../../include/page_widgets.php:45 +msgid "Edited" +msgstr "Editat" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 +#: ../../include/conversation.php:1208 +msgid "Share" +msgstr "Compartir" + +#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 +#: ../../include/page_widgets.php:39 +msgid "View" +msgstr "Mostra" + +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canal no trobat." + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permís denegat." + +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l, F j" + +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Enllaç a la Font" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Editar l'Esdeveniment" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Crear Esdeveniment" + +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 +#: ../../Zotlabs/Module/Photos.php:949 +msgid "Previous" +msgstr "Anterior" + +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Pròxim" + +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Exporta" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importar" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 +#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 +#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 +#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:842 +#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 +#: ../../include/widgets.php:769 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Enviar" + +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Avui" + +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Has d'estar identificat per a veure aquesta pàgina." + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "Entrades i comentaris" + +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "Només entrades" + +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permisos insuficients. Petició redirigida a la pàgina del perfil." + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "No s'ha trobat la sala" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Abandona la sala" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Esborra Sala" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Absent" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Estic connectat/da" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Fes favorit aquest xat" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 +#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 +msgid "Please enter a link URL:" +msgstr "Si us plau entra l'enllaç URL:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 +#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1256 +msgid "Encrypt text" +msgstr "Text encriptat" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 +msgid "Insert web link" +msgstr "Insereix enllaç web" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funcionalitat desactivada." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nova sala per a Xerrar" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Nom de la sala de xat" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Expiració dels chats (minuts)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 +#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:283 +msgid "Permissions" +msgstr "Permisos " + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$s de Xats" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "No hi ha sales de xat disponibles" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" +msgstr "Crear Nou" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Expiració" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Absent" @@ -417,6 +496,65 @@ msgstr "Absent" msgid "Online" msgstr "En connexió" +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Article invàlid." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Favorit afegit" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Els Meus Favorits" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Les connexions dels meus Favorits" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continua" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Configuració de Canals Premium" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Habilita les restriccions de connexió del canal premium" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Si us plau, introdueixi les restriccions o condicions, com ara el rebut de PayPal, les pautes d'ús, etc." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Aquest canal pot requerir passos addicionals o reconeixement de les següents condicions abans de connectar:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Connexions potencials veuran el següent text abans de continuar:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "En continuar, certifico que he complert amb totes les instruccions proporcionades en aquesta pàgina." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(No s'han proporcionat instruccions específiques pel propietari del canal.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canal Restringit o Premium" + #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "No s'ha pogut accedir al llibre de contactes." @@ -425,350 +563,317 @@ msgstr "No s'ha pogut accedir al llibre de contactes." msgid "Could not locate selected profile." msgstr "No s'ha trobat el perfil indicat." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "S'ha actualitzat la connexió." -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../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:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "Ara està conectat amb" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "No" msgstr "No" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "Yes" msgstr "Sí" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../Zotlabs/Module/Connedit.php:411 msgid "Could not access address book record." msgstr "No puc accedir al registre del contacte" -#: ../../Zotlabs/Module/Connedit.php:455 +#: ../../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:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 msgid "Unable to set address book parameters." msgstr "No es poden ajustar els paràmetres dels contactes." -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "S'han eliminat les conexions." -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 msgid "View Profile" msgstr "Veure Perfil" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:522 #, php-format msgid "View %s's profile" msgstr "Mostra el perfil de %s" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:526 msgid "Refresh Permissions" msgstr "Recarrega els Permissos" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:529 msgid "Fetch updated permissions" msgstr "Obté els permisos actualitzats" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Recent Activity" msgstr "Activitat Recent" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:536 msgid "View recent posts and comments" msgstr "Mostra les entrades i comentaris recents" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Desbloquejat" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Bloquejat" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../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:574 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "This connection is blocked!" msgstr "Aquesta connexió està bloquejada!" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 msgid "Unignore" msgstr "Inhabilita" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignora" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../Zotlabs/Module/Connedit.php:551 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Ignora (o Considera) les communicacions entrants d'aquesta connexió" -#: ../../Zotlabs/Module/Connedit.php:582 +#: ../../Zotlabs/Module/Connedit.php:552 msgid "This connection is ignored!" msgstr "Aquesta connexió es ignorada!" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Unarchive" msgstr "Desarxiva" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Archive" msgstr "Arxiva" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../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:590 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "This connection is archived!" msgstr "Aquesta connexió està arxivada!" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Unhide" msgstr "Mostra" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../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,121 +889,17 @@ 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/Id.php:13 -msgid "First Name" -msgstr "Nom" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Cognoms" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Àlies" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nom Sencer" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 -msgid "Email" -msgstr "Correu electrónic" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Foto del Perfil" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Foto del Perfil 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Foto del Perfil 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Foto del Perfil 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Foto del Perfil 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Foto del Perfil 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Foto del Perfil 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Zona horària" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "URL de la pàgina d'inici" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Idioma" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Any de Naixement" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Mes de Naixement" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Dia de Naixement" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Aniversari" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Gènere" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Masculí" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Femení" - -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "S'ha afegit el canal." - #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -918,12 +919,12 @@ msgstr "Estatus:" msgid "Homepage: " msgstr "Pàgina Personal:" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 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,322 +1020,38 @@ 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/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Habilita les restriccions de connexió del canal premium" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Si us plau, introdueixi les restriccions o condicions, com ara el rebut de PayPal, les pautes d'ús, etc." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Aquest canal pot requerir passos addicionals o reconeixement de les següents condicions abans de connectar:" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Connexions potencials veuran el següent text abans de continuar:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "En continuar, certifico que he complert amb totes les instruccions proporcionades en aquesta pàgina." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(No s'han proporcionat instruccions específiques pel propietari del canal.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canal Restringit o Premium" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Entrades de Calendari importades." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "No es troben entrades decalendari." - -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "L'esdeveniment ha de començar abans d'acabar." - -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "No s'ha pogut generar la vista prèvia." - -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Cal indicar l'inici i el final de l'esdeveniment." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "No s'ha trobat l'esdeveniment." - -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1924 ../../include/event.php:951 -msgid "event" -msgstr "succés" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Edita el títol d'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Títol esdeveniment" - -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Requerit" - -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Categories (llista separada per comes)" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Editar Categoria" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Categoria" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Editar data i hora d'inici" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Data i hora d'inici" - -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "L'ora de finalització no es coneix o es irrelevant." - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Editar la data i hora de finalització" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Data i hora de finalització" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "Ajusta a la zona horària del visitant." - -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "És important per esdeveniments locals, però pels globals no és pràctic." - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Editar la Descripció" - -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descripció" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Editar la localització" - -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Localització" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Comparteix aquest esdeveniment" - -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 -#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 -msgid "Preview" -msgstr "Avanç" - -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Ajustos de permisos" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Opcions Avançades" - -#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l, j \\d\\e/\\d' F" - -#: ../../Zotlabs/Module/Events.php:609 -msgid "Edit event" -msgstr "Edita l'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Esborra l'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Enllaç a la Font" - -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "calendari" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Editar l'Esdeveniment" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Crear Esdeveniment" - -#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:947 -msgid "Previous" -msgstr "Anterior" - -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Pròxim" - -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Exporta" - -#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Mostra" - -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Avui" - -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "S'ha eliminat l'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "No s'ha pogut esborrar l'esdeveniment" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Favorit afegit" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Els Meus Favorits" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Les connexions dels meus Favorits" - -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:81 msgid "Item not found" msgstr "No s'ha trobat l'element" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Article no editable" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Títol (opcional)" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Modifica l'entrada" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Editar Bloc" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Fotos" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "No s'ha trobat el canal" -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 -#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 -#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 -#: ../../include/conversation.php:1274 -msgid "Cancel" -msgstr "Cancel·la" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Connexions en comú" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Article invàlid." - -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canal no trobat." - -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Guardar en la Carpeta" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- selecciona -" - -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Guardar" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "No hi ha connexions en comú." #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1362,7 +1079,7 @@ msgstr "Arxivades" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 +#: ../../include/conversation.php:1535 msgid "New" msgstr "Nou" @@ -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,69 +1265,200 @@ 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/Events.php:254 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 +#: ../../include/text.php:1943 ../../include/conversation.php:123 +msgid "event" +msgstr "succés" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Edita el títol d'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Títol esdeveniment" + +#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Requerit" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Categories (llista separada per comes)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Editar Categoria" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Categoria" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Editar data i hora d'inici" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Data i hora d'inici" + +#: ../../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/Events.php:458 +msgid "Edit finish date and time" +msgstr "Editar la data i hora de finalització" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Data i hora de finalització" + +#: ../../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/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/Events.php:462 +msgid "Edit Description" +msgstr "Editar la Descripció" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descripció" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Editar la localització" + +#: ../../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/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Comparteix aquest esdeveniment" + +#: ../../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/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Ajustos de permisos" + +#: ../../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" @@ -1620,184 +1468,112 @@ msgstr "Aquest lloc web no és un servidor de directori" msgid "This directory server requires an access token" msgstr "Aquest servidor de directori requereix un token de accès" -#: ../../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/Filer.php:52 +msgid "Save to Folder:" +msgstr "Guardar en la Carpeta" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "No s'ha trobat la sala" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- selecciona -" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Abandona la sala" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Guardar" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Esborra Sala" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Absent" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Estic connectat/da" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Fes favorit aquest xat" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php: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/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/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/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: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/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/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -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/Dreport.php:44 +#: ../../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 -msgid "channel sync processed" -msgstr "sincronització del canal processada" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "Posat en cua" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "enviat" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "acceptat per entregar" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "actualitzat" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "actualització ignorada" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permís denegat" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "Contenidor no trobat" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "Recupera el correu" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "rebut correu duplicat" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "correu entregat" - -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:64 #, 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:78 +msgid "channel sync processed" +msgstr "sincronització del canal processada" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "Posat en cua" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "enviat" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "acceptat per entregar" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "actualitzat" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "actualització ignorada" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "permís denegat" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "Contenidor no trobat" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "Recupera el correu" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "rebut correu duplicat" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "correu entregat" + +#: ../../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,57 +1627,31 @@ 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/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Compartir contingut des de Firefox a $Projectname" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Aplicació amb errors" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activar el proveïdor de $Projectname a Firefox" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Codi embegut" +#: ../../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 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Edita 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:110 -msgid "Create App" -msgstr "Crea l'Aplicació" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Si et plau, identifica't per continuar." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nom de l'Aplicació" - -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Ubicació (URL) de l'aplicació" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "Foto icona URL" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - opcional" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categories (opcional, lista separada per comes)" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versió ID" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Preu de l'aplicació" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Ubicació (URL) per comprar l'aplicació" +#: ../../Zotlabs/Module/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/Help.php:26 msgid "Documentation Search" @@ -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,124 +1672,335 @@ msgstr "Ajuda" msgid "$Projectname Documentation" msgstr "$Projectname Documentació" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "Permisos Denegats." + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "Arxiu no torbat." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "Edita els permisos d'arxiu" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "Canvia/edita permisos" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "Inclou tots als arxius i subdirectoris" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "Tornar al llistat d'arxius" + +#: ../../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: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:163 +msgid "Share this file" +msgstr "Comparteix l'arxiu" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "Mostra la URL d'aquest arxiu" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "Notifica als teus contactes aquest arxiu" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Aplicatius" + #: ../../Zotlabs/Module/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/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/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Editor del Sistema de Descripció de Pàgines" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "No hi ha res a importar." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "No s'ha trobat cap disposició de pàgina." +#: ../../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/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nom del mòdul:" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "El fitxer importat està buit." -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Ajuda per la disposició de pàgina" +#: ../../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/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Compartir contingut des de Firefox a $Projectname" +#: ../../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/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Activar el proveïdor de $Projectname a Firefox" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Sense canal. No s'ha pogut importar." -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "xarxa" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "S'ha completat la importació." -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../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/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permisos Denegats." +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Importa un canal" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "Arxiu no torbat." +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "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/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Edita els permisos d'arxiu" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Fitxer a pujar" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" -msgstr "Canvia/edita permisos" +#: ../../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/Filestorage.php:156 -msgid "Include all files and sub folders" -msgstr "Inclou tots als arxius i subdirectoris" +#: ../../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/Filestorage.php:157 -msgid "Return to file list" -msgstr "Tornar al llistat d'arxius" +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "La teva adreça de correu electrònic antiga" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/enganxa aquest codi per a adjuntar un arxiu a l'entrada" +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "La teva contrasenya antiga" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copia/enganxa aquesta URL per a enllaçar l'arxiu d'una pàgina web" +#: ../../Zotlabs/Module/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/Filestorage.php:162 -msgid "Share this file" -msgstr "Comparteix l'arxiu" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Fes d'aquest node la meva ubicació primària" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" -msgstr "Mostra la URL d'aquest arxiu" +#: ../../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/Filestorage.php:164 -msgid "Notify your contacts about this file" -msgstr "Notifica als teus contactes aquest arxiu" +#: ../../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/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "No s'ha pogut trobar l'entrada original." + +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "S'ha descartat l'entrada perquè no té contingut." + +#: ../../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/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/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 "You have reached your limit of %1$.0f top level posts." +msgstr "Has assolit el teu límit de %1$.0f entrades (descomptant comentaris)." + +#: ../../Zotlabs/Module/Item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Has assolit el teu limit de %1$.0f pàgines web." + +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 msgid "Layouts" msgstr "Format Gràfic" -#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Layouts.php:183 msgid "Comanche page description language help" msgstr "Pgina d'ajuda del llenguatge Comanche" -#: ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Layouts.php:187 msgid "Layout Description" msgstr "Descripció del Disseny de la Pàgina" -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creat" - -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Editat" - -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "Compartir" - -#: ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Layouts.php:192 msgid "Download PDL file" msgstr "Descarrega l'arxiu PDL" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Benvingut a %s" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Nom" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Cognoms" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Àlies" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nom Sencer" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2151 ../../boot.php:1705 +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:236 +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:234 +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/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pàgina web" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloc" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "disposició" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menú" + +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s element instal·lat" + +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "%s instal·lació d'element va fallar" + #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "M'agrada / No m'agrada" @@ -2075,65 +2036,1180 @@ msgstr "El canal està inactiu." msgid "Previous action reversed." msgstr "S'ha desfet l'acció anterior." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 +#: ../../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/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "estat" -#: ../../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 "%1$s agrada %2$s de %3$s" -#: ../../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 "%1$s no agrada %2$s de %3$s" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../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/Like.php:425 +#: ../../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/Like.php:427 +#: ../../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/Like.php:429 +#: ../../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/Like.php:431 +#: ../../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/Like.php:433 +#: ../../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/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "S'ha completat l'acció." -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "Gràcies." +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "S'ha completat la importació" + +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importa Articles" + +#: ../../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/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "El límit total invitacions s'ha superat." + +#: ../../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/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Si us plau uneix-te a nosaltres a $Projectname." + +#: ../../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/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Entrega del Missatge fallida." + +#: ../../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/Invite.php:102 +msgid "You have no more invitations available" +msgstr "No té més invitacions disponibles" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Enviar invitacions" + +#: ../../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/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "El teu missatge:" + +#: ../../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/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Hauràs de facilitar aquest codi d'invitació:" + +#: ../../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/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/Invite.php:142 +msgid "or visit" +msgstr "o visitar" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Clicar [Conectar]" + +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "informació privada remota no disponible." + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Visible per:" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Situació que no es troba." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Ha fallat la cerca d'ubicació." + +#: ../../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/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronitza ubicacions" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "No es troben els llocs." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gestionar Ubicacions de Canal" + +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adreça" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primari" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Menysprea" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronitza Ara" + +#: ../../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/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/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/Magic.php:71 +msgid "Hub not found." +msgstr "Node no trobat." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Incapaç de trobar el destinatari." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Incapaç de comunicar amb el canal demanat." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "No puc verificar el canal demanat." + +#: ../../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/Mail.php:143 +msgid "Messages" +msgstr "Missatges" + +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Recupera el missatge." + +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversació eliminada." + +#: ../../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/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "El canal demanat no hi es en questa xarxa" + +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Envia Missatge Privat" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "Per:" + +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Assumpte:" + +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Adjunta arxiu" + +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Envia" + +#: ../../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/Mail.php:340 +msgid "Delete message" +msgstr "Elimina el missatge" + +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Informe d'entrega" + +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Recupera el missatge" + +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "El missatge s'ha recuperat." + +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Conversació esborrada" + +#: ../../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/Mail.php:367 +msgid "Send Reply" +msgstr "Envia Resposta" + +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "El teu missatge per %s (%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 "Has creat %1$.0f de %2$.0f canals permesos." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crear un nou canal" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Gestor de Canals" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canal Actual" + +#: ../../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/Manage.php:168 +msgid "Default Channel" +msgstr "Canal per Defecte" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Estableix com a Predeterminat" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d missatges nous" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d noves presentacions" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canal Delegat" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "No es troba un compte vàlid." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Lloc d'Usuari (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "S'ha soŀlicitat restablir la contrasenya al hub %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Restabliment de contrasenya" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "S'ha restablert la vostra contrasenya." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "La nova contrasenya és" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Desa o copia la nova contrasenya, i després" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "fes clic aquí per iniciar sessió" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Pots canviar la contrasenya a la pàgina Paràmetres, un cop iniciada la sessió." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "La teva contrasenya a %s ha canviat" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "No recordes la contrasenya?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Adreça electrònica" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reajustar" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "No s'ha pogut actualitzar el menú." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "No s'ha pogut crear el menú." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nom del menú" + +#: ../../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/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Títol del menú" + +#: ../../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/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetre Marcadors" + +#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Envia i procedeix" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menús" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Marcadors permesos" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Esborra el menú" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Edita el contingut del menú" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Edita el menú" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "El menu no es pot esborrar." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menú no trobat." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Edita Menú" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Afegeix o esborra entrades a aquest menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nom del Menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Ha de ser únic, nomes vist per tú" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Títol del menú" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Títol del menú vist pels altres" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Marcadors permesos" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "No trobat." + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s es %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Ànim" + +#: ../../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/Match.php:26 +msgid "Profile Match" +msgstr "Perfils compatibles" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No tens paraules clau al perfil principal per poder cercar perfils semblants." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "té interès en:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "No s'han trobat perfils compatibles" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "No existeix el grup" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "No existeix el canal" + +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "fòrum" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Cerca resultats per:" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "el grup privat està vuit" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Grup privat:" + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "La connexió és invàlida." + +#: ../../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/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notificacions del sistema" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Incapaç de crear l'element." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Incapaç d'actualitzar un element del menú." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Incapaç d'afegir l'element del menú." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permisos de l'Article del Menú" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(clica per obrir/tancar)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nom de l'Enllaç" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Enllaç o Submenú Objectiu" + +#: ../../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/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Empra magic-auth si esta disponible" + +#: ../../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/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Ordre per llista" + +#: ../../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/Mitem.php:161 +msgid "Submit and finish" +msgstr "Envia i termina" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Envia i continua" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menú:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Enllaç Objectiu" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Edita menú" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Edita element" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Deixa anar element" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nou element" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Edita aquest contenidor de menú" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Afegeix element de menú" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Esborra aquest article del menú" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Edita aquest article del menú" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Article del menú no trobat." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Article del menú eliminat." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Article del menú no es pot eliminar." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Editar Element del Menú" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Enllaç de text" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nom o llegenda" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Exemples: \"Pep Gomila\", \"Manel i els seus Cavalls\", \"Fútbol\", \"Grup d'Aviadors\"" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Tria un àlies curt" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "El teu àlies serà emprat per crear un nom fàcil per recordar l'adreça del canal p.e. àlies%s" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Funció i privacitat del canal" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Tria una funció pel canal amb els teus requisits de privacitat." + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Llegix més sobre els rols" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crea un Canal" + +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canal es la tva identitat en aquesta xarxa. Pot representar una persona, un bloc, o un fòrum per anomenar alguns. Els canals poden connectar-se amb altres canals per compartir informació amb permisos molt detallats." + +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "o importa un canal existent des d'un altre ubicació." + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Sol·licitud d'identificació invàlida." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Descarta" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Marca totes les notificacions vistes" + +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "La informació del propietari de la pàgina no va poder ser recuperada" + +#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Fotos del Perfil" + +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Àlbum no trobat" + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Esborra Àlbum" + +#: ../../Zotlabs/Module/Photos.php:153 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Existeixen moltes carpetes de emmagatzemament amb aquest nom d'àlbum, però en diferents directoris. Si us plau esborra la carpeta o carpetes amb el gestor d'arxius." + +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Esborra Foto" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "No has seleccionat fotos" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "L'accés a aquest element esta restringit." + +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "S'estan fent servir %1$.2f MB de %2$.2f MB de l'espai per a imatges." + +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "S'estan fent servir %1$.2f MB de l'espai per a imatges." + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Puja imatges" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Escriu el nom del àlbum" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "o bé fes doble clic a un d'existent" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Genera una entrada a partir de la pujada" + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Subtítol (opcional):" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Descripció (opcional):" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "No s'ha pogut descodificar el nom de l'àlbum" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Imatges de contactes" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Ordena de més nou a més antic" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Ordena de més antic a més nou" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Mostra la imatge" + +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Modifica l'àlbum" + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "S'ha denegat el permís. Pot ser que l'accés estigui restringit." + +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "La imatge no està disponible" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Fes-la imatge de perfil" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Emprar com a foto de portada" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Imatge privada" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Mostra a mida completa" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Esborra" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Modifica la imatge" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Tomba cap a la dreta" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Tomba cap a l'esquerra" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Escriu el nom del nou àlbum" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "o bé fes doble clic a un d'existent" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Llegenda" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Afegeix una etiqueta" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Exemple: @joan, @Paula_Peris, @mar@exemple.org" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Marca com a contingut adult" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "M'agrada això (canvia)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "No m'agrada això (canvia)" + +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Si us plau, espera" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Ets tú" + +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Comentari" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Agrada" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "Desagrada" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "Acord" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Desacord" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Abstenirse" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Assistint" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Desassistint" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Podrien assistir" + +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1717 +msgid "View all" +msgstr "Veure tot" + +#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 +#: ../../include/channel.php:1158 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Agrada" +msgstr[1] "Agraden" + +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Desagrada" +msgstr[1] "Desagrada" + +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "Eines per Fotos" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "Hi apareixen:" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Mapa" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Agrada" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Desagrada" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Tanca" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Mostra'n l'àlbum" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Imatges recents" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "Se t'ha enviat un missatge privat" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "el teu canal s'ha afegit" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[avui]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "enviat un esdeveniment" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "No es possible trobar el node" + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Entrada realitzada amb èxit. " + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Error del protocol OpenID. No ha retornat ID" + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Identificació fallida." + +#: ../../Zotlabs/Module/Page.php:133 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Aquest ajust requereix un procés espedial i l'edició esta bloquejada." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor de Configuració" + +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "atenció: Realitzar segons quins ajustos pot fer el canal inoperable. Deixa aquesta pàgina si no estas segur i tens suficients coneixements sobre l'ús correcte d'aquesta característica." + +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "S'ha actualitzat la disposició." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Editor del Sistema de Descripció de Pàgines" + +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "No s'ha trobat cap disposició de pàgina." + +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nom del mòdul:" + +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Ajuda per la disposició de pàgina" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Esperonar" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Emprenyar algú" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Esperonat/Picat" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "emprenyar, picar o fer altres coses a algú" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatari" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Tria que vols fer amb el destinatari" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Fer aquesta entrada privada" + +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "URL sol·licitada retorna error: %1$s" + #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -2203,11 +3279,6 @@ msgstr "Pàgina Personal" msgid "Interests" msgstr "Interessos" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adreça" - #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Perfil actualitzat." @@ -2225,7 +3296,7 @@ msgid "View this profile" msgstr "Veure aquest perfil" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 +#: ../../include/channel.php:959 msgid "Edit visibility" msgstr "Editar visibilitat" @@ -2237,7 +3308,7 @@ msgstr "Eines per Perfils" msgid "Change cover photo" msgstr "Canviar la foto de portada" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 msgid "Change profile photo" msgstr "Canviar la foto del perfil" @@ -2257,8 +3328,8 @@ msgstr "Elimina aquest perfil" msgid "Add profile things" msgstr "Afegeix coses al perfil" -#: ../../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:1526 msgid "Personal" msgstr "Personal" @@ -2398,1097 +3469,119 @@ msgstr "Informació de contacte i xarxes socials" msgid "My other channels" msgstr "Els meus altres canals" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 msgid "Profile Image" msgstr "Imatge del Perfil" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 +#: ../../include/channel.php:937 msgid "Edit Profiles" msgstr "Editar Perfils" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "El teu paquet de serveis només admet %d canals." - -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "No hi ha res a importar." - -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "No s'han pogut descarregar les dades del servidor antic" - -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "El fitxer importat està buit." - -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Atenció: Les versions de la Base de Dades difereixen en %1$d actualitzacions." - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "No s'ha pogut importar el canal perquè el canal clonat no s'ha trobat." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Sense canal. No s'ha pogut importar." - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "S'ha completat la importació." - -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Has d'estar registrat per fer servir aquesta funcionalitat." - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importa un canal" - -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Profile_photo.php:179 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ó" +"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/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Fitxer a pujar" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Puja una Foto pel Perfil" -#: ../../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/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identificador invàlid de perfil." -#: ../../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/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Perfil del Editor de Visibilitat" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "La teva adreça de correu electrònic antiga" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Perfil" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "La teva contrasenya antiga" +#: ../../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/Import.php:554 +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible per" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Nodes Públics" + +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"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." +"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/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Fes d'aquest node la meva ubicació primària" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "URL del Node" -#: ../../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/Pubsites.php:31 +msgid "Access Type" +msgstr "Tipus d'accés" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Aquest procès pot trigar minuts en completar. Si et plau envia el formulari només una vegada i manté aquesta pàgina oberta fins que finalitzi." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Condicions de registre" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Estadístiques" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Programari" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Valoracions" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Puntua" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Lloc web:" + +#: ../../Zotlabs/Module/Rate.php:163 #, php-format -msgid "Welcome to %s" -msgstr "Benvingut a %s" +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal Remot [%s] (encara no es coneix en aquest lloc)" -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "No s'ha pogut trobar l'entrada original." +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Valoració (aquesta informació és pública)" -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "S'ha descartat l'entrada perquè no té contingut." +#: ../../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/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/Ratings.php:73 +msgid "No ratings" +msgstr "No valorat" -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Publicació duplicada s'ha suprimit." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Valoració:" -#: ../../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/Ratings.php:105 +msgid "Website: " +msgstr "Lloc web:" -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "No s'ha pogut obtenir informació de l'entrada a la base de dades." - -#: ../../Zotlabs/Module/Item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Has assolit el teu límit de %1$.0f entrades (descomptant comentaris)." - -#: ../../Zotlabs/Module/Item.php: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/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/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/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Àlbum no trobat" - -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Esborra Àlbum" - -#: ../../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/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Esborra Foto" - -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "No has seleccionat fotos" - -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "L'accés a aquest element esta restringit." - -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "S'estan fent servir %1$.2f MB de %2$.2f MB de l'espai per a imatges." - -#: ../../Zotlabs/Module/Photos.php: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/Photos.php:658 -msgid "Upload Photos" -msgstr "Puja imatges" - -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Escriu el nom del àlbum" - -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o bé fes doble clic a un d'existent" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Genera una entrada a partir de la pujada" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Subtítol (opcional):" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descripció (opcional):" - -#: ../../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/Photos.php:741 -msgid "Contact Photos" -msgstr "Imatges de contactes" - -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Ordena de més nou a més antic" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Ordena de més antic a més nou" - -#: ../../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/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Modifica l'àlbum" - -#: ../../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/Photos.php:870 -msgid "Photo not available" -msgstr "La imatge no està disponible" - -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Fes-la imatge de perfil" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Emprar com a foto de portada" - -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Imatge privada" - -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Mostra a mida completa" - -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Esborra" - -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Modifica la imatge" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Tomba cap a la dreta" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Tomba cap a l'esquerra" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Escriu el nom del nou àlbum" - -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "o bé fes doble clic a un d'existent" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Llegenda" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Afegeix una etiqueta" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exemple: @joan, @Paula_Peris, @mar@exemple.org" - -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Marca com a contingut adult" - -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "M'agrada això (canvia)" - -#: ../../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/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Si us plau, espera" - -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Ets tú" - -#: ../../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/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Agrada" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Desagrada" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "Acord" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Desacord" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Abstenirse" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Assistint" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Desassistint" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Podrien assistir" - -#: ../../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/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/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/Photos.php:1233 -msgid "Photo Tools" -msgstr "Eines per Fotos" - -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "Hi apareixen:" - -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Mapa" - -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Agrada" - -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Desagrada" - -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Tanca" - -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Mostra'n l'àlbum" - -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Imatges recents" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "informació privada remota no disponible." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visible per:" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "S'ha completat la importació" - -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importa Articles" - -#: ../../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/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "El límit total invitacions s'ha superat." - -#: ../../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/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Si us plau uneix-te a nosaltres a $Projectname." - -#: ../../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/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Entrega del Missatge fallida." - -#: ../../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/Invite.php:102 -msgid "You have no more invitations available" -msgstr "No té més invitacions disponibles" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Enviar invitacions" - -#: ../../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/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "El teu missatge:" - -#: ../../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/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Hauràs de facilitar aquest codi d'invitació:" - -#: ../../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/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/Invite.php:142 -msgid "or visit" -msgstr "o visitar" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Clicar [Conectar]" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Situació que no es troba." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Ha fallat la cerca d'ubicació." - -#: ../../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/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronitza ubicacions" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "No es troben els llocs." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Gestionar Ubicacions de Canal" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primari" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Menysprea" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronitza Ara" - -#: ../../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/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/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/Magic.php:71 -msgid "Hub not found." -msgstr "Node no trobat." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Incapaç de trobar el destinatari." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Incapaç de comunicar amb el canal demanat." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "No puc verificar el canal demanat." - -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "El canal seleccionat te restriccions sobre els missatges privats. L'enviament ha fallat." - -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Missatges" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Recupera el missatge." - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversació eliminada." - -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Expira YYYY-MM-DD HH:MM" - -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "El canal demanat no hi es en questa xarxa" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Envia Missatge Privat" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "Per:" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Assumpte:" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Adjunta arxiu" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Envia" - -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Ajusta la data d'expiració" - -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Elimina el missatge" - -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Informe d'entrega" - -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Recupera el missatge" - -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "El missatge s'ha recuperat." - -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Conversació esborrada" - -#: ../../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/Mail.php:359 -msgid "Send Reply" -msgstr "Envia Resposta" - -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "El teu missatge per %s (%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 "Has creat %1$.0f de %2$.0f canals permesos." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crear un nou canal" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Gestor de Canals" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canal Actual" - -#: ../../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/Manage.php:168 -msgid "Default Channel" -msgstr "Canal per Defecte" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Estableix com a Predeterminat" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d missatges nous" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d noves presentacions" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canal Delegat" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "No s'ha pogut actualitzar el menú." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "No s'ha pogut crear el menú." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nom del menú" - -#: ../../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/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Títol del menú" - -#: ../../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/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetre Marcadors" - -#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Envia i procedeix" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menús" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Marcadors permesos" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Esborra el menú" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Edita el contingut del menú" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Edita el menú" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "El menu no es pot esborrar." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menú no trobat." - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Edita Menú" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Afegeix o esborra entrades a aquest menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nom del Menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Ha de ser únic, nomes vist per tú" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Títol del menú" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Títol del menú vist pels altres" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Marcadors permesos" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "No trobat." - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "No es troba un compte vàlid." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Lloc d'Usuari (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "S'ha soŀlicitat restablir la contrasenya al hub %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Restabliment de contrasenya" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "S'ha restablert la vostra contrasenya." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "La nova contrasenya és" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Desa o copia la nova contrasenya, i després" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "fes clic aquí per iniciar sessió" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Pots canviar la contrasenya a la pàgina Paràmetres, un cop iniciada la sessió." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "La teva contrasenya a %s ha canviat" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "No recordes la contrasenya?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Adreça electrònica" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reajustar" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s es %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Ànim" - -#: ../../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/Network.php:94 -msgid "No such group" -msgstr "No existeix el grup" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "No existeix el canal" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "fòrum" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Cerca resultats per:" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "el grup privat està vuit" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Grup privat:" - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "La connexió és invàlida." - -#: ../../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/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notificacions del sistema" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Perfils compatibles" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No tens paraules clau al perfil principal per poder cercar perfils semblants." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "té interès en:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "No s'han trobat perfils compatibles" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Entrades i comentaris" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Només entrades" - -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permisos insuficients. Petició redirigida a la pàgina del perfil." - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Incapaç de crear l'element." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Incapaç d'actualitzar un element del menú." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Incapaç d'afegir l'element del menú." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permisos de l'Article del Menú" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(clica per obrir/tancar)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nom de l'Enllaç" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Enllaç o Submenú Objectiu" - -#: ../../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/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Empra magic-auth si esta disponible" - -#: ../../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/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Ordre per llista" - -#: ../../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/Mitem.php:161 -msgid "Submit and finish" -msgstr "Envia i termina" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Envia i continua" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menú:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Enllaç Objectiu" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Edita menú" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Edita element" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Deixa anar element" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nou element" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Edita aquest contenidor de menú" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Afegeix element de menú" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Esborra aquest article del menú" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Edita aquest article del menú" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Article del menú no trobat." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Article del menú eliminat." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Article del menú no es pot eliminar." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Editar Element del Menú" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Enllaç de text" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Descripció:" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3549,7 +3642,7 @@ msgstr "Comptes registrades" #: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 msgid "Pending registrations" -msgstr "Comptes pendents d'inscripció" +msgstr "Comptes pendents de registre" #: ../../Zotlabs/Module/Admin.php:247 msgid "Registered channels" @@ -3575,11 +3668,11 @@ msgstr "Versió (desenvolupament) del repositori" msgid "Site settings updated." msgstr "Ajustos del Lloc actualitzats" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 msgid "Default" msgstr "Predeterminat" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 msgid "mobile" msgstr "mòbil" @@ -3611,13 +3704,13 @@ msgstr "El meu lloc te lliure accés" msgid "My site offers free accounts with optional paid upgrades" msgstr "El meu lloc te comptes gratis amb opció de millores per pagament" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 msgid "Site" msgstr "Lloc" #: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 msgid "Registration" -msgstr "Inscripcions" +msgstr "Registre" #: ../../Zotlabs/Module/Admin.php:494 msgid "File upload" @@ -3691,7 +3784,7 @@ msgstr "Mida màxima en bytes d'imatges pujades. Per defecte es 0, el que vol di #: ../../Zotlabs/Module/Admin.php:509 msgid "Does this site allow new member registration?" -msgstr "Permet aquest lloc l'inscripció de nous membres?" +msgstr "Permet aquest lloc registre de nous membres?" #: ../../Zotlabs/Module/Admin.php:510 msgid "Invitation only" @@ -3701,7 +3794,7 @@ msgstr "Només per invitació" msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." -msgstr "Només permet inscriure nous membres amb codi d'invitació. A més la política de registre s'ha d'establir a Sí." +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:511 msgid "Which best describes the types of account offered by this hub?" @@ -3709,11 +3802,11 @@ msgstr "Que es es que millor descriu la mena de comptes oferits per aquest conce #: ../../Zotlabs/Module/Admin.php:512 msgid "Register text" -msgstr "Text d'inscripció" +msgstr "text de registre" #: ../../Zotlabs/Module/Admin.php:512 msgid "Will be displayed prominently on the registration page." -msgstr "Es mostrarà preminentment a la pàgina d'inscripció" +msgstr "Es mostrarà preminentment a la pàgina de registre" #: ../../Zotlabs/Module/Admin.php:513 msgid "Site homepage to show visitors (default: login box)" @@ -3899,12 +3992,12 @@ msgid "0 for no expiration of imported content" msgstr "0 vol dir sense temps d'expiració pel contingut importat" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "Off" msgstr "Apagat" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "On" msgstr "Funcionant" @@ -3961,7 +4054,7 @@ msgid "" "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 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 msgid "Security" msgstr "Seguretat" @@ -4129,7 +4222,7 @@ msgid "Account '%s' unblocked" msgstr "S'ha desbloquejat el compte '%s'" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1383 msgid "Accounts" msgstr "Comptes" @@ -4139,7 +4232,7 @@ msgstr "Sel·leciona-ho tot" #: ../../Zotlabs/Module/Admin.php:1034 msgid "Registrations waiting for confirm" -msgstr "Inscripcions esperant confirmació" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1035 msgid "Request date" @@ -4159,7 +4252,7 @@ msgstr "Tots els Canals" #: ../../Zotlabs/Module/Admin.php:1049 msgid "Register date" -msgstr "Data d'inscripció" +msgstr "Data de registre" #: ../../Zotlabs/Module/Admin.php:1050 msgid "Last login" @@ -4235,7 +4328,7 @@ msgstr "Canal '%s' permet codi" msgid "Channel '%s' code disallowed" msgstr "Canal '%s' no permet codi" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 msgid "Channels" msgstr "Canals" @@ -4255,7 +4348,7 @@ msgstr "Permet Codi" msgid "Disallow Code" msgstr "No Permet Codi" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 msgid "Channel" msgstr "Canal" @@ -4294,7 +4387,7 @@ msgid "Enable" msgstr "Activat" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1387 msgid "Plugins" msgstr "Plugins" @@ -4303,8 +4396,8 @@ msgid "Toggle" msgstr "Commutar" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Ajustos" @@ -4360,7 +4453,7 @@ msgstr "Descarrega el Repositori de Plugins" msgid "Install new repo" msgstr "Instal·la un nou repositori " -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 msgid "Install" msgstr "Instal·lar" @@ -4376,8 +4469,8 @@ msgstr "Repositori de Plugins Instal·lat" msgid "Install a New Plugin Repository" msgstr "Instal·la un Nou Repositori de Plugins" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 msgid "Update" msgstr "Actualització" @@ -4394,7 +4487,7 @@ msgid "Screenshot" msgstr "Copia de pantalla" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1388 msgid "Themes" msgstr "Temes" @@ -4410,8 +4503,8 @@ msgstr "[No soportat]" msgid "Log settings updated." msgstr "Registre d'ajustos actualitzat." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 msgid "Logs" msgstr "Logs" @@ -4431,7 +4524,7 @@ msgstr "Arxiu de registre" 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" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1742 msgid "Log level" @@ -4477,7 +4570,7 @@ msgstr "No es troba la definició del camp" msgid "Edit Profile Field" msgstr "Camp d'Edició del Perfil" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 msgid "Profile Fields" msgstr "Camps del Perfil" @@ -4505,384 +4598,57 @@ msgstr "Camps Personalitzats" msgid "Create Custom Field" msgstr "Crear un Camp Personalitzat" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nom o llegenda" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "Aplicació instal·lada." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Exemples: \"Pep Gomila\", \"Manel i els seus Cavalls\", \"Fútbol\", \"Grup d'Aviadors\"" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Aplicació amb errors" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Tria un àlies curt" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Codi embegut" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "El teu àlies serà emprat per crear un nom fàcil per recordar l'adreça del canal p.e. àlies%s" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Edita l'Aplicació" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Funció i privacitat del canal" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crea l'Aplicació" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Tria una funció pel canal amb els teus requisits de privacitat." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nom de l'Aplicació" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Llegix més sobre els rols" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Ubicació (URL) de l'aplicació" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crea un Canal" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Foto icona URL" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canal es la tva identitat en aquesta xarxa. Pot representar una persona, un bloc, o un fòrum per anomenar alguns. Els canals poden connectar-se amb altres canals per compartir informació amb permisos molt detallats." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - opcional" -#: ../../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/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categories (opcional, lista separada per comes)" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "Se t'ha enviat un missatge privat" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versió ID" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "el teu canal s'ha afegit" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Preu de l'aplicació" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[avui]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "enviat un esdeveniment" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Sol·licitud d'identificació invàlida." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Descarta" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Marca totes les notificacions vistes" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Esperonar" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Emprenyar algú" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Esperonat/Picat" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "emprenyar, picar o fer altres coses a algú" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatari" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Tria que vols fer amb el destinatari" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Fer aquesta entrada privada" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "No es possible trobar el node" - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Entrada realitzada amb èxit. " - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Error del protocol OpenID. No ha retornat ID" - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Identificació fallida." - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identificador invàlid de perfil." - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Perfil del Editor de Visibilitat" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Perfil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Clica sobre el contacte per afegir o esborrar." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible per" - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Aquest ajust requereix un procés espedial i l'edició esta bloquejada." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor de Configuració" - -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "atenció: Realitzar segons quins ajustos pot fer el canal inoperable. Deixa aquesta pàgina si no estas segur i tens suficients coneixements sobre l'ús correcte d'aquesta característica." - -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "URL sol·licitada retorna error: %1$s" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versió %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Plugins/addons/apps Instal·lats:" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Plugins/addons/apps no instal·lats" - -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Aquest és un node de $Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat." - -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Etiqueta:" - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Última actualització en rerefons:" - -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Càrrega actual mitja:" - -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Correguent en el lloc web" - -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit 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" - -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "$projectname qüestions" - -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Per suggerències, felicitacions i altres, envia'ns un mail a «redmatrix» [arroba] librelist [punt] com" - -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Administradors del lloc" - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Em trobat un problema durant l'inici de sessió amb el OpenID que has facilitat. verifica l'ortografia correcta de la ID." - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "El missatge d'error fou:" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Ha fallat l'autentificació." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Autentificació Remota" - -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Introdueix la teva adreça del canal (eg canal@exemple.com)" - -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Autentica't" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Nodes Públics" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself 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" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipus d'accés" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Condicions d'inscripció" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Estadístiques" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Programari" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Valoracions" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Puntua" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Refresca la memòria cau del navegador si la foto no s'actualitza immediatament. Dreceres: «Ctrl+F5» i «Ctrl+Maj+R»" - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Puja una Foto pel Perfil" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nom del Bloc" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Bloc" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Títol del bloc" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Lloc web:" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal Remot [%s] (encara no es coneix en aquest lloc)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Valoració (aquesta informació és pública)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "No valorat" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Valoració:" - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Lloc web:" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Descripció:" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Aplicatius" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Títol (opcional)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Editar Bloc" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "No s'ha trobat el canal" - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Connexions en comú" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "No hi ha connexions en comú." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Ubicació (URL) per comprar l'aplicació" #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4902,12 +4668,12 @@ msgstr "O entra un nou nom de favorit" #: ../../Zotlabs/Module/Register.php:49 msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Nombre màxim d'inscripcions diaris excedit. Si us plau, provau demà." +msgstr "Nombre màxim de registres diaris excedit. Si us plau, provau demà." #: ../../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." +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." @@ -4921,29 +4687,29 @@ msgstr "Registrat amb èxit. Si et plau revisa el teu correu electrònic per a l #: ../../Zotlabs/Module/Register.php:137 msgid "Your registration is pending approval by the site owner." -msgstr "La teva inscripció esta pendent de validació pel propietari del lloc." +msgstr "El teu registre esta pendent de validació pel propietari del lloc." #: ../../Zotlabs/Module/Register.php:140 msgid "Your registration can not be processed." -msgstr "La teva inscripció no ha pogut ser processat. " +msgstr "El teu registre no ha pogut ser processat. " #: ../../Zotlabs/Module/Register.php:184 msgid "Registration on this hub is disabled." -msgstr "L'inscripció en aquest node està deshabilitat." +msgstr "El registre en aquest node està deshabilitat." #: ../../Zotlabs/Module/Register.php:193 msgid "Registration on this hub is by approval only." -msgstr "L'inscripció en aquest node es únicament per validació." +msgstr "El registre en aquest node es únicament per validació." #: ../../Zotlabs/Module/Register.php:194 msgid "Register at another affiliated hub." -msgstr "Inscripció en altre node afiliat" +msgstr "Registre en altre node afiliat" #: ../../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/inscripció. Provau demà." +msgstr "El lloc ha excedit el límit màxim diari de nous comptes/registres. Provau demà." #: ../../Zotlabs/Module/Register.php:215 msgid "Terms of Service" @@ -4987,154 +4753,120 @@ msgstr "sí" msgid "Membership on this site is by invitation only." msgstr "La pertinença en aquest lloc es per invitació exclusivament." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 msgid "Register" -msgstr "Inscripció" +msgstr "Registre" -#: ../../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 "Comença a crear el teu primer canal" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Inicia Sessió." -#: ../../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 "L'esborrat de comptes no està permès fins que transcorren 48 hores des de l'últim canvi de contrasenya." -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "Esborra el compte" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "ALERTA:" -#: ../../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 "Aquest compte i tots els seus canals s'estan apunt d'esborrar totalment de la xarxa." -#: ../../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 "Aquesta acció és irreversible!" -#: ../../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 "Aquesta acció requereix tornar a introduir la contrasenya:" -#: ../../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 "Esborra de la xarxa aquest compte, tots els seus canals, i tots els seus canals clons." -#: ../../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 "Per defecte, només les instancies dels canal ubicats en aquest node poden esser esborrades de la xarxa" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Remove Account" msgstr "Esborra el Compte" -#: ../../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 "L'esborrat de canals no està permès fins que transcorren 48 hores des de l'últim canvi de contrasenya." -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "Elimina Aquest Canal" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../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/Removeme.php:63 +#: ../../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/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 "Per defecte, només la instancia del canal ubicat en aquest node pot esser esborrat de la xarxa" -#: ../../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 el canal" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exportar Canal" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Rmagic.php:44 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." +"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/Uexport.php:58 -msgid "Export Content" -msgstr "Exportar el Contingut" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "El missatge d'error fou:" -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Exporta la informació del canal i tot el contingut recent a un arxiu de recolzament JSON que por ser restaurat o importat en altre lloc/node. Això còpia totes les teves connexions, permisos, perfil i dades i mesos de entrades. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que pot trigar uns minuts a començar a baixar." +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Ha fallat l'autentificació." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporta les teves entrades d'un any donat." +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Autentificació Remota" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Pots també exportar les teves entrades i conversacions d'un any o un mes en particular. Ajusta la data a la barra de direccions del navegador per seleccionar altres dates. Si la exportació falla (possiblement degut al esgotament de la memòria del node servidor), si et plau, intenta de nou la selecció d'un rang de dates més limitat." +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Introdueix la teva adreça del canal (eg canal@exemple.com)" -#: ../../Zotlabs/Module/Uexport.php: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/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/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/Rmagic.php:90 +msgid "Authenticate" +msgstr "Autentica't" #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -5150,652 +4882,609 @@ msgstr "Resultats de cerca per: %s" msgid "No service class restrictions found." msgstr "No s'han trobat restriccions de clase." -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:69 msgid "Name is required" msgstr "Es requereix un Nom" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:73 msgid "Key and Secret are required" msgstr "Es requereix Clau (Key) i el Secret (Secret)" -#: ../../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 "E-correu no vàlid." -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../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:286 +#: ../../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:303 +#: ../../Zotlabs/Module/Settings.php:254 msgid "Password verification failed." msgstr "La verificació de la contrasenya ha fallat." -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../Zotlabs/Module/Settings.php:261 msgid "Passwords do not match. Password unchanged." msgstr "Les contrasenyes no coincideixen. Contrasenya sense canvis." -#: ../../Zotlabs/Module/Settings.php:314 +#: ../../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:328 +#: ../../Zotlabs/Module/Settings.php:279 msgid "Password changed." msgstr "Contrasenya canviada." -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../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:579 +#: ../../Zotlabs/Module/Settings.php:525 msgid "Settings updated." msgstr "Ajustes actualizados." -#: ../../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 "Afegir aplicatiu" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:592 msgid "Name of application" msgstr "Nom de l'aplicatiu" -#: ../../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 "Generat automàticament- Canvia-ho si ho vols. Max. longitud 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 "Redirecciona" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../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:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 msgid "Icon url" msgstr "Icona de 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 "Opcional" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:607 msgid "Application not found." msgstr "Aplicatiu no trobat." -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:650 msgid "Connected Apps" msgstr "Aplicatius Conectats" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:654 msgid "Client key starts with" msgstr "La clau del client comença amb" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:655 msgid "No name" msgstr "Sin nombre" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:656 msgid "Remove authorization" msgstr "Elimina autorització" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Settings.php:669 msgid "No feature settings configured" msgstr "No hi ha opcions de les funcions configurades" -#: ../../Zotlabs/Module/Settings.php:730 +#: ../../Zotlabs/Module/Settings.php:676 msgid "Feature/Addon Settings" msgstr "Ajustos de Complements" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:699 msgid "Account Settings" msgstr "Ajustos de Compte" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:700 msgid "Current Password" msgstr "Contrasenya Actual" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:701 msgid "Enter New Password" msgstr "Entra la Nova Contrasenya" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Confirm New Password" msgstr "Confirma la Nova Contrasenya" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../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:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 msgid "Email Address:" msgstr "Adreça de E-Correu:" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../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: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 "Característiques Addicionals" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Connector Settings" msgstr "Ajustos de Connector" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../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:896 +#: ../../Zotlabs/Module/Settings.php:795 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:837 msgid "Display Settings" msgstr "Ajustos de Pantalla" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:838 msgid "Theme Settings" msgstr "Ajustos de Tema" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:839 msgid "Custom Theme Settings" msgstr "Ajustos Personals de Tema" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:840 msgid "Content Settings" msgstr "Ajustos de Contingut" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:846 msgid "Display Theme:" msgstr "Ajustos de Tema:" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:847 msgid "Mobile Theme:" msgstr "Tema Mòbil:" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../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:949 +#: ../../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:950 +#: ../../Zotlabs/Module/Settings.php:849 msgid "Enable user zoom on mobile devices" msgstr "Zoom d'usuari en dispositius mòbils" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Update browser every xx seconds" msgstr "Actualitza el navegador cada xx segons" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../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:952 +#: ../../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:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum of 100 items" msgstr "Màxim de 100 elements" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:852 msgid "Show emoticons (smilies) as images" msgstr "Mostra emoticons (smilies) com a imatges" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../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:955 +#: ../../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:958 +#: ../../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:958 ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 msgid "(comments displayed separately)" msgstr "(Observacions es mostren per separat)" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../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/Settings.php:960 +#: ../../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/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 "Clic per expandir el contingut que excedeixi aquesta alçada" -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../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/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:894 msgid "Nobody except yourself" msgstr "Ningú excepte tú" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:895 msgid "Only those you specifically allow" msgstr "Només allò que específicament permetis" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:896 msgid "Approved connections" msgstr "Connexions aprovades" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:897 msgid "Any connections" msgstr "Qualsevol connexió" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:898 msgid "Anybody on this website" msgstr "Qualsevol en aquest lloc" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:899 msgid "Anybody in this network" msgstr "Qualsevol en aquesta xarxa" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:900 msgid "Anybody authenticated" msgstr "Qualsevol autenticat" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:901 msgid "Anybody on the internet" msgstr "Qualsevol a internet" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../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/Settings.php:1076 +#: ../../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/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Your channel address is" msgstr "La teva adreça del canal es" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1032 msgid "Channel Settings" msgstr "Ajustos del Canal" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1039 msgid "Basic Settings" msgstr "Ajustos Bàsics" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 msgid "Full Name:" msgstr "Nom Complet:" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1042 msgid "Your Timezone:" msgstr "La teva Franja Horària" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Default Post Location:" msgstr "Localització Predeterminada de les Entrades:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../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/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1044 msgid "Use Browser Location:" msgstr "Empra la Localització del Navegador:" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "Adult Content" msgstr "Contingut per a Adults" -#: ../../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 "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 +#: ../../Zotlabs/Module/Settings.php:1048 msgid "Security and Privacy Settings" msgstr "Ajustos de Seguretat i Privacitat" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../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/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Hide my online presence" msgstr "Amaga la meva presencia en línia" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../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/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Simple Privacy Settings:" msgstr "Ajustos simples de privacitat:" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Settings.php:1056 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Molt públic - extremadament permissiu (s'ha d'anar en compte)" -#: ../../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 "Normal - públic per defecte, privat quan es desitgi (similar als permisos de xarxa social, però amb millor privacitat)" -#: ../../Zotlabs/Module/Settings.php:1153 +#: ../../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/Settings.php:1154 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "Blocked - default blocked to/from everybody" msgstr "Bloquejat - tothom bloquejat per defecte" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "Allow others to tag your posts" msgstr "Permet a altres etiquetar les teves entrades" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 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:1158 +#: ../../Zotlabs/Module/Settings.php:1063 msgid "Advanced Privacy Settings" msgstr "Ajustos avançats de privacitat" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../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/Settings.php:1160 +#: ../../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/Settings.php:1160 +#: ../../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/Settings.php:1160 +#: ../../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/Settings.php:1160 +#: ../../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/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "Maximum Friend Requests/Day:" msgstr "Nombre màxim de peticions d'amistat per dia" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "May reduce spam activity" msgstr "Pot reduir l'SPAM" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1067 msgid "Default Post and Publish Permissions" msgstr "Permisos de Entrades i Publicació per defecte" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../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/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1072 msgid "Channel permissions category:" msgstr "Categoria de permisos de canal:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../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/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Useful to reduce spamming" msgstr "Útil per a reduir l'spam" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1081 msgid "Notification Settings" msgstr "Ajustos de notificacions" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1082 msgid "By default post a status message when:" msgstr "Per defecte envia un missatge d'estat quan:" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1083 msgid "accepting a friend request" msgstr "S'accepta una sol·licitud d'amistat" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1084 msgid "joining a forum/community" msgstr "Apuntar-se a un fòrum o comunitat" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "making an interesting profile change" msgstr "Faci un canvi interesant al perfil" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1086 msgid "Send a notification email when:" msgstr "Notifica per correu quan:" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1087 msgid "You receive a connection request" msgstr "Rebi una petició de connexió" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1088 msgid "Your connections are confirmed" msgstr "Es confirma una connexió" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../Zotlabs/Module/Settings.php:1089 msgid "Someone writes on your profile wall" msgstr "Algú ha escrit al mur del teu perfil" -#: ../../Zotlabs/Module/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1090 msgid "Someone writes a followup comment" msgstr "Algú ha escrit un comentari de resposta" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1091 msgid "You receive a private message" msgstr "Rebi un missatge privat" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1092 msgid "You receive a friend suggestion" msgstr "Rebi una suggerència d'amistat" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1093 msgid "You are tagged in a post" msgstr "Estàs etiquetat a l'entrada" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../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/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1097 msgid "Show visual notifications including:" msgstr "Mostra notificacion visuals, com ara:" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1099 msgid "Unseen grid activity" msgstr "Activitat de malla no vista" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1100 msgid "Unseen channel activity" msgstr "Activitat no vista del canal" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1101 msgid "Unseen private messages" msgstr "Missatges privats no llegits" -#: ../../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 "Recomanat" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1102 msgid "Upcoming events" msgstr "Esdeveniments propers" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1103 msgid "Events today" msgstr "Esdeveniments d'avui" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Upcoming birthdays" msgstr "Aniversaris propers" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Not available in all themes" msgstr "No està disponible en tots els temes" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1105 msgid "System (personal) notifications" msgstr "Notificacions (personals) del sistema" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "System info messages" msgstr "Missatges d'informació del sistema" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1107 msgid "System critical alerts" msgstr "Alertes crítiques del sistema" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "New connections" msgstr "Noves connexions" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1109 msgid "System Registrations" -msgstr "Inscripcions del Sistema" +msgstr "Registres del sistema" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1110 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:1207 +#: ../../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/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Must be greater than 0" msgstr "Ha de ser més gran que 0" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../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:1210 +#: ../../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/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1118 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:1214 +#: ../../Zotlabs/Module/Settings.php:1119 msgid "Miscellaneous Settings" msgstr "Ajustos diversos" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "Default photo upload folder" msgstr "Carpeta per defecte de fotos pujades" -#: ../../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 - any en curs, %m - mes corrent" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "Default file upload folder" msgstr "Carpeta per defecte d'arxius pujats" -#: ../../Zotlabs/Module/Settings.php:1218 +#: ../../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/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Remove this channel." msgstr "Elimina aquest canal." -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1126 msgid "Firefox Share $Projectname provider" msgstr "Firefox Share $Projectname provider" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Start calendar week on monday" msgstr "Comença la setmana del calendari el dilluns" @@ -5828,7 +5517,7 @@ msgid "" msgstr "Podria ser necessari importar el fitxer \"install / schema_xxx.sql\" manualment utilitzant un client de base de dades." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 +#: ../../Zotlabs/Module/Setup.php:721 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Si us plau, consulteu el fitxer \"install / INSTALL.txt\"." @@ -6028,200 +5717,199 @@ msgid "mb_string PHP module" msgstr "mòdul PHP mb_string" #: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "mòdul PHP mcrypt" + +#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "Mòdul xml de PHP" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 msgid "Apache mod_rewrite module" msgstr "mòdul 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 "Error: el mòdul mod-rewrite del servidor web Apache es requereix i no està instal·lat." -#: ../../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 "Error: es requereix proc_open però o no està instal·lat o ha estat desactivat a php.ini" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../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/Setup.php:518 +#: ../../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/Setup.php:522 +#: ../../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/Setup.php:526 +#: ../../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/Setup.php:530 +#: ../../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/Setup.php:534 +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Error: el mòdul PHP mcrypt es requereix però no està instal·lat." + +#: ../../Zotlabs/Module/Setup.php:539 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Error: el mòdul xml de PHP es requereix per DAV però no està instal·lat." -#: ../../Zotlabs/Module/Setup.php: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'instaŀlador ha de poder crear i modificar un fitxer anomenat «.htconfig.php» a la carpeta arrel del servidor, però sembla que no ho pot fer." -#: ../../Zotlabs/Module/Setup.php: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 "Això sol ser un problema de permisos. Per molt que el teu usuari pugui modificar-lo, és el del servidor web qui necessita els poders de modificació." -#: ../../Zotlabs/Module/Setup.php: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 "Al final d'aquest procés hauràs de desar un text a l'arxiu «.htconfig.php», que es troba a la carpeta arrel del servidor." -#: ../../Zotlabs/Module/Setup.php: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 "Aquest procés és opcional. Per a fer una instaŀlació manual consulta les instruccions a «install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:563 msgid ".htconfig.php is writable" msgstr "L'arxiu «.htconfig.php» es pot modificar" -#: ../../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 fa servir el motor de plantilles Smarty3 per a renderitzar les vistes més ràpidament." -#: ../../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 tal de guardar aquestes plantilles compilades, el servidor web necessita tenir premis d'escriptura en el directori %s sota la carpeta principal." -#: ../../Zotlabs/Module/Setup.php: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 "Comprova que l'usuari que executa el servidor (www-data en Apache) té permisos d'escriptura en aquesta carpeta." -#: ../../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: com a mesura de seguretat l'usuari del servidor web ha de tenir accés d'escriptura només a %s, i no a les plantilles (.tpl) que conté." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:583 #, php-format msgid "%s is writable" msgstr "Es pot escriure a %s" -#: ../../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 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/Setup.php:598 +#: ../../Zotlabs/Module/Setup.php:603 msgid "store is writable" msgstr "Es pot escriure al magatzem (store)" -#: ../../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 "El certificat SSL no s'ha pogut validar. Arregla-ho o deshabilita l'accés https a aquest lloc" -#: ../../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 "Si tens accès pet https al teu lloc web o permets connexions pel port TCP 443 (port https), Has d'emprar un certificat VÀLID. NO es poden emprar certificats AUTO-SIGNATS!" -#: ../../Zotlabs/Module/Setup.php: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 "El motiu d'aquesta restricció és que les teves entrades públiques poden contenir referències a imatges del teu propi node." -#: ../../Zotlabs/Module/Setup.php: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 "Si el teu certificat no és reconegut, llavors el membres d'altres hubs, encara que tinguin certificats vàlids, rebran una advertència de seguretat en carregar contingut teu." -#: ../../Zotlabs/Module/Setup.php: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 "Per tant, com que perjudica la usabilitat més enllà del teu lloc, la restricció de tenir un certificat reconegut és molt important." -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../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/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 "Validació del certificat 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 "No es poden reescriure les URL a «.htaccess». Comprova la configuració del servidor:" -#: ../../Zotlabs/Module/Setup.php:650 +#: ../../Zotlabs/Module/Setup.php:652 msgid "Url rewrite is working" msgstr "Es poden reescriure les URL a «.htaccess»" -#: ../../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 "L'arxiu de configuracio de la base de dades «.htconfig.php» no s'ha pogut modificar. El pots crear tu a l'arrel del servidor web amb el text de la caixa com a contingut." -#: ../../Zotlabs/Module/Setup.php:683 +#: ../../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/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:719 msgid "

What next

" msgstr "

I ara què?

" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:720 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6243,62 +5931,64 @@ msgstr "Esborra tots els arxius" msgid "Remove this file" msgstr "Esborra l'arxiu" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "S'ha actualitzat la cosa" - -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "No s'ha pogut emmagatzemar l'objecte" - -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "S'ha afegit la cosa" - -#: ../../Zotlabs/Module/Thing.php:196 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +msgid "Version %s" +msgstr "Versió %s" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Mostra la cosa" +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Plugins/addons/apps Instal·lats:" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "no s'ha trobat l'element." +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Plugins/addons/apps no instal·lats" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Edita la cosa" +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Aquest és un node de $Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat." -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Tria un perfil" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Etiqueta:" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Publica una activitat" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Última actualització en rerefons:" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "S'envia només a visitants del perfil corresponent" +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Càrrega actual mitja:" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Nom de la cosa. Exemple: patata" +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Correguent en el lloc web" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "Adreça URL de la cosa (opcional)" +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Visita hubzilla.org per saber-ne més de $Projectname." -#: ../../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/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Per informar d'errors o problemes ves a" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Afegeix una cosa al teu perfil" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "$projectname qüestions" + +#: ../../Zotlabs/Module/Siteinfo.php:80 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Per suggerències, felicitacions i altres, envia'ns un mail a «redmatrix» [arroba] librelist [punt] com" + +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Administradors del lloc" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6316,8 +6006,8 @@ msgstr "Origen actualitzat." 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 "Canal Origen" @@ -6393,12 +6083,12 @@ msgstr "No hi ha suggerencies. Si es un lloc nou, espera 24 hores i proba de nou msgid "Ignore/Hide" msgstr "Ignora/Amaga" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 msgid "post" msgstr "entrada" -#: ../../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 "comentari" @@ -6419,110 +6109,131 @@ msgstr "Elimina l'etiqueta d'element" msgid "Select a tag to remove: " msgstr "Tria l'etiqueta a eliminar:" -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Pàgines web" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "S'ha actualitzat la cosa" -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Accions" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "No s'ha pogut emmagatzemar l'objecte" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Enllaç a Pàgina" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "S'ha afegit la cosa" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Títol de la pàgina" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostra la cosa" -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:108 ../../include/conversation.php:1710 -#: ../../include/conversation.php:1713 ../../include/features.php:55 -msgid "Wiki" -msgstr "Wiki" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "no s'ha trobat l'element." -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "Sandbox" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Edita la cosa" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Tria un perfil" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Publica una activitat" + +#: ../../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/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Nom de la cosa. Exemple: patata" + +#: ../../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/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "Adreça URL de la foto d'una cosa (opcional)" + +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Afegeix una cosa al teu perfil" + +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exportar Canal" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Exporta la informació bàsica del canal a un arxiu. Això actua com a còpia de recolzament de les teves connexions, permisos, perfil i dades bàsiques, les quals pots emprar per traslladar aquestes dades a una altre lloc/node, però no conté el contingut del canal." -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Comparació de revisió" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exportar el Contingut" -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Reverteix" +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Exporta la informació del canal i tot el contingut recent a un arxiu de recolzament JSON que por ser restaurat o importat en altre lloc/node. Això còpia totes les teves connexions, permisos, perfil i dades i mesos de entrades. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que pot trigar uns minuts a començar a baixar." -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Escriu el nom del teu nou wiki:" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporta les teves entrades d'un any donat." -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Escriu el nom de la teva nova pàgina:" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Pots també exportar les teves entrades i conversacions d'un any o un mes en particular. Ajusta la data a la barra de direccions del navegador per seleccionar altres dates. Si la exportació falla (possiblement degut al esgotament de la memòria del node servidor), si et plau, intenta de nou la selecció d'un rang de dates més limitat." -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Escriu el nou nom:" +#: ../../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/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Embeu una imatge dels àlbums de fotos" +#: ../../Zotlabs/Module/Uexport.php: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/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "Embeu una imatge dels teus àlbums" +#: ../../Zotlabs/Module/Uexport.php: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/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 "Tria una imatge per a embeure-la" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Tria un àlbum" - -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Tria un àlbum diferent..." - -#: ../../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/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/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Ha ocorregut un error treient l'àlbum" - -#: ../../Zotlabs/Module/Viewconnections.php:65 +#: ../../Zotlabs/Module/Viewconnections.php:62 msgid "No connections." msgstr "Sense connexions." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visita el perfil [%s] de %s" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:104 msgid "View Connections" msgstr "Veure Connexions" @@ -6530,23 +6241,22 @@ msgstr "Veure Connexions" msgid "Source of Item" msgstr "Origen de l'article" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autoritza la connexió de l'aplicació" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Pàgines web" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna a la teva aplicació i insereix aquest Codi de Seguretat:" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Accions" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Si et plau, identifica't per continuar." +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Enllaç a Pàgina" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vols autoritzar a aquesta aplicació l'accés a les teves entrades i contactes i/o a crear noves entrades com si fos tu mateix." +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Títol de la pàgina" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6556,6 +6266,92 @@ msgstr "Cerca a xchan" msgid "Lookup xchan beginning with (or webbie): " msgstr "Cerca a xchan començant per (o webbie)" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Administració" + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "Informe d'Errors" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "Veure Marcadors" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "Les meves Sales de Xat" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "Compartir amb Firefox" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "Diagnòstics Remots" + +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Suggerir Canals" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Identifica't" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Malla" + +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Canal Personal" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Esdeveniments" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Directori" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Correu" + +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Xerrar" + +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Sondeig" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Suggeriment" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Canal Aleatori" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Convida" + +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Funcionalitats" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Entrada" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Compra" + #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Perdut el nom de la sala" @@ -6576,19 +6372,19 @@ msgstr "Sala no trobada." msgid "Room is full" msgstr "La sala es plena" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 msgid "$Projectname Notification" msgstr "Notificació de $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 msgid "Thank You," msgstr "Gràcies," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format msgid "%s Administrator" msgstr "%s Administrador" @@ -6781,97 +6577,11 @@ msgstr "Creada una nova entrada" msgid "commented on %s's post" msgstr "comentat a l'entrada de %s" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Administració" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Informe d'Errors" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Veure Marcadors" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Les meves Sales de Xat" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Compartir amb Firefox" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnòstics Remots" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Suggerir Canals" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Identifica't" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Malla" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Canal Personal" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Esdeveniments" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Directori" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Correu" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Xerrar" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Sondeig" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Suggeriment" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Canal Aleatori" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Convida" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funcionalitats" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Entrada" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Compra" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 msgid "Private Message" msgstr "Missatge Privat" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 msgid "Select" msgstr "Selecciona" @@ -6919,11 +6629,11 @@ msgstr "Canvia el Estat de la Preferència" msgid "starred" msgstr "preferit" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 msgid "Message signature validated" msgstr "Validada la signatura del missatge" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 msgid "Message signature incorrect" msgstr "Signatura del missatge incorrecta" @@ -6979,17 +6689,17 @@ msgstr "Mur-a-Mur" msgid "via Wall-To-Wall:" msgstr "via Mur-a-Mur:" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 #, php-format msgid "from %s" msgstr "De %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 #, php-format msgid "last edited: %s" msgstr "últim editat: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 #, php-format msgid "Expires: %s" msgstr "Expira: %s" @@ -7007,27 +6717,26 @@ msgid "Mark all seen" msgstr "Marca tot com ja vist" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "" +msgid "[+] show all" +msgstr "[+] mostra tot" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 msgid "Bold" msgstr "Negreta" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 msgid "Italic" msgstr "Italica" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 msgid "Underline" msgstr "Subratllat" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 msgid "Quote" msgstr "Cometes" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 msgid "Code" msgstr "Codi" @@ -7043,74 +6752,11 @@ msgstr "Insereix Enllaç" msgid "Video" msgstr "Video" -#: ../../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/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Només jo" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Públic" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Ningú a la xarxa $Projectname" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" -msgstr "Qualsevol compte a %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Qualsevol de les meves connexions" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Només les connexions que permeto específicament" - -#: ../../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/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/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/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/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/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/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Aquests son els ajustos per defecte de l'audiència de les teves pàgines web" - #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "No s'ha trobat nom d'usuari a l'arxiu d'importació." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +#: ../../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." @@ -7119,291 +6765,6 @@ msgstr "No s'ha pogut importar el canal perquè l'adreça única de canal no s'h 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/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "La imatge excedeix la mida limit pel lloc web en %lu bytes" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "El fitxer d'imatge esta buit." - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Fracassà l'emmagatzematge de la Foto" - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "Una foto nova" - -#: ../../include/photos.php:303 -#, 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 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Albums de Fotos" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Puja Noves Fotos" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Desconectar" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Finalitza aquesta sessió" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Inici" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Les teves entrades i converses" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "La teva pàgina de perfil" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Gestiona/Edita perfils" - -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Edita Perfil" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Edita el teu perfil" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Les Teves Fotos" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Els teus arxius" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Les teves sales de xerrar" - -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Marcadors" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Els teus marcadors" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Les teves pàgines web" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Signatura" - -#: ../../include/nav.php:129 -#, 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" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Pàgina Personal" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Crear un compte" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Ajuda i documentació" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Aplicacions, utilitats, enllaços, jocs" - -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Cerca pel lloc @name, #tag, ?docs, contingut" - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Directori de Canals" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "La teva malla" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Marca totes les notificacions de la malla vistes" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Canal personal" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Marca totes les notificacions de canal vistes" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Noticies" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notificacions" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Veure totes les Notificacions" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Correu privat" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Veure tots els missatges privats" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Marcar tots els missatges privats vistos" - -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Safata d'entrada" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Safata de sortida" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nou Missatge" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Calendari d'Events" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Veure tots els esdeveniments" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Marcar tots els esdeveniments vistos" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Gestiona els Teus Canals" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Ajustos de Compte/Canal" - -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Admin" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Ajustos i Configuració del Lloc" - -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Carregant..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@nom, #etiqueta, ?doc, contingut" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Si us plau, espera......." - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "Veure a mida competa" - -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrador" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Sense Assumpte" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Pàgina Nova" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Títol" - #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -7442,159 +6803,952 @@ msgstr "agrada" msgid "dislikes" msgstr "desagrada" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Incapaç de trobar l'informació d'identitat a la base de dades" +#: ../../include/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/channel.php:67 -msgid "Empty name" -msgstr "Nom buit" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Inicia:" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nom massa llarg" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Acaba:" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Sense identificador de compte" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Aquest succés ha estat afegit al teu calendari." -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Alies/malnom es requerit." +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Sense especificar" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Àlies reservat. Tria un altre." +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Necessita una Acció" -#: ../../include/channel.php:212 +#: ../../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 "" -"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" +"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/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "No es pot recuperar la identitat creada" +#: ../../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/channel.php:341 -msgid "Default Profile" -msgstr "Perfil per Defecte" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Desconegut)" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "El canal demanat no està disponible." +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Visible per tothom a la Internet" -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Crear un Perfil Nou" +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Visible només per tú." -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Visible per tothom" +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Visible per tothom en aquesta xarxa." -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Gènere:" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Visible per tothom autenticat." -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Estatus:" - -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Pàgina Personal:" - -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Ara en Linia" - -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "M'agrada aquest canal" - -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Aniversari:" - -#: ../../include/channel.php:1232 +#: ../../include/items.php:1144 #, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +msgid "Visible to anybody on %s." +msgstr "Visible per a tothom a %s." -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Preferència Sexual:" +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Visible per a totes les connexions." -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Etiquetes:" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Visible per a les connexions aprovades." -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Idees Polítiques:" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Visible per a específiques connexions." -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religió:" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "El grup privat està vuit." -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Aficions/Interessos:" +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Grup privat: %s" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Agrada:" +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Connexió no trobada." -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Desagrada:" +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "foto del perfil" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Informació de contacte i Xarxes Socials:" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "No s'ha proporcionat bústia." -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Els meus altres canals:" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[no subject]" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Interessos Musicals:" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "incapaç de determinar el remitent" -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Llibres, literatura:" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "L'entrada guardada no pot ser verificada" -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Televisió:" +#: ../../include/text.php:428 +msgid "prev" +msgstr "prev" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Películes/Dança/Cultura/Entreteniment:" +#: ../../include/text.php:430 +msgid "first" +msgstr "primer" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Amor/Romace:" +#: ../../include/text.php:459 +msgid "last" +msgstr "últim" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Treball/feina:" +#: ../../include/text.php:462 +msgid "next" +msgstr "pròxim" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Escola/educació:" +#: ../../include/text.php:472 +msgid "older" +msgstr "el més antic" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "M'agrada això" +#: ../../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/text.php:1039 +msgid "pinged" +msgstr "colocat" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "picar" + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "picat" + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "bufetada" + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "bufetejat" + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "senyal" + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "senyalat" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "menyspreu" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "menyspreuat" + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "feliç" + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "trist" + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "melós" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "cansat" + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "turgent" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "enfadat" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "estupefacte" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "perplexe" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "Interessat" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "amargat" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "feliç" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "viu" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "molest" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "ansiós" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "malagaitós" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "transtornat" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustrat" + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "deprimit" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivat" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "relaxat" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "sorprès" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "Dilluns" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "Dimarts" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "Dimecres" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "Dijous" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "Divendres" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "Dissabte" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "Diumenge" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "Gener" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "Febrer" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "Març" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "Abril" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "Maig" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "Juny" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "Juliol" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "Agost" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "Setembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "Octubre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "Novembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "Desembre" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Adjunt Desconegut" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "desconegut" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "elimina categoria" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "elimina del arxiu" + +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "per defecte" + +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Format de la pàgina" + +#: ../../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/text.php:1803 +msgid "Page content type" +msgstr "Tipus de contingut de la pàgina" + +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Tria un idioma alternatiu" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "activitat" + +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Eines de disseny" + +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Pàgines" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nova App" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggerencies" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Veure més....." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Tens %1$.0f de %2$.0f connexions permeses." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Afegeix una Nova Connexió" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Introdueix l'adreça del canal" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Exemples: bob@example.com, https://exemple.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notes" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Plaç de remoció" + +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Cerques Guardades" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "afegeix" + +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Carpetes Guardades" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tot" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Arxius" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Refresc" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Ajustos de Compte" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Ajustos de Canal" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Característiques addicionals" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Ajustos de Complements" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Ajustos de pantalla" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestiona ubicacions" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Exportat canal" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Apps connectades" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Ajustos Premium de Canal" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Menú de Correu Privat" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Vista Combinada" + +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Safata d'entrada" + +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Safata de sortida" + +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nou Missatge" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversacions" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Missatges Rebuts" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Missatges Enviats" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Sense missatges." + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Conversació esborrada" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Menú d'Esdeveniments" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Vista de Dia" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Vista de Setmana" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Vista de Mes" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Eina d'Esdeveniments" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Exportar Calendari" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importar Calendari" + +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Sala per Xerrar" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Visió General" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Membres de la Sala de Xat" + +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Sales de Xat Favorites" + +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Sales de Xat Suggerides" + +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/imatge" + +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Fes clic per veure més" + +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Eines de Valoració" + +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Valora'm" + +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Veure Valoracions" + +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Forums" + +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Tasques" + +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Documentació" + +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Informació del Projecte/Lloc" + +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Per Membres" + +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Per Administradors" + +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Per Desenvolupadors" + +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "Una inscripció per a ser membre està esperant confirmació" + +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Revisa cua" + +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Actualitzacions de Base de Dades" + +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Admin" + +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Característiques del Plugin" + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "El canal està bloquejat en aquest lloc." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Ubicació del canal perduda." + +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "La resposta del canal remot fou incompleta." + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "El canal fou esborrat i actualment no existeix." + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocol desactivat." + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "Descobriment de canal fallit." + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "No pots connectar amb tu mateix." + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$s de marcadors" + +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Línia de Temps Pública" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 +#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 +#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 +#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 +#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 +#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 +#: ../../include/bbcode.php:883 +msgid "Image/photo" +msgstr "Imatge/foto" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Contingut encriptat" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Instal·la l'element %s:" + +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"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/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/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Clic per obrir/tancar" + +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "xafa guitarres" + +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Diferents observadors veuran aquest text de diferents formes" + +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 va escriure:" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opcions de Directori" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Manera Segura" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Només Fòrums Públics" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Només Aquest Lloc Web" + +#: ../../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/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Desconectar" + +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Finalitza aquesta sessió" + +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Inici" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Les teves entrades i converses" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "La teva pàgina de perfil" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Gestiona/Edita perfils" + +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Edita Perfil" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Edita el teu perfil" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Les Teves Fotos" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Els teus arxius" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Les teves sales de xerrar" + +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Marcadors" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Els teus marcadors" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Les teves pàgines web" + +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Signatura" + +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - click per desconectar" + +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Autenticació remota" + +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Clica per autentificar-te en el teu node" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Pàgina Personal" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Crear un compte" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Ajuda i documentació" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Aplicacions, utilitats, enllaços, jocs" + +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca pel lloc @name, #tag, ?docs, contingut" + +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Directori de Canals" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "La teva malla" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Marca totes les notificacions de la malla vistes" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Canal personal" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Marca totes les notificacions de canal vistes" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Noticies" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notificacions" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Veure totes les Notificacions" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Correu privat" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Veure tots els missatges privats" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Marcar tots els missatges privats vistos" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Calendari d'Events" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Veure tots els esdeveniments" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Marcar tots els esdeveniments vistos" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Gestiona els Teus Canals" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Ajustos de Compte/Canal" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Ajustos i Configuració del Lloc" + +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Carregant..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@nom, #etiqueta, ?doc, contingut" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Si us plau, espera......." #: ../../include/connections.php:95 msgid "New window" @@ -7609,6 +7763,52 @@ msgstr "Obrir la localització seleccionada en un altre finestra o pestanya del msgid "User '%s' deleted" msgstr "usuari '%s' esborrat" +#: ../../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/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Troba Canals" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Entra un nom o interes" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Conecta/Segueix" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemples: Lionel Messi, Futbolista" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Perfil Aleatori" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Convida Amics" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Exemple avançat: nom=pep i pais=eire" + +#: ../../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/contact_widgets.php:127 +msgid "show more" +msgstr "mostrar més" + #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7619,269 +7819,258 @@ msgstr "%1$s esta ara connectat amb %2$s" msgid "%1$s poked %2$s" msgstr "%1$s a esperonat %2$s" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "esperonat" - -#: ../../include/conversation.php:694 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "Vista %s del perfil @ %s" -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Categories:" -#: ../../include/conversation.php:714 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Arxivar a:" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "Veure en context" -#: ../../include/conversation.php:850 +#: ../../include/conversation.php:847 msgid "remove" msgstr "treu" -#: ../../include/conversation.php:855 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Esborra els Articles Seleccionats" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Veure l'Origen" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Segueix el Fil" -#: ../../include/conversation.php:953 +#: ../../include/conversation.php:950 msgid "Unfollow Thread" msgstr "Fil Abandonat" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:955 msgid "Activity/Posts" msgstr "Activitat/Entrades" -#: ../../include/conversation.php:960 +#: ../../include/conversation.php:957 msgid "Edit Connection" msgstr "Modifica la Connexió" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:958 msgid "Message" msgstr "Missatge" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "%s agrada això." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "%s no agrada això." -#: ../../include/conversation.php:1082 +#: ../../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/conversation.php:1084 +#: ../../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/conversation.php:1090 +#: ../../include/conversation.php:1087 msgid "and" msgstr "i" -#: ../../include/conversation.php:1093 +#: ../../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/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "%s agrada això." -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "%s no agrada això." -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "Ajusta la teva ubicació" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Treu la localització del navegador" -#: ../../include/conversation.php:1182 +#: ../../include/conversation.php:1177 msgid "Tag term:" msgstr "Paraula de l'Etiqueta:" -#: ../../include/conversation.php:1183 +#: ../../include/conversation.php:1178 msgid "Where are you right now?" msgstr "On ets ara?" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1210 msgid "Page link name" msgstr "Nom de la pàgina enllaçada" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:1213 msgid "Post as" msgstr "Envia com" -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1223 msgid "Toggle voting" msgstr "Commutar votació" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Categories (opcional, llista separada per comes)" -#: ../../include/conversation.php:1269 +#: ../../include/conversation.php:1254 msgid "Set publish date" msgstr "Ajusta la data de publicació" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "Descobrir" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Importar fluxos públics" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Ordenar per Comentaris" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Ordenar per Data del Comentari" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Ordenar per Entrades" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Ordenar per Data d' Entrada" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1529 msgid "Posts that mention or involve you" msgstr "Entrades que et mencionen o involucren" -#: ../../include/conversation.php:1553 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Activitat del Flux - per data" -#: ../../include/conversation.php:1559 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Preferit" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Entrades Favorites" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Entrades marcades com a SPAM" -#: ../../include/conversation.php:1629 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Estat dels Missatges i Entrades" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1623 msgid "About" msgstr "El Meu Perfil" -#: ../../include/conversation.php:1641 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Detalls del Perfil" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Albums de Fotos" + +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Arxius i Emmagatzegament" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Sala per Xerrar" - -#: ../../include/conversation.php:1693 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Marcadors Guardats" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Gestió de Pàgines Web" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Assistint" msgstr[1] "Assistint" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Desassistint" msgstr[1] "Desassistint" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indecís" msgstr[1] "Indecisos" -#: ../../include/conversation.php:1777 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "Acord" msgstr[1] "Acords" -#: ../../include/conversation.php:1780 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Desacord" msgstr[1] "Desacords" -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Abstenirse" msgstr[1] "Abstenirse" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "No s'ha pogut importar el canal perquè l'identificador del canal no s'ha pogut duplicar en aquest servidor." - -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "No s'ha pogut importar el canal perquè el canal no s'ha pogut clonar." - #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Freqüentment" @@ -7946,6 +8135,12 @@ msgstr "Neutre" msgid "Non-specific" msgstr "Indefinit" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "Altres" + #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Indecís" @@ -8122,366 +8317,361 @@ msgstr "No Et Fa Res" msgid "Ask me" msgstr "Pregunta" -#: ../../include/bookmarks.php:35 +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Visible per a la teva audiència " + +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Només jo" + +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Públic" + +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Ningú a la xarxa $Projectname" + +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "%1$s's bookmarks" -msgstr "%1$s de marcadors" +msgid "Any account on %s" +msgstr "Qualsevol compte a %s" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Qualsevol de les meves connexions" -#: ../../include/security.php:427 +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Només les connexions que permeto específicament" + +#: ../../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/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/PermissionDescription.php:161 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." +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Aquest és l'ajust per defecte per al públic del seu flux normal i entrades." -#: ../../include/text.php:404 -msgid "prev" -msgstr "prev" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Aquesta és la configuració per defecte per a qui pugui veure el teu perfil per defecte del canal" -#: ../../include/text.php:406 -msgid "first" -msgstr "primer" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "Aquesta és la configuració per defecte per a qui pugui veure les teves connexions" -#: ../../include/text.php:435 -msgid "last" -msgstr "últim" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Aquesta és la configuració per defecte per a qui pugui veure els teus arxius i fotos" -#: ../../include/text.php:438 -msgid "next" -msgstr "pròxim" +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "Aquests son els ajustos per defecte de l'audiència de les teves pàgines web" -#: ../../include/text.php:448 -msgid "older" -msgstr "el més antic" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Adreça de correu electrònic no vàlida" -#: ../../include/text.php:450 -msgid "newer" -msgstr "El més nou" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Sense Connexions" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "La teva adreça de correu electrònic ja esta registrada en aquest lloc" -#: ../../include/text.php:868 +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Es requereix Invitació" + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "L'invitació no ha pogut ser verificada" + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Entra la informació sol·licitada" + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Ha fallat guardar la informació del compte" + +#: ../../include/account.php:249 #, php-format -msgid "View all %s connections" -msgstr "Veure totes les connexions de %s" +msgid "Registration confirmation for %s" +msgstr "Registre confirmat per %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %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" +msgstr "la teva contrasenya registrada" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Detalls del registre per %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Compte aprovat." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %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:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Feu clic aquí per actualitzar." + +#: ../../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:497 +msgid "No source file." +msgstr "No hi ha arxiu d'origen." + +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "No trobo l'arxiu a reemplaçar" + +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "No trobo l'arxiu a revisar/actualitzar" + +#: ../../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: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: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:855 +msgid "Stored file could not be verified. Upload failed." +msgstr "L'arxiu guardat no es pot verificar. Pujada fallida." + +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Trajectòria no disponible" + +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Trajèctoria vuida." + +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "Nom o trajectòria duplicat" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Trajectòria no trobada." + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "mkdir va fracassar." + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "Arxiu de base de dades va fallar." + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "Trajèctoria vuida" + +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Incapaç de trobar l'informació d'identitat a la base de dades" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "esperona" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Nom buit" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "coloca" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Nom massa llarg" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "colocat" +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Sense identificador de compte" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "picar" +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Alies/malnom es requerit." -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "picat" +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Àlies reservat. Tria un altre." -#: ../../include/text.php:1021 -msgid "slap" -msgstr "bufetada" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "bufetejat" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "senyal" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "senyalat" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "menyspreu" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "menyspreuat" - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "feliç" - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "trist" - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "melós" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "cansat" - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "turgent" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "enfadat" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "estupefacte" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "perplexe" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "Interessat" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amargat" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "feliç" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "viu" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "molest" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "ansiós" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "malagaitós" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "transtornat" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrat" - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "deprimit" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivat" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "relaxat" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorprès" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Dilluns" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Dimarts" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Dimecres" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Dijous" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Divendres" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Dissabte" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Diumenge" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "Gener" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "Febrer" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "Març" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "Abril" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "Maig" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juny" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juliol" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "Agost" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "Setembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "Octubre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "Desembre" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Adjunt Desconegut" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "desconegut" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "elimina categoria" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "elimina del arxiu" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "per defecte" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Format de la pàgina" - -#: ../../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/text.php:1784 -msgid "Page content type" -msgstr "Tipus de contingut de la pàgina" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Tria un idioma alternatiu" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "activitat" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Eines de disseny" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Pàgines" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Sortir." - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Autenticació fallida" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pot veure el flux i entrades normals" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Pot veure les meves pàgines web" - -#: ../../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/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Pot dir si agrada/desagrada " - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Perfils i altres coses a més d'entrades/comentaris" - -#: ../../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/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avançat - capaç de crear canals de grups de foro" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Pot xatejar amb mi (si estic disponible)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Pot escriure al meu magatzem d'arxius i fotos" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Pot editar les meves pàgines web" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Quelcom avançat - molt útil en comunitats obertes" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Pot administrar els meus recursos del canal" - -#: ../../include/permissions.php:46 +#: ../../include/channel.php:211 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" +"Nickname has unsupported characters or is already being used on this site." +msgstr "L'álies te caracters no soportats o ja esta en ús en aquest lloc" + +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "No es pot recuperar la identitat creada" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Perfil per Defecte" + +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "El canal demanat no està disponible." + +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Crear un Perfil Nou" + +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Visible per tothom" + +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Gènere:" + +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Estatus:" + +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Pàgina Personal:" + +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Ara en Linia" + +#: ../../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/channel.php:1179 +msgid "Birthday:" +msgstr "Aniversari:" + +#: ../../include/channel.php:1192 +#, php-format +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" @@ -8528,257 +8718,378 @@ msgid "Provide managed web pages on your channel" msgstr "Proporcionar pàgines web gestionades al seu canal" #: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "" - -#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Amaga la Valoració" -#: ../../include/features.php:56 +#: ../../include/features.php:55 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Amaga el botó de valoracions al teu canal i pàgines del perfil. Nota: Et poden continuar valorant en altres llocs." -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Private Notes" msgstr "Notes Privades" -#: ../../include/features.php:57 +#: ../../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:58 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "Navegació pel Selector de Canals" -#: ../../include/features.php:58 +#: ../../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:59 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "Ubicació de la Foto" -#: ../../include/features.php:59 +#: ../../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:60 +#: ../../include/features.php:59 msgid "Access Controlled Chatrooms" msgstr "Accés Controlat a les Sales de Xat" -#: ../../include/features.php:60 +#: ../../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:61 +#: ../../include/features.php:60 msgid "Smart Birthdays" msgstr "Aniversaris Intel·ligents" -#: ../../include/features.php:61 +#: ../../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:62 +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "Manera Experta" -#: ../../include/features.php:62 +#: ../../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:63 +#: ../../include/features.php:62 msgid "Premium Channel" msgstr "Privilegis del Canal" -#: ../../include/features.php:63 +#: ../../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/features.php:68 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "Característiques de Composició d'Entrades" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Large Photos" msgstr "Grans Fotos" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Inclou gran (1024px) foto de miniatura a les entrades. Si no està activat, empra petita (640px) foto de miniatura." -#: ../../include/features.php:72 +#: ../../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/features.php:73 +#: ../../include/features.php:72 msgid "Even More Encryption" msgstr "Encara Més Encriptació" -#: ../../include/features.php:73 +#: ../../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/features.php:74 +#: ../../include/features.php:73 msgid "Enable Voting Tools" msgstr "Habilitar Eines de Votació" -#: ../../include/features.php:74 +#: ../../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/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Retarda Publicació" -#: ../../include/features.php:75 +#: ../../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/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Suprimeix Duplicats de Publicacions/Comentaris" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Evita que publicacions amb identic contingut siguin publicades amb menys de dos minuts entre entregues." -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Filtrat de Xarxa i Flux" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Cerca per Data" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Capacitat per seleccionar entrades per rang de dates" -#: ../../include/features.php:84 ../../include/group.php:311 +#: ../../include/features.php:83 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Grup Privat" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Habilita gestió i selecció de grups privats" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Cerques Guardades" - -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Guardar els termin de la cerca per a re-usar" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Pestanya Personal de Xarxa" -#: ../../include/features.php:86 +#: ../../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/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Pestanya Nou a la Xarxa" -#: ../../include/features.php:87 +#: ../../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/features.php:88 +#: ../../include/features.php:87 msgid "Affinity Tool" msgstr "Eina d'Afinitat" -#: ../../include/features.php:88 +#: ../../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/features.php:89 +#: ../../include/features.php:88 msgid "Connection Filtering" msgstr "Filtre de Connexió" -#: ../../include/features.php:89 +#: ../../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/features.php:90 +#: ../../include/features.php:89 msgid "Show channel suggestions" msgstr "Mostra suggerencies de canals" -#: ../../include/features.php:95 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "Eina d'Entrades/Comentaris" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Community Tagging" msgstr "Etiquetat per la Comunitat" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "Capacitat d'etiquetar entrades existents" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "Categories d'Entrades" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "Afegeix categoria a la teva entrada" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Emoji Reactions" -msgstr "Reaccions dels Emoji" +msgstr "" + +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "" #: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Afegeix un emoji habilitat per reaccionar a entrades" - -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Carpetes Guardades" - -#: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "Capacitat de arxivar entrades en les carpetes" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "No Agrada l'Entrada" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "Capacitat per marcar amb \"No Agrada\" les entrades/comentaris" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "Entrades Excel·lents" -#: ../../include/features.php:101 +#: ../../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/features.php:102 +#: ../../include/features.php:101 msgid "Tag Cloud" msgstr "Núvol d'Etiquetes." -#: ../../include/features.php:102 +#: ../../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/oembed.php:324 +msgid "Embedded content" +msgstr "Contingut embegut" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Incorporació desactivada" + +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "Qui pot veure això?" + +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "Selecció a mida" + +#: ../../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/acl_selectors.php:274 +msgid "Show" +msgstr "Mostra" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "No mostrar" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Altres xarxes i serveis de correu" + +#: ../../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/auth.php:105 +msgid "Logged out." +msgstr "Sortir." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Autenticació fallida" + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Aniversari" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Edat:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD o MM-DD" + +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "mai" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "fa menys d'un segon" + +#: ../../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/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "any" +msgstr[1] "anys" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mes" +msgstr[1] "mesos " + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "setmana" +msgstr[1] "setmanes" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dia" +msgstr[1] "dies" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "hores" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minut" +msgstr[1] "minuts" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "segon" +msgstr[1] "segons" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Aniversari de %1$s" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Feliç Aniversari %1$s" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -8806,583 +9117,21 @@ msgstr "Afegir grup privat" msgid "Channels not in any privacy group" msgstr "Sense canals en grups privats" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "afegeix" - -#: ../../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/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:814 -msgid "This event has been added to your calendar." -msgstr "Aquest succés ha estat afegit al teu calendari." - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Sense especificar" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Necessita una Acció" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Completat" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "En Procès" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Cancel·lat" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Adreça de correu electrònic no vàlida" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "La teva adreça de correu electrònic ja esta registrada en aquest lloc" - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Es requereix Invitació" - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "L'invitació no ha pogut ser verificada" - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Entra la informació sol·licitada" - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Ha fallat guardar la informació del compte" - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Inscripció confirmada per %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Sol·licitud d'inscripció a %s" - -#: ../../include/account.php:339 -msgid "your registration password" -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" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Compte aprovat." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Inscripció revocada per %s" - -#: ../../include/account.php:739 ../../include/account.php:741 -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/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Article no trobat." - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "No hi ha arxiu d'origen." - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "No trobo l'arxiu a reemplaçar" - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "No trobo l'arxiu a revisar/actualitzar" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "L'arxiu excedeix la mida limit de %d" - -#: ../../include/attach.php:688 -#, 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 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Pujada del arxiu fallida. Possible límit del sistema o acció interrompuda." - -#: ../../include/attach.php:859 -msgid "Stored file could not be verified. Upload failed." -msgstr "L'arxiu guardat no es pot verificar. Pujada fallida." - -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "Trajectòria no disponible" - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Trajèctoria vuida." - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "Nom o trajectòria duplicat" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Trajectòria no trobada." - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir va fracassar." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "Arxiu de base de dades va fallar." - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "Trajèctoria vuida" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Imatge/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contingut encriptat" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Instal·la l'element %s:" - -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"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/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/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Clic per obrir/tancar" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "xafa guitarres" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Diferents observadors veuran aquest text de diferents formes" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 va escriure:" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Desconegut)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visible per tothom a la Internet" - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visible només per tú." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visible per tothom en aquesta xarxa." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visible per tothom autenticat." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible per a tothom a %s." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Visible per a totes les connexions." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visible per a les connexions aprovades." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visible per a específiques connexions." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "El grup privat està vuit." - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Grup privat: %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Connexió no trobada." - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "foto del perfil" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Contingut embegut" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Incorporació desactivada" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nova App" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Suggerencies" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Veure més....." - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tens %1$.0f de %2$.0f connexions permeses." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Afegeix una Nova Connexió" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Introdueix l'adreça del canal" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Exemples: bob@example.com, https://exemple.com/barbara" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notes" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Plaç de remoció" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tot" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Arxius" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Refresc" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Ajustos de Compte" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Ajustos de Canal" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Característiques addicionals" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Ajustos de Complements" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Ajustos de pantalla" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestiona ubicacions" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exportat canal" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Apps connectades" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Ajustos Premium de Canal" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menú de Correu Privat" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vista Combinada" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversacions" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Missatges Rebuts" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Missatges Enviats" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Sense missatges." - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Conversació esborrada" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Eina d'Esdeveniments" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exportar Calendari" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importar Calendari" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Visió General" - -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Membres de la Sala de Xat" - -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Llista de Wikis" - -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Pàgines de Wikis" - -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Sales de Xat Favorites" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Sales de Xat Suggerides" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/imatge" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Fes clic per veure més" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Eines de Valoració" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Valora'm" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Veure Valoracions" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Forums" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Tasques" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Documentació" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Informació del Projecte/Lloc" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Per Membres" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Per Administradors" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Per Desenvolupadors" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Una inscripció per a ser membre està esperant confirmació" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Revisa cua" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Actualitzacions de Base de Dades" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Característiques del Plugin" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "i" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "Perfil públic" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s canviat %2$s a “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visita %1$s en %2$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s Ha actualitzat %2$s, canviant %3$s." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Adjuntat:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificació d'esdeveniment de $Projectname" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Esborrar aquest item?" #: ../../include/js_strings.php:8 -#, 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,223 +9361,278 @@ 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/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Conecta/Segueix" +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "Una foto nova" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Lionel Messi, Futbolista" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Perfil Aleatori" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Convida Amics" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Exemple avançat: nom=pep i pais=eire" - -#: ../../include/contact_widgets.php:122 +#: ../../include/photos.php:299 #, 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ú" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s enviat %2$s a %3$s" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostrar més" +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Puja Noves Fotos" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opcions de Directori" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Manera Segura" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Només Fòrums Públics" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Només Aquest Lloc Web" - -#: ../../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/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "Qui pot veure això?" - -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Selecció a mida" - -#: ../../include/acl_selectors.php:271 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Selecciona \"Mostrar\" per permetre la visualització. \"No Mostrar\" et permet obviar i limitar l'abast de \"Mostrar\"." - -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Mostra" - -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "No mostrar" - -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Altres xarxes i serveis de correu" - -#: ../../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/datetime.php:135 -msgid "Birthday" -msgstr "Aniversari" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Edat:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD o MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "fa menys d'un segon" - -#: ../../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/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "any" -msgstr[1] "anys" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "mesos " - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "setmana" -msgstr[1] "setmanes" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dia" -msgstr[1] "dies" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "hores" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minut" -msgstr[1] "minuts" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "segon" -msgstr[1] "segons" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Aniversari de %1$s" - -#: ../../include/datetime.php:563 -#, 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 +#: ../../include/zot.php:699 msgid "Invalid data packet" msgstr "paquet de dades invàlid" -#: ../../include/zot.php:713 +#: ../../include/zot.php:715 msgid "Unable to verify channel signature" msgstr "No es pot verificar la signatura del canal" -#: ../../include/zot.php:2326 +#: ../../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:3703 +#: ../../include/zot.php:3712 msgid "invalid target signature" msgstr "Signatura objectiu invàlida" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Pàgina Nova" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Títol" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Pot veure el flux i entrades normals" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Pot veure el meu perfil del canal per defecte" + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Pot veure les meves connexions" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Pot veure al meu magatzem d'arxius i fotos" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Pot veure les meves pàgines web" + +#: ../../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/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Pot fer entrades a la meva pàgina de canal (\"mur\")" + +#: ../../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/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Pot enviar-me un missatge de correu privat" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Pot dir si agrada/desagrada " + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Perfils i altres coses a més d'entrades/comentaris" + +#: ../../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/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avançat - capaç de crear canals de grups de foro" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Pot xatejar amb mi (si estic disponible)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Pot escriure al meu magatzem d'arxius i fotos" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Pot editar les meves pàgines web" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Pot mostrar l'origen de les meves entrades públiques en altres canals" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Quelcom avançat - molt útil en comunitats obertes" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Pot administrar els meus recursos del canal" + +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Extremadament avançat. No toquis res si no saps que estàs fent" + +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Xarxes Socials" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Social - Principalment Públic" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Social - Restingit" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Social - Privat" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Foro de Comunitat" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Fòrum - Principalment Públic" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Fòrum - Restringit" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Fòrum - Privat" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Republicador" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Realimentador - Públic Principalment" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Retroalimentador - Restringit" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Objectiu Especial" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Espacial - Celebritat/Plataforma" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Especial - Repositori d'un Grup" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Personalitzat/Manera Experta" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "i" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "Perfil públic" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s canviat %2$s a “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Visita %1$s en %2$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s Ha actualitzat %2$s, canviant %3$s." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Adjuntat:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificació d'esdeveniment de $Projectname" + #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" msgstr "Focus (Hubzilla per defecte)" @@ -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,6 +382,229 @@ App::$strings["System error. Post not saved."] = "Hi ha hagut un error del siste App::$strings["Unable to obtain post information from database."] = "No s'ha pogut obtenir informació de l'entrada a la base de dades."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Has assolit el teu límit de %1$.0f entrades (descomptant comentaris)."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Has assolit el teu limit de %1$.0f pàgines web."; +App::$strings["Layouts"] = "Format Gràfic"; +App::$strings["Comanche page description language help"] = "Pgina d'ajuda del llenguatge Comanche"; +App::$strings["Layout Description"] = "Descripció del Disseny de la Pàgina"; +App::$strings["Download PDL file"] = "Descarrega l'arxiu PDL"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Benvingut a %s"; +App::$strings["First Name"] = "Nom"; +App::$strings["Last Name"] = "Cognoms"; +App::$strings["Nickname"] = "Àlies"; +App::$strings["Full Name"] = "Nom Sencer"; +App::$strings["Email"] = "Correu electrónic"; +App::$strings["Profile Photo"] = "Foto del Perfil"; +App::$strings["Profile Photo 16px"] = "Foto del Perfil 16px"; +App::$strings["Profile Photo 32px"] = "Foto del Perfil 32px"; +App::$strings["Profile Photo 48px"] = "Foto del Perfil 48px"; +App::$strings["Profile Photo 64px"] = "Foto del Perfil 64px"; +App::$strings["Profile Photo 80px"] = "Foto del Perfil 80px"; +App::$strings["Profile Photo 128px"] = "Foto del Perfil 128px"; +App::$strings["Timezone"] = "Zona horària"; +App::$strings["Homepage URL"] = "URL de la pàgina d'inici"; +App::$strings["Language"] = "Idioma"; +App::$strings["Birth Year"] = "Any de Naixement"; +App::$strings["Birth Month"] = "Mes de Naixement"; +App::$strings["Birth Day"] = "Dia de Naixement"; +App::$strings["Birthdate"] = "Aniversari"; +App::$strings["Gender"] = "Gènere"; +App::$strings["Male"] = "Masculí"; +App::$strings["Female"] = "Femení"; +App::$strings["webpage"] = "pàgina web"; +App::$strings["block"] = "bloc"; +App::$strings["layout"] = "disposició"; +App::$strings["menu"] = "menú"; +App::$strings["%s element installed"] = "%s element instal·lat"; +App::$strings["%s element installation failed"] = "%s instal·lació d'element va fallar"; +App::$strings["Like/Dislike"] = "M'agrada / No m'agrada"; +App::$strings["This action is restricted to members."] = "Aquesta acció està restringida als membres."; +App::$strings["Please 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ó."; +App::$strings["Total invitation limit exceeded."] = "El límit total invitacions s'ha superat."; +App::$strings["%s : Not a valid email address."] = "%s: adreça de correu electrònic no vàlida."; +App::$strings["Please join us on \$Projectname"] = "Si us plau uneix-te a nosaltres a \$Projectname."; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Límit d'invitacions excedit. Si us plau, poseu-vos en contacte amb l'administrador del lloc."; +App::$strings["%s : Message delivery failed."] = "%s : Entrega del Missatge fallida."; +App::$strings["%d message sent."] = array( + 0 => "%d missatge enviat.", + 1 => "%d missatges enviats.", +); +App::$strings["You have no more invitations available"] = "No té més invitacions disponibles"; +App::$strings["Send invitations"] = "Enviar invitacions"; +App::$strings["Enter email addresses, one per line:"] = "Introduïu les adreces de correu electrònic, una per línia:"; +App::$strings["Your message:"] = "El teu missatge:"; +App::$strings["Please join my community on \$Projectname."] = "Si us plau uneix-te la meva comunitat en \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Hauràs de facilitar aquest codi d'invitació:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Pots registrar-te a qualsevol node de \$Projectname (estàn tots interconnectats)"; +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"; +App::$strings["Please wait several minutes between consecutive operations."] = "Si us plau espera diversos minuts entre operacions consecutives."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quan sigui possible, per desapareixer d'un lloc, accedeix a aquest lloc web/node i elimina el teu canal."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Empra aquest formulari per desapareixer del lloc si el node ja no està operatiu."; +App::$strings["Hub not found."] = "Node no trobat."; +App::$strings["Unable to lookup recipient."] = "Incapaç de trobar el destinatari."; +App::$strings["Unable to communicate with requested channel."] = "Incapaç de comunicar amb el canal demanat."; +App::$strings["Cannot verify requested channel."] = "No puc verificar el canal demanat."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionat te restriccions sobre els missatges privats. L'enviament ha fallat."; +App::$strings["Messages"] = "Missatges"; +App::$strings["Message recalled."] = "Recupera el missatge."; +App::$strings["Conversation removed."] = "Conversació eliminada."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expira YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "El canal demanat no hi es en questa xarxa"; +App::$strings["Send Private Message"] = "Envia Missatge Privat"; +App::$strings["To:"] = "Per:"; +App::$strings["Subject:"] = "Assumpte:"; +App::$strings["Attach file"] = "Adjunta arxiu"; +App::$strings["Send"] = "Envia"; +App::$strings["Set expiration date"] = "Ajusta la data d'expiració"; +App::$strings["Delete message"] = "Elimina el missatge"; +App::$strings["Delivery report"] = "Informe d'entrega"; +App::$strings["Recall message"] = "Recupera el missatge"; +App::$strings["Message has been recalled."] = "El missatge s'ha recuperat."; +App::$strings["Delete Conversation"] = "Conversació esborrada"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicació segura no disponible. Pots respondre des de la pàgina de perfil del remitent."; +App::$strings["Send Reply"] = "Envia Resposta"; +App::$strings["Your message for %s (%s):"] = "El teu missatge per %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Has creat %1$.0f de %2$.0f canals permesos."; +App::$strings["Create a new channel"] = "Crear un nou canal"; +App::$strings["Channel Manager"] = "Gestor de Canals"; +App::$strings["Current Channel"] = "Canal Actual"; +App::$strings["Switch to one of your channels by selecting it."] = "Canviar a un altre dels teus canals seleccionant-ho."; +App::$strings["Default Channel"] = "Canal per Defecte"; +App::$strings["Make Default"] = "Estableix com a Predeterminat"; +App::$strings["%d new messages"] = "%d missatges nous"; +App::$strings["%d new introductions"] = "%d noves presentacions"; +App::$strings["Delegated Channel"] = "Canal Delegat"; +App::$strings["No valid account found."] = "No es troba un compte vàlid."; +App::$strings["Password reset request issued. Check your email."] = "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic."; +App::$strings["Site Member (%s)"] = "Lloc d'Usuari (%s)"; +App::$strings["Password reset requested at %s"] = "S'ha soŀlicitat restablir la contrasenya al hub %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans."; +App::$strings["Password Reset"] = "Restabliment de contrasenya"; +App::$strings["Your password has been reset as requested."] = "S'ha restablert la vostra contrasenya."; +App::$strings["Your new password is"] = "La nova contrasenya és"; +App::$strings["Save or copy your new password - and then"] = "Desa o copia la nova contrasenya, i després"; +App::$strings["click here to login"] = "fes clic aquí per iniciar sessió"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Pots canviar la contrasenya a la pàgina Paràmetres, un cop iniciada la sessió."; +App::$strings["Your password has changed at %s"] = "La teva contrasenya a %s ha canviat"; +App::$strings["Forgot your Password?"] = "No recordes la contrasenya?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions."; +App::$strings["Email Address"] = "Adreça electrònica"; +App::$strings["Reset"] = "Reajustar"; +App::$strings["Unable to update menu."] = "No s'ha pogut actualitzar el menú."; +App::$strings["Unable to create menu."] = "No s'ha pogut crear el menú."; +App::$strings["Menu Name"] = "Nom del menú"; +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"; +App::$strings["Search Results For:"] = "Cerca resultats per:"; +App::$strings["Privacy group is empty"] = "el grup privat està vuit"; +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["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ú."; +App::$strings["Menu Item Permissions"] = "Permisos de l'Article del Menú"; +App::$strings["(click to open/close)"] = "(clica per obrir/tancar)"; +App::$strings["Link Name"] = "Nom de l'Enllaç"; +App::$strings["Link or Submenu Target"] = "Enllaç o Submenú Objectiu"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Entra la URL de l'enlla´o tria un nom de menú per crear un submenú"; +App::$strings["Use magic-auth if available"] = "Empra magic-auth si esta disponible"; +App::$strings["Open link in new window"] = "Obrir l'enllaç en una nova finestra"; +App::$strings["Order in list"] = "Ordre per llista"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Els números més alts aniràn al fons de la llista"; +App::$strings["Submit and finish"] = "Envia i termina"; +App::$strings["Submit and continue"] = "Envia i continua"; +App::$strings["Menu:"] = "Menú:"; +App::$strings["Link Target"] = "Enllaç Objectiu"; +App::$strings["Edit menu"] = "Edita menú"; +App::$strings["Edit element"] = "Edita element"; +App::$strings["Drop element"] = "Deixa anar element"; +App::$strings["New element"] = "Nou element"; +App::$strings["Edit this menu container"] = "Edita aquest contenidor de menú"; +App::$strings["Add menu element"] = "Afegeix element de menú"; +App::$strings["Delete this menu item"] = "Esborra aquest article del menú"; +App::$strings["Edit this menu item"] = "Edita aquest article del menú"; +App::$strings["Menu item not found."] = "Article del menú no trobat."; +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"; @@ -611,164 +673,122 @@ App::$strings["__ctx:noun__ Dislikes"] = "Desagrada"; App::$strings["Close"] = "Tanca"; App::$strings["View Album"] = "Mostra'n l'àlbum"; App::$strings["Recent Photos"] = "Imatges recents"; -App::$strings["Remote privacy information not available."] = "informació privada remota no disponible."; -App::$strings["Visible to:"] = "Visible per:"; -App::$strings["Import completed"] = "S'ha completat la importació"; -App::$strings["Import Items"] = "Importa Articles"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Empra aquest formulari per importar entrades existents i contingut d'un arxiu d'exportació."; -App::$strings["Total invitation limit exceeded."] = "El límit total invitacions s'ha superat."; -App::$strings["%s : Not a valid email address."] = "%s: adreça de correu electrònic no vàlida."; -App::$strings["Please join us on \$Projectname"] = "Si us plau uneix-te a nosaltres a \$Projectname."; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Límit d'invitacions excedit. Si us plau, poseu-vos en contacte amb l'administrador del lloc."; -App::$strings["%s : Message delivery failed."] = "%s : Entrega del Missatge fallida."; -App::$strings["%d message sent."] = array( - 0 => "%d missatge enviat.", - 1 => "%d missatges enviats.", -); -App::$strings["You have no more invitations available"] = "No té més invitacions disponibles"; -App::$strings["Send invitations"] = "Enviar invitacions"; -App::$strings["Enter email addresses, one per line:"] = "Introduïu les adreces de correu electrònic, una per línia:"; -App::$strings["Your message:"] = "El teu missatge:"; -App::$strings["Please join my community on \$Projectname."] = "Si us plau uneix-te la meva comunitat en \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Hauràs de facilitar aquest codi d'invitació:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Pots registrar-te a qualsevol node de \$Projectname (estàn tots interconnectats)"; -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["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["Primary"] = "Primari"; -App::$strings["Drop"] = "Menysprea"; -App::$strings["Sync Now"] = "Sincronitza Ara"; -App::$strings["Please wait several minutes between consecutive operations."] = "Si us plau espera diversos minuts entre operacions consecutives."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quan sigui possible, per desapareixer d'un lloc, accedeix a aquest lloc web/node i elimina el teu canal."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Empra aquest formulari per desapareixer del lloc si el node ja no està operatiu."; -App::$strings["Hub not found."] = "Node no trobat."; -App::$strings["Unable to lookup recipient."] = "Incapaç de trobar el destinatari."; -App::$strings["Unable to communicate with requested channel."] = "Incapaç de comunicar amb el canal demanat."; -App::$strings["Cannot verify requested channel."] = "No puc verificar el canal demanat."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionat te restriccions sobre els missatges privats. L'enviament ha fallat."; -App::$strings["Messages"] = "Missatges"; -App::$strings["Message recalled."] = "Recupera el missatge."; -App::$strings["Conversation removed."] = "Conversació eliminada."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expira YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "El canal demanat no hi es en questa xarxa"; -App::$strings["Send Private Message"] = "Envia Missatge Privat"; -App::$strings["To:"] = "Per:"; -App::$strings["Subject:"] = "Assumpte:"; -App::$strings["Attach file"] = "Adjunta arxiu"; -App::$strings["Send"] = "Envia"; -App::$strings["Set expiration date"] = "Ajusta la data d'expiració"; -App::$strings["Delete message"] = "Elimina el missatge"; -App::$strings["Delivery report"] = "Informe d'entrega"; -App::$strings["Recall message"] = "Recupera el missatge"; -App::$strings["Message has been recalled."] = "El missatge s'ha recuperat."; -App::$strings["Delete Conversation"] = "Conversació esborrada"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicació segura no disponible. Pots respondre des de la pàgina de perfil del remitent."; -App::$strings["Send Reply"] = "Envia Resposta"; -App::$strings["Your message for %s (%s):"] = "El teu missatge per %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Has creat %1$.0f de %2$.0f canals permesos."; -App::$strings["Create a new channel"] = "Crear un nou canal"; -App::$strings["Channel Manager"] = "Gestor de Canals"; -App::$strings["Current Channel"] = "Canal Actual"; -App::$strings["Switch to one of your channels by selecting it."] = "Canviar a un altre dels teus canals seleccionant-ho."; -App::$strings["Default Channel"] = "Canal per Defecte"; -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)"; -App::$strings["Password reset requested at %s"] = "S'ha soŀlicitat restablir la contrasenya al hub %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Ha fallat el restabliment de contrasenya perquè la no s'ha pogut verificar soŀlicitud. Pot ser que ja ho hàgiu soŀlicitat abans."; -App::$strings["Password Reset"] = "Restabliment de contrasenya"; -App::$strings["Your password has been reset as requested."] = "S'ha restablert la vostra contrasenya."; -App::$strings["Your new password is"] = "La nova contrasenya és"; -App::$strings["Save or copy your new password - and then"] = "Desa o copia la nova contrasenya, i després"; -App::$strings["click here to login"] = "fes clic aquí per iniciar sessió"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Pots canviar la contrasenya a la pàgina Paràmetres, un cop iniciada la sessió."; -App::$strings["Your password has changed at %s"] = "La teva contrasenya a %s ha canviat"; -App::$strings["Forgot your Password?"] = "No recordes la contrasenya?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Escriu la teva adreça de correu electrònic i envia per restablir la contrasenya. Després revisa el seu correu electrònic per obtenir més instruccions."; -App::$strings["Email Address"] = "Adreça electrònica"; -App::$strings["Reset"] = "Reajustar"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s es %2\$s"; -App::$strings["Mood"] = "Ànim"; -App::$strings["Set your current mood and tell your friends"] = "Estableix el teu estat d'ànim actual i digues-li als teus amics"; -App::$strings["No such group"] = "No existeix el grup"; -App::$strings["No such channel"] = "No existeix el canal"; -App::$strings["forum"] = "fòrum"; -App::$strings["Search Results For:"] = "Cerca resultats per:"; -App::$strings["Privacy group is empty"] = "el grup privat està vuit"; -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ú."; -App::$strings["Menu Item Permissions"] = "Permisos de l'Article del Menú"; -App::$strings["(click to open/close)"] = "(clica per obrir/tancar)"; -App::$strings["Link Name"] = "Nom de l'Enllaç"; -App::$strings["Link or Submenu Target"] = "Enllaç o Submenú Objectiu"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Entra la URL de l'enlla´o tria un nom de menú per crear un submenú"; -App::$strings["Use magic-auth if available"] = "Empra magic-auth si esta disponible"; -App::$strings["Open link in new window"] = "Obrir l'enllaç en una nova finestra"; -App::$strings["Order in list"] = "Ordre per llista"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Els números més alts aniràn al fons de la llista"; -App::$strings["Submit and finish"] = "Envia i termina"; -App::$strings["Submit and continue"] = "Envia i continua"; -App::$strings["Menu:"] = "Menú:"; -App::$strings["Link Target"] = "Enllaç Objectiu"; -App::$strings["Edit menu"] = "Edita menú"; -App::$strings["Edit element"] = "Edita element"; -App::$strings["Drop element"] = "Deixa anar element"; -App::$strings["New element"] = "Nou element"; -App::$strings["Edit this menu container"] = "Edita aquest contenidor de menú"; -App::$strings["Add menu element"] = "Afegeix element de menú"; -App::$strings["Delete this menu item"] = "Esborra aquest article del menú"; -App::$strings["Edit this menu item"] = "Edita aquest article del menú"; -App::$strings["Menu item not found."] = "Article del menú no trobat."; -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["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,20 +263,243 @@ 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/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Block-Name" + +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Blöcke" + +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Titel des Blocks" + +#: ../../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/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/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/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/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/Cal.php:69 +msgid "Permissions denied." +msgstr "Berechtigung verweigert." + +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l, j. F" + +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Link zur Quelle" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Termin bearbeiten" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Termin anlegen" + +#: ../../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/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/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Exportieren" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Import" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 +#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 +#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 +#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:842 +#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 +#: ../../include/widgets.php:769 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Bestätigen" + +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Heute" + +#: ../../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/Channel.php:41 +msgid "Posts and comments" +msgstr "Beiträge und Kommentare" + +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "Nur Beiträge" + +#: ../../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/Chat.php:181 +msgid "Room not found" +msgstr "Chatraum nicht gefunden" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Raum verlassen" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Raum löschen" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Ich bin gerade nicht da" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Ich bin online" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Lesezeichen für diesen Raum setzen" + +#: ../../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/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/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/Chat.php:218 +msgid "Feature disabled." +msgstr "Funktion deaktiviert." + +#: ../../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" @@ -429,6 +508,65 @@ msgstr "Abwesend" 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." @@ -437,350 +575,317 @@ msgstr "Konnte nicht auf den Kontakteintrag zugreifen." msgid "Could not locate selected profile." msgstr "Gewähltes Profil nicht gefunden." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "Verbindung aktualisiert." -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../Zotlabs/Module/Connedit.php:229 msgid "Failed to update connection record." msgstr "Konnte den Verbindungseintrag nicht aktualisieren." -#: ../../Zotlabs/Module/Connedit.php:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "ist jetzt verbunden mit" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "No" msgstr "Nein" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "Yes" msgstr "Ja" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../Zotlabs/Module/Connedit.php:411 msgid "Could not access address book record." msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." -#: ../../Zotlabs/Module/Connedit.php:455 +#: ../../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:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 msgid "Unable to set address book parameters." msgstr "Konnte die Adressbuch-Parameter nicht setzen." -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "Verbindung wurde gelöscht." -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 msgid "View Profile" msgstr "Profil ansehen" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:522 #, php-format msgid "View %s's profile" msgstr "%ss Profil ansehen" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:526 msgid "Refresh Permissions" msgstr "Zugriffsrechte neu laden" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:529 msgid "Fetch updated permissions" msgstr "Aktualisierte Zugriffsrechte abfragen" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Recent Activity" msgstr "Kürzliche Aktivitäten" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:536 msgid "View recent posts and comments" msgstr "Betrachte die neuesten Beiträge und Kommentare" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Freigeben" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Blockieren" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../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:574 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "This connection is blocked!" msgstr "Die Verbindung ist geblockt!" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 msgid "Unignore" msgstr "Nicht ignorieren" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignorieren" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../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:582 +#: ../../Zotlabs/Module/Connedit.php:552 msgid "This connection is ignored!" msgstr "Die Verbindung wird ignoriert!" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Unarchive" msgstr "Aus Archiv zurückholen" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Archive" msgstr "Archivieren" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../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:590 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "This connection is archived!" msgstr "Die Verbindung ist archiviert!" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Unhide" msgstr "Wieder sichtbar machen" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Hide" msgstr "Verstecken" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../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,121 +901,17 @@ 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/Id.php:13 -msgid "First Name" -msgstr "Vorname" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Nachname" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Spitzname" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Voller Name" - -#: ../../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" @@ -930,12 +931,12 @@ msgstr "Status:" msgid "Homepage: " msgstr "Webseite:" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 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,322 +1032,38 @@ 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/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/Events.php:25 -msgid "Calendar entries imported." -msgstr "Kalendereinträge wurden importiert." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Keine Kalendereinträge gefunden." - -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Termin-Ende liegt vor dem Beginn." - -#: ../../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/Events.php:113 -msgid "Event title and start time are required." -msgstr "Titel und Startzeit des Termins sind erforderlich." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Termin nicht gefunden." - -#: ../../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/Events.php:448 -msgid "Edit event title" -msgstr "Termintitel bearbeiten" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Termintitel" - -#: ../../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/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (Kommagetrennte Liste)" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Kategorie bearbeiten" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Kategorie" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Startdatum und -zeit bearbeiten" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Startdatum und -zeit" - -#: ../../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 +#: ../../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/Editpost.php:35 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Titel (optional)" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Bearbeite Beitrag" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Block bearbeiten" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Fotos" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Kein Kanal." -#: ../../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/Common.php:43 +msgid "Common connections" +msgstr "Gemeinsame Verbindungen" -#: ../../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/Common.php:48 +msgid "No connections in common." +msgstr "Keine gemeinsamen Verbindungen." #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1374,7 +1091,7 @@ msgstr "Archiviert" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 +#: ../../include/conversation.php:1535 msgid "New" msgstr "Neu" @@ -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,69 +1277,200 @@ 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/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/Events.php:449 +msgid "Edit event title" +msgstr "Termintitel bearbeiten" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Termintitel" + +#: ../../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/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (Kommagetrennte Liste)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Kategorie bearbeiten" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Kategorie" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Startdatum und -zeit bearbeiten" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Startdatum und -zeit" + +#: ../../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/Events.php:458 +msgid "Edit finish date and time" +msgstr "Enddatum und -zeit bearbeiten" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Enddatum und -zeit" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "An die Zeitzone des Betrachters anpassen" + +#: ../../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/Events.php:462 +msgid "Edit Description" +msgstr "Beschreibung bearbeiten" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Beschreibung" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Ort bearbeiten" + +#: ../../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/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Den Termin teilen" + +#: ../../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/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Berechtigungs-Einstellungen" + +#: ../../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" @@ -1632,184 +1480,112 @@ msgstr "Diese Webseite ist kein Verzeichnisserver" msgid "This directory server requires an access token" msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" -#: ../../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/Filer.php:52 +msgid "Save to Folder:" +msgstr "Speichern in Ordner:" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chatraum nicht gefunden" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "– auswählen –" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Raum verlassen" +#: ../../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/Chat.php:198 -msgid "Delete Room" -msgstr "Raum löschen" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Ich bin gerade nicht da" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Ich bin online" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Lesezeichen für diesen Raum setzen" - -#: ../../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/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/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/Chat.php:218 -msgid "Feature disabled." -msgstr "Funktion deaktiviert." - -#: ../../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: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/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/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -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/Dreport.php:44 +#: ../../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 -msgid "channel sync processed" -msgstr "Kanal-Sync verarbeitet" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "zur Warteschlange hinzugefügt" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "zugestellt" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "für Zustellung akzeptiert" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "aktualisiert" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "Aktualisierung ignoriert" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "Zugriff verweigert" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "Empfänger nicht gefunden." - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "Mail widerrufen" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "Doppelte Mail erhalten" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "Mail zugestellt" - -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:64 #, 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:78 +msgid "channel sync processed" +msgstr "Kanal-Sync verarbeitet" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Erneut zustellen" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "zur Warteschlange hinzugefügt" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "zugestellt" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "für Zustellung akzeptiert" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "aktualisiert" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "Aktualisierung ignoriert" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "Zugriff verweigert" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "Empfänger nicht gefunden." + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "Mail widerrufen" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "Doppelte Mail erhalten" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "Mail zugestellt" + +#: ../../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,57 +1639,31 @@ 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/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Inhalte von Firefox nach $Projectname teilen" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Fehlerhafte App." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Aktiviert den $Projectname-Provider für firefox" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Code einbetten" +#: ../../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 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "App bearbeiten" +#: ../../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:110 -msgid "Create App" -msgstr "App erstellen" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Zum Weitermachen, bitte einloggen." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Name der App" - -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" - -#: ../../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/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/Help.php:26 msgid "Documentation Search" @@ -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,124 +1684,335 @@ msgstr "Hilfe" msgid "$Projectname Documentation" msgstr "$Projectname-Dokumentation" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "Zugriff verweigert." + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "Datei nicht gefunden." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "Dateiberechtigungen bearbeiten" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "Berechtigungen setzen/ändern" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "Alle Dateien und Unterverzeichnisse einbinden" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "Zurück zur Dateiliste" + +#: ../../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: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:163 +msgid "Share this file" +msgstr "Diese Datei freigeben" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "URL zu dieser Datei anzeigen" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "Meine Kontakte über diese Datei benachrichtigen" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Apps" + #: ../../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/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Dein Vertrag erlaubt nur %d Kanäle." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Systemseitenbeschreibung bearbeiten" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Nichts zu importieren." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layout nicht gefunden." +#: ../../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/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulname:" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Die importierte Datei ist leer." -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Layout-Hilfe" +#: ../../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/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Inhalte von Firefox nach $Projectname teilen" +#: ../../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/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Aktiviert den $Projectname-Provider für firefox" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Kein Kanal. Import fehlgeschlagen." -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "Netzwerk" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import abgeschlossen." -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../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/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Zugriff verweigert." +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Kanal importieren" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "Datei nicht gefunden." +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "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/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Dateiberechtigungen bearbeiten" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Hochzuladende Datei:" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" -msgstr "Berechtigungen setzen/ändern" +#: ../../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/Filestorage.php:156 -msgid "Include all files and sub folders" -msgstr "Alle Dateien und Unterverzeichnisse einbinden" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Bisherige Kanal-Adresse (xyz@example.com)" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Return to file list" -msgstr "Zurück zur Dateiliste" +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Deine alte Login-E-Mail-Adresse" -#: ../../Zotlabs/Module/Filestorage.php:159 -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/Import.php:543 +msgid "Your old login password" +msgstr "Dein altes Passwort" -#: ../../Zotlabs/Module/Filestorage.php:160 -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/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/Filestorage.php:162 -msgid "Share this file" -msgstr "Diese Datei freigeben" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Dieser $Pojectname-Hub ist mein primärer Hub." -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" -msgstr "URL zu dieser Datei anzeigen" +#: ../../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/Filestorage.php:164 -msgid "Notify your contacts about this file" -msgstr "Meine Kontakte über diese Datei benachrichtigen" +#: ../../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/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." + +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." + +#: ../../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/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/Item.php:1248 +#, 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/Item.php:1255 +#, 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/Layouts.php:181 ../../include/text.php:2267 msgid "Layouts" msgstr "Layouts" -#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Layouts.php:183 msgid "Comanche page description language help" msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" -#: ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Layouts.php:187 msgid "Layout Description" msgstr "Layout-Beschreibung" -#: ../../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/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/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/Layouts.php:194 +#: ../../Zotlabs/Module/Layouts.php:192 msgid "Download PDL file" msgstr "PDL-Datei herunterladen" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen auf %s" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Vorname" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Nachname" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Spitzname" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Voller Name" + +#: ../../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/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/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:234 +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/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "Webseite" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "Block" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "Layout" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "Menü" + +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "Element für %s installiert" + +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Installation des Elements %s fehlgeschlagen" + #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Mögen/Nicht mögen" @@ -2087,65 +2048,1180 @@ msgstr "Kanal nicht vorhanden." msgid "Previous action reversed." msgstr "Die vorherige Aktion wurde rückgängig gemacht." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 +#: ../../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/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "Status" -#: ../../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 "%1$s gefällt %2$ss %3$s" -#: ../../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 "%1$s gefällt %2$ss %3$s nicht" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../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/Like.php:425 +#: ../../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/Like.php:427 +#: ../../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/Like.php:429 +#: ../../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/Like.php:431 +#: ../../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/Like.php:433 +#: ../../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/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "Aktion durchgeführt." -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "Vielen Dank." +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Import abgeschlossen" + +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Beiträge importieren" + +#: ../../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/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Einladungslimit überschritten." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Keine gültige Email Adresse." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Schließe Dich uns auf $Projectname an!" + +#: ../../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/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Nachricht konnte nicht zugestellt werden." + +#: ../../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/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren verfügbare Einladungen" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Einladungen senden" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Email-Adressen eintragen, eine pro Zeile:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Schließe Dich uns auf $Projectname an!" + +#: ../../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/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/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/Invite.php:142 +msgid "or visit" +msgstr "oder besuche" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klicke auf [Verbinden]" + +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Sichtbar für:" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Klon nicht gefunden." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" + +#: ../../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/Locs.php:95 +msgid "Syncing locations" +msgstr "Synchronisiere Klone" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Keine Klon-Adressen gefunden." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Klon-Adressen verwalten" + +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adresse" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primär" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Löschen" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Jetzt synchronisieren" + +#: ../../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/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/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/Magic.php:71 +msgid "Hub not found." +msgstr "Server nicht gefunden." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Konnte den Empfänger nicht finden." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." + +#: ../../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/Mail.php:143 +msgid "Messages" +msgstr "Nachrichten" + +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Nachricht widerrufen." + +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: ../../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/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "Angeforderter Kanal ist nicht in diesem Netzwerk." + +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "An:" + +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Betreff:" + +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Datei anhängen" + +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Absenden" + +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Verfallsdatum" + +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Zustellungsbericht" + +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Nachricht widerrufen" + +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "Die Nachricht wurde widerrufen." + +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Unterhaltung löschen" + +#: ../../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/Mail.php:367 +msgid "Send Reply" +msgstr "Antwort senden" + +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Deine Nachricht für %s (%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 hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Neuen Kanal anlegen" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Kanal-Manager" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Aktueller Kanal" + +#: ../../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/Manage.php:168 +msgid "Default Channel" +msgstr "Standard Kanal" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Zum Standard machen" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d neue Nachrichten" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d neue Vorstellungen" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Delegierte Kanäle" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." + +#: ../../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/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Nutzer (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Passwort-Rücksetzung auf %s angefordert" + +#: ../../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/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Zurücksetzen des Kennworts" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie angefordert neu erstellt." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: ../../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/Lostpass.php:94 +msgid "click here to login" +msgstr "Klicke hier, um dich anzumelden" + +#: ../../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/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Kennwort vergessen?" + +#: ../../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/Lostpass.php:129 +msgid "Email Address" +msgstr "E-Mail Adresse" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Zurücksetzen" + +#: ../../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/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Name des Menüs" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menütitel" + +#: ../../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/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Lesezeichen erlauben" + +#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Absenden und fortfahren" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menüs" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Lesezeichen erlaubt" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menü konnte nicht gelöscht werden." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menü nicht gefunden" + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menü bearbeiten" + +#: ../../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/Menu.php:155 +msgid "Menu name" +msgstr "Menü Name" + +#: ../../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/Menu.php:156 +msgid "Menu title" +msgstr "Menü Titel" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Menü Titel wie er von anderen gesehen wird" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Nicht gefunden." + +#: ../../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/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Laune" + +#: ../../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/Match.php:26 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" + +#: ../../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/Match.php:67 +msgid "is interested in:" +msgstr "interessiert sich für:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Keine Übereinstimmungen" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Gruppe nicht gefunden" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Kanal nicht gefunden" + +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "Forum" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Gruppe ist leer" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Gruppe:" + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Keine System-Benachrichtigungen mehr." + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "System-Benachrichtigungen" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Element konnte nicht erstellt werden." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Kann Menü-Element nicht aktualisieren." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Kann Menü-Bestandteil nicht hinzufügen." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" + +#: ../../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/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Name des Links" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Ziel des Links oder Untermenüs" + +#: ../../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/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Magic-Auth verwenden, falls verfügbar" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" + +#: ../../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/Mitem.php:161 +msgid "Submit and finish" +msgstr "Absenden und fertigstellen" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Absenden und fortfahren" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menü:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Ziel des Links" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Menü bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Bestandteil löschen" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Neues Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Link Text" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Name oder Titel" + +#: ../../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/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Wähle einen kurzen Spitznamen" + +#: ../../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 "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" + +#: ../../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/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Mehr Informationen über Rollen" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Einen neuen Kanal anlegen" + +#: ../../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/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/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ungültiger Anfrage-Identifikator." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Verwerfen" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Markiere alle System-Benachrichtigungen als gesehen" + +#: ../../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/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/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Album löschen" + +#: ../../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/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." + +#: ../../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/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Fotos hochladen" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Namen für ein neues Album eingeben" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Einen Statusbeitrag für diesen Upload erzeugen" + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Beschriftung (optional):" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Beschreibung (optional):" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Neueste zuerst anzeigen" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Älteste zuerst anzeigen" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Foto ansehen" + +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: ../../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/Photos.php:872 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Als Titelbild verwenden" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Privates Foto" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Entfernen" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Gib einen Namen für ein neues Album ein" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Bildunterschrift" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "In der Albumansicht als nicht jugendfrei markieren" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Mir gefällt das (Umschalter)" + +#: ../../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/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Bitte warten" + +#: ../../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/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Kommentar" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Gefällt mir" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "Gefällt mir nicht" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "Zustimmungen" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Ablehnungen" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Enthaltungen" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Zusagen" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Absagen" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Vielleicht" + +#: ../../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/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/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/Photos.php:1235 +msgid "Photo Tools" +msgstr "Fotowerkzeuge" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Karte" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Gefällt mir" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Gefällt nicht" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Schließen" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Album ansehen" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "hat Dir eine private Nachricht geschickt" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "l, d. F, G:i \\U\\h\\r" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[Heute]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "hat einen Termin veröffentlicht" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Konnte Deinen Server nicht finden." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Veröffentlichung erfolgreich." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Login fehlgeschlagen." + +#: ../../Zotlabs/Module/Page.php:133 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Konfigurationseditor" + +#: ../../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/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/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Anstupsen" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Jemanden anstupsen" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Jemanden anstupsen, knuffen oder sonstiges" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Empfänger" + +#: ../../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/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: ../../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/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -2215,11 +3291,6 @@ msgstr "Webseite" msgid "Interests" msgstr "Hobbys/Interessen" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" - #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Profil aktualisiert." @@ -2237,7 +3308,7 @@ msgid "View this profile" msgstr "Dieses Profil ansehen" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 +#: ../../include/channel.php:959 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" @@ -2249,7 +3320,7 @@ msgstr "Profilwerkzeuge" msgid "Change cover photo" msgstr "Titelbild ändern" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 msgid "Change profile photo" msgstr "Profilfoto ändern" @@ -2269,8 +3340,8 @@ msgstr "Dieses Profil löschen" msgid "Add profile things" msgstr "Sachen zum Profil hinzufügen" -#: ../../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:1526 msgid "Personal" msgstr "Persönlich" @@ -2410,1097 +3481,119 @@ msgstr "Kontaktinformation und soziale Netzwerke" msgid "My other channels" msgstr "Meine anderen Kanäle" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 msgid "Profile Image" msgstr "Profilfoto:" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 +#: ../../include/channel.php:937 msgid "Edit Profiles" msgstr "Profile bearbeiten" -#: ../../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/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Nichts zu importieren." - -#: ../../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/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Die importierte Datei ist leer." - -#: ../../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/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Kein Kanal. Import fehlgeschlagen." - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import abgeschlossen." - -#: ../../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/Import.php:547 -msgid "Import Channel" -msgstr "Kanal importieren" - -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Profile_photo.php:179 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." +"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/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Hochzuladende Datei:" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Lade neues Profilfoto hoch" -#: ../../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/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Identifikator" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Bisherige Kanal-Adresse (xyz@example.com)" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Profil-Sichtbarkeits-Editor" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Deine alte Login-E-Mail-Adresse" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profil" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Dein altes Passwort" +#: ../../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/Import.php:554 +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Sichtbar für" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Öffentliche Hubs" + +#: ../../Zotlabs/Module/Pubsites.php:25 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." +"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/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Dieser $Pojectname-Hub ist mein primärer Hub." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Hub-URL" -#: ../../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/Pubsites.php:31 +msgid "Access Type" +msgstr "Zugriffstyp" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Registrierungsrichtlinien" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Statistiken" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Bewertungen" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Bewerten" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Webseite:" + +#: ../../Zotlabs/Module/Rate.php:163 #, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Bewertung (öffentlich sichtbar)" -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." +#: ../../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/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/Ratings.php:73 +msgid "No ratings" +msgstr "Keine Bewertungen" -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Doppelter Beitrag unterdrückt." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Bewertung: " -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Webseite: " -#: ../../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/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/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/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." - -#: ../../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/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Album löschen" - -#: ../../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/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" - -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." - -#: ../../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/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." - -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Fotos hochladen" - -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Namen für ein neues Album eingeben" - -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Einen Statusbeitrag für diesen Upload erzeugen" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Beschriftung (optional):" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Beschreibung (optional):" - -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" - -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" - -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Neueste zuerst anzeigen" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Älteste zuerst anzeigen" - -#: ../../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/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../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/Photos.php:870 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Als Titelbild verwenden" - -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Privates Foto" - -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" - -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Entfernen" - -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Gib einen Namen für ein neues Album ein" - -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Bildunterschrift" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" - -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "In der Albumansicht als nicht jugendfrei markieren" - -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Mir gefällt das (Umschalter)" - -#: ../../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/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Bitte warten" - -#: ../../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/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Kommentar" - -#: ../../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/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Ablehnungen" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Enthaltungen" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Zusagen" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Absagen" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Vielleicht" - -#: ../../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/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/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/Photos.php:1233 -msgid "Photo Tools" -msgstr "Fotowerkzeuge" - -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" - -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Karte" - -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Gefällt mir" - -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Gefällt nicht" - -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Schließen" - -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Album ansehen" - -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Sichtbar für:" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Import abgeschlossen" - -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Beiträge importieren" - -#: ../../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/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Einladungslimit überschritten." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Keine gültige Email Adresse." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Schließe Dich uns auf $Projectname an!" - -#: ../../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/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." - -#: ../../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/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Einladungen senden" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Schließe Dich uns auf $Projectname an!" - -#: ../../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/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/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/Invite.php:142 -msgid "or visit" -msgstr "oder besuche" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Klon nicht gefunden." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" - -#: ../../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/Locs.php:95 -msgid "Syncing locations" -msgstr "Synchronisiere Klone" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Keine Klon-Adressen gefunden." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Klon-Adressen verwalten" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primär" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Löschen" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Jetzt synchronisieren" - -#: ../../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/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/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/Magic.php:71 -msgid "Hub not found." -msgstr "Server nicht gefunden." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Konnte den Empfänger nicht finden." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." - -#: ../../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/Mail.php:135 -msgid "Messages" -msgstr "Nachrichten" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Nachricht widerrufen." - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: ../../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/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Angeforderter Kanal ist nicht in diesem Netzwerk." - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "An:" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Betreff:" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Datei anhängen" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Absenden" - -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Verfallsdatum" - -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Zustellungsbericht" - -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Nachricht widerrufen" - -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Die Nachricht wurde widerrufen." - -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Unterhaltung löschen" - -#: ../../Zotlabs/Module/Mail.php:355 -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/Mail.php:359 -msgid "Send Reply" -msgstr "Antwort senden" - -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Deine Nachricht für %s (%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 hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "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/Manage.php:165 -msgid "Current Channel" -msgstr "Aktueller Kanal" - -#: ../../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/Manage.php:168 -msgid "Default Channel" -msgstr "Standard Kanal" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Zum Standard machen" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d neue Nachrichten" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d neue Vorstellungen" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Delegierte Kanäle" - -#: ../../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/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Name des Menüs" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menütitel" - -#: ../../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/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Lesezeichen erlauben" - -#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Absenden und fortfahren" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menüs" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Lesezeichen erlaubt" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menü konnte nicht gelöscht werden." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menü nicht gefunden" - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Menü bearbeiten" - -#: ../../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/Menu.php:155 -msgid "Menu name" -msgstr "Menü Name" - -#: ../../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/Menu.php:156 -msgid "Menu title" -msgstr "Menü Titel" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Menü Titel wie er von anderen gesehen wird" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Nicht gefunden." - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: ../../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/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" - -#: ../../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/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: ../../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/Lostpass.php:94 -msgid "click here to login" -msgstr "Klicke hier, um dich anzumelden" - -#: ../../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/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" - -#: ../../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/Lostpass.php:129 -msgid "Email Address" -msgstr "E-Mail Adresse" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Zurücksetzen" - -#: ../../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/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Laune" - -#: ../../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/Network.php:94 -msgid "No such group" -msgstr "Gruppe nicht gefunden" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Kanal nicht gefunden" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "Forum" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "Gruppe ist leer" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Gruppe:" - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Keine System-Benachrichtigungen mehr." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "System-Benachrichtigungen" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" - -#: ../../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/Match.php:67 -msgid "is interested in:" -msgstr "interessiert sich für:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Beiträge und Kommentare" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Nur Beiträge" - -#: ../../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/Mitem.php:52 -msgid "Unable to create element." -msgstr "Element konnte nicht erstellt werden." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" - -#: ../../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/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Name des Links" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Ziel des Links oder Untermenüs" - -#: ../../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/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Magic-Auth verwenden, falls verfügbar" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" - -#: ../../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/Mitem.php:161 -msgid "Submit and finish" -msgstr "Absenden und fertigstellen" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Absenden und fortfahren" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menü:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Ziel des Links" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Menü bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Bestandteil löschen" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Neues Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Link Text" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Beschreibung: " #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3587,11 +3680,11 @@ msgstr "Repository-Version (dev)" msgid "Site settings updated." msgstr "Site-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 msgid "Default" msgstr "Standard" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 msgid "mobile" msgstr "mobil" @@ -3623,7 +3716,7 @@ msgstr "Meine Seite hat nur freien Zugriff" 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:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 msgid "Site" msgstr "Seite" @@ -3911,12 +4004,12 @@ 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 +#: ../../Zotlabs/Module/Settings.php:722 msgid "Off" msgstr "Aus" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "On" msgstr "An" @@ -3973,7 +4066,7 @@ msgid "" "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 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 msgid "Security" msgstr "Sicherheit" @@ -4141,7 +4234,7 @@ msgid "Account '%s' unblocked" msgstr "Konto '%s' freigegeben" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1383 msgid "Accounts" msgstr "Konten" @@ -4247,7 +4340,7 @@ msgstr "Code für Kanal '%s' freigegeben" msgid "Channel '%s' code disallowed" msgstr "Code für Kanal '%s' gesperrt" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 msgid "Channels" msgstr "Kanäle" @@ -4267,7 +4360,7 @@ msgstr "Code erlauben" msgid "Disallow Code" msgstr "Code sperren" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 msgid "Channel" msgstr "Kanal" @@ -4306,7 +4399,7 @@ msgid "Enable" msgstr "Aktivieren" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1387 msgid "Plugins" msgstr "Plug-Ins" @@ -4315,8 +4408,8 @@ msgid "Toggle" msgstr "Umschalten" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Einstellungen" @@ -4372,7 +4465,7 @@ msgstr "Plugin-Repository herunterladen" msgid "Install new repo" msgstr "Neues Repository installieren" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 msgid "Install" msgstr "Installieren" @@ -4388,8 +4481,8 @@ msgstr "Installierte Plugin-Repositorien" msgid "Install a New Plugin Repository" msgstr "Ein neues Plugin-Repository installieren" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 msgid "Update" msgstr "Aktualisieren" @@ -4406,7 +4499,7 @@ msgid "Screenshot" msgstr "Bildschirmfoto" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1388 msgid "Themes" msgstr "Themes" @@ -4422,8 +4515,8 @@ msgstr "[Nicht unterstützt]" msgid "Log settings updated." msgstr "Protokoll-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 msgid "Logs" msgstr "Protokolle" @@ -4489,7 +4582,7 @@ msgstr "Feld-Definition nicht gefunden" msgid "Edit Profile Field" msgstr "Profilfeld bearbeiten" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 msgid "Profile Fields" msgstr "Profil Felder" @@ -4517,384 +4610,57 @@ msgstr "Benutzerdefinierte Felder" msgid "Create Custom Field" msgstr "Erstelle benutzerdefiniertes Feld" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Name oder Titel" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installiert." -#: ../../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/Appman.php:46 +msgid "Malformed app." +msgstr "Fehlerhafte App." -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Wähle einen kurzen Spitznamen" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Code einbetten" -#: ../../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 "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/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "App bearbeiten" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanaltyp und Privatspäre-Einstellungen" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "App erstellen" -#: ../../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/Appman.php:115 +msgid "Name of app" +msgstr "Name der App" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Mehr Informationen über Rollen" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Einen neuen Kanal anlegen" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL zum Icon" -#: ../../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/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" -#: ../../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/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "hat Dir eine private Nachricht geschickt" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versions-ID" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Preis der App" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "l, d. F, G:i \\U\\h\\r" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[Heute]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "hat einen Termin veröffentlicht" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ungültiger Anfrage-Identifikator." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Verwerfen" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Anstupsen" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Jemanden anstupsen" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Jemanden anstupsen, knuffen oder sonstiges" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Empfänger" - -#: ../../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/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Konnte Deinen Server nicht finden." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Veröffentlichung erfolgreich." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Login fehlgeschlagen." - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Sichtbar für" - -#: ../../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/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Konfigurationseditor" - -#: ../../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/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/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Version %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Addons/Apps" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Keine installierten Plugins/Addons/Apps" - -#: ../../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/Siteinfo.php:51 -msgid "Tag: " -msgstr "Schlagwort: " - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Letzter Hintergrundabruf:" - -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Aktuelles Load Average:" - -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Erreichbar unter der Web-Adresse" - -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bitte besuchen Sie hubzilla.org, um mehr über $Projectname zu erfahren." - -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" - -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "$projectname-Bugtracker" - -#: ../../Zotlabs/Module/Siteinfo.php:63 -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/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Administratoren" - -#: ../../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/Rmagic.php:44 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" - -#: ../../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/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authentifizieren" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Öffentliche Hubs" - -#: ../../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 "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" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Zugriffstyp" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Registrierungsrichtlinien" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistiken" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Bewertungen" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Bewerten" - -#: ../../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/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Block-Name" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Blöcke" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titel des Blocks" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Webseite:" - -#: ../../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/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Bewertung (öffentlich sichtbar)" - -#: ../../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/Ratings.php:73 -msgid "No ratings" -msgstr "Keine Bewertungen" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Bewertung: " - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Webseite: " - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Beschreibung: " - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Apps" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Titel (optional)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Block bearbeiten" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Kein Kanal." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Gemeinsame Verbindungen" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4999,154 +4765,120 @@ msgstr "ja" msgid "Membership on this site is by invitation only." msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../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 "Registrieren" -#: ../../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/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Fortfahren und Deinen ersten Kanal anlegen" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Bitte melde dich an." -#: ../../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 "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "Dieses Konto löschen" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "WARNUNG: " -#: ../../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 "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht." -#: ../../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 "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!" -#: ../../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 "Bitte gib zur Bestätigung Dein Passwort ein:" -#: ../../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 "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" -#: ../../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 "Standardmäßig werden nur die Kanalklone auf diesem $Projectname-Hub aus dem Netzwerk entfernt" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Remove Account" msgstr "Konto entfernen" -#: ../../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 "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../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/Removeme.php:63 +#: ../../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/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 "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 msgid "Remove Channel" msgstr "Kanal löschen" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Kanal exportieren" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Rmagic.php:44 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." +"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/Uexport.php:58 -msgid "Export Content" -msgstr "Kanal und Inhalte exportieren" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Die Fehlermeldung war:" -#: ../../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/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exportiert die Beiträge des angegebenen Jahres." +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" -#: ../../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/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" -#: ../../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/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/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/Rmagic.php:90 +msgid "Authenticate" +msgstr "Authentifizieren" #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -5162,652 +4894,609 @@ msgstr "Suchergebnisse für: %s" msgid "No service class restrictions found." msgstr "Keine Dienstklassenbeschränkungen gefunden." -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:69 msgid "Name is required" msgstr "Name ist erforderlich" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:73 msgid "Key and Secret are required" msgstr "Schlüssel und Geheimnis werden benötigt" -#: ../../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/Settings.php:144 -msgid "Name and Password are required." -msgstr "Name und Passwort sind erforderlich." - -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "Token gespeichert." - -#: ../../Zotlabs/Module/Settings.php:274 +#: ../../Zotlabs/Module/Settings.php:225 msgid "Not valid email." msgstr "Keine gültige E-Mail Adresse." -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../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:286 +#: ../../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:303 +#: ../../Zotlabs/Module/Settings.php:254 msgid "Password verification failed." msgstr "Passwortüberprüfung fehlgeschlagen." -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../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:314 +#: ../../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:328 +#: ../../Zotlabs/Module/Settings.php:279 msgid "Password changed." msgstr "Kennwort geändert." -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../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:579 +#: ../../Zotlabs/Module/Settings.php:525 msgid "Settings updated." msgstr "Einstellungen aktualisiert." -#: ../../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 "Anwendung hinzufügen" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:592 msgid "Name of application" msgstr "Name der Anwendung" -#: ../../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 "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 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 "Umleitung" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../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:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 msgid "Icon url" msgstr "Symbol-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 "Optional" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:607 msgid "Application not found." msgstr "Die Anwendung wurde nicht gefunden." -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:650 msgid "Connected Apps" msgstr "Verbundene Apps" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:654 msgid "Client key starts with" msgstr "Client Key beginnt mit" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:655 msgid "No name" msgstr "Kein Name" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:656 msgid "Remove authorization" msgstr "Authorisierung aufheben" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Settings.php:669 msgid "No feature settings configured" msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../Zotlabs/Module/Settings.php:730 +#: ../../Zotlabs/Module/Settings.php:676 msgid "Feature/Addon Settings" msgstr "Funktions-/Addon-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:699 msgid "Account Settings" msgstr "Konto-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:700 msgid "Current Password" msgstr "Aktuelles Passwort" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:701 msgid "Enter New Password" msgstr "Gib ein neues Passwort ein" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Confirm New Password" msgstr "Bestätige das neue Passwort" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../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:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 msgid "Email Address:" msgstr "Email Adresse:" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../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: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/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/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Gastzugangstoken" - -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "Anmeldename" - -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "Anmeldepasswort" - -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "Läuft ab (jjjj-mm-tt)" - -#: ../../Zotlabs/Module/Settings.php:830 +#: ../../Zotlabs/Module/Settings.php:729 msgid "Additional Features" msgstr "Zusätzliche Funktionen" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Connector Settings" msgstr "Connector-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../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:896 +#: ../../Zotlabs/Module/Settings.php:795 #, php-format msgid "%s - (Experimental)" msgstr "%s – (experimentell)" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:837 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:838 msgid "Theme Settings" msgstr "Theme-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:839 msgid "Custom Theme Settings" msgstr "Benutzerdefinierte Theme-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:840 msgid "Content Settings" msgstr "Inhaltseinstellungen" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:846 msgid "Display Theme:" msgstr "Anzeige-Theme:" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:847 msgid "Mobile Theme:" msgstr "Mobile Theme:" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../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:949 +#: ../../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:950 +#: ../../Zotlabs/Module/Settings.php:849 msgid "Enable user zoom on mobile devices" msgstr "Zoom auf Mobilgeräten aktivieren" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 Sekunden, kein Maximum" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../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:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum of 100 items" msgstr "Maximum: 100 Beiträge" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:852 msgid "Show emoticons (smilies) as images" msgstr "Emoticons (Smilies) als Bilder anzeigen" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../Zotlabs/Module/Settings.php:853 msgid "Link post titles to source" msgstr "Beitragstitel zum Originalbeitrag verlinken" -#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:854 msgid "System Page Layout Editor - (advanced)" msgstr "System-Seitenlayout-Editor (für Experten)" -#: ../../Zotlabs/Module/Settings.php:958 +#: ../../Zotlabs/Module/Settings.php:857 msgid "Use blog/list mode on channel page" msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" -#: ../../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 "(Kommentare werden separat angezeigt)" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:858 msgid "Use blog/list mode on grid page" msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden" -#: ../../Zotlabs/Module/Settings.php:960 +#: ../../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/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 "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../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/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:894 msgid "Nobody except yourself" msgstr "Niemand außer Dir selbst" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:895 msgid "Only those you specifically allow" msgstr "Nur die, denen Du es explizit erlaubst" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:896 msgid "Approved connections" msgstr "Angenommene Verbindungen" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:897 msgid "Any connections" msgstr "Beliebige Verbindungen" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:898 msgid "Anybody on this website" msgstr "Jeder auf dieser Website" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:899 msgid "Anybody in this network" msgstr "Alle $Projectname-Mitglieder" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:900 msgid "Anybody authenticated" msgstr "Jeder authentifizierte" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:901 msgid "Anybody on the internet" msgstr "Jeder im Internet" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../Zotlabs/Module/Settings.php:976 msgid "Publish your default profile in the network directory" msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" -#: ../../Zotlabs/Module/Settings.php:1076 +#: ../../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/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Your channel address is" msgstr "Deine Kanal-Adresse lautet" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1032 msgid "Channel Settings" msgstr "Kanal-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1039 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 msgid "Full Name:" msgstr "Voller Name:" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1042 msgid "Your Timezone:" msgstr "Ihre Zeitzone:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Default Post Location:" msgstr "Standardstandort:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../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/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1044 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "Adult Content" msgstr "Nicht jugendfreie Inhalte" -#: ../../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 "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" -#: ../../Zotlabs/Module/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1048 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Datenschutz-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../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/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Hide my online presence" msgstr "Meine Online-Präsenz verbergen" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../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/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Simple Privacy Settings:" msgstr "Einfache Privatsphäre-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Settings.php:1056 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" -#: ../../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 "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:1153 +#: ../../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:1154 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "Blocked - default blocked to/from everybody" msgstr "Blockiert – Alle standardmäßig blockiert" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "Allow others to tag your posts" msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../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/Settings.php:1158 +#: ../../Zotlabs/Module/Settings.php:1063 msgid "Advanced Privacy Settings" msgstr "Fortgeschrittene Privatsphäre-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../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/Settings.php:1160 +#: ../../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/Settings.php:1160 +#: ../../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/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "This website does not expire imported content." msgstr "Diese Webseite lässt importierte Inhalte nicht verfallen." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../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/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Kontaktanfragen pro Tag:" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "May reduce spam activity" msgstr "Kann die Spam-Aktivität verringern" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1067 msgid "Default Post and Publish Permissions" msgstr "Standard-Berechtigungen für Beiträge und andere Inhalte" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../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/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1072 msgid "Channel permissions category:" msgstr "Zugriffsrechte-Kategorie des Kanals:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../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/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Useful to reduce spamming" msgstr "Nützlich, um Spam zu verringern" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1081 msgid "Notification Settings" msgstr "Benachrichtigungs-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1082 msgid "By default post a status message when:" msgstr "Sende standardmäßig Status-Nachrichten, wenn:" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1083 msgid "accepting a friend request" msgstr "Du eine Verbindungsanfrage annimmst" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1084 msgid "joining a forum/community" msgstr "Du einem Forum beitrittst" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "making an interesting profile change" msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1086 msgid "Send a notification email when:" msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1087 msgid "You receive a connection request" msgstr "Du eine Verbindungsanfrage erhältst" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1088 msgid "Your connections are confirmed" msgstr "Eine Verbindung bestätigt wurde" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../Zotlabs/Module/Settings.php:1089 msgid "Someone writes on your profile wall" msgstr "Jemand auf Deine Pinnwand schreibt" -#: ../../Zotlabs/Module/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1090 msgid "Someone writes a followup comment" msgstr "Jemand einen Beitrag kommentiert" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1091 msgid "You receive a private message" msgstr "Du eine private Nachricht erhältst" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1092 msgid "You receive a friend suggestion" msgstr "Du einen Kontaktvorschlag erhältst" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1093 msgid "You are tagged in a post" msgstr "Du in einem Beitrag erwähnt wurdest" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../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/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1097 msgid "Show visual notifications including:" msgstr "Visuelle Benachrichtigungen anzeigen für:" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1099 msgid "Unseen grid activity" msgstr "Ungesehene Netzwerk-Aktivität" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1100 msgid "Unseen channel activity" msgstr "Ungesehene Kanal-Aktivität" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1101 msgid "Unseen private messages" msgstr "Ungelesene persönliche Nachrichten" -#: ../../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 "Empfohlen" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1102 msgid "Upcoming events" msgstr "Baldige Termine" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1103 msgid "Events today" msgstr "Heutige Termine" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Upcoming birthdays" msgstr "Baldige Geburtstage" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Not available in all themes" msgstr "Nicht in allen Themes verfügbar" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1105 msgid "System (personal) notifications" msgstr "System – (persönliche) Benachrichtigungen" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "System info messages" msgstr "System – Info-Nachrichten" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1107 msgid "System critical alerts" msgstr "System – kritische Warnungen" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "New connections" msgstr "Neue Verbindungen" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1109 msgid "System Registrations" msgstr "System – Registrierungen" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1110 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:1207 +#: ../../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/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Must be greater than 0" msgstr "Muss größer als 0 sein" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../Zotlabs/Module/Settings.php:1114 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Account- und Seitenart-Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1210 +#: ../../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/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1118 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:1214 +#: ../../Zotlabs/Module/Settings.php:1119 msgid "Miscellaneous Settings" msgstr "Sonstige Einstellungen" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "Default photo upload folder" msgstr "Voreingestellter Ordner für hochgeladene Fotos" -#: ../../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 - aktuelles Jahr, %m - aktueller Monat" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "Default file upload folder" msgstr "Voreingestellter Ordner für hochgeladene Dateien" -#: ../../Zotlabs/Module/Settings.php:1218 +#: ../../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/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Remove this channel." msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1126 msgid "Firefox Share $Projectname provider" msgstr "$Projectname-Provider für Firefox Share" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Start calendar week on monday" msgstr "Montag als erster Tag der Kalenderwoche" @@ -5840,7 +5529,7 @@ msgid "" msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." #: ../../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 "Lies die Datei \"install/INSTALL.txt\"." @@ -6040,200 +5729,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 "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." -#: ../../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 "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../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/Setup.php:518 +#: ../../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/Setup.php:522 +#: ../../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/Setup.php:526 +#: ../../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/Setup.php:530 +#: ../../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/Setup.php:534 +#: ../../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/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/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 "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." -#: ../../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 "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/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 "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst." -#: ../../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 "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:563 msgid ".htconfig.php is writable" msgstr ".htconfig.php ist beschreibbar" -#: ../../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 "$Projectname verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." -#: ../../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 "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses." -#: ../../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 "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." -#: ../../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 "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/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:583 #, php-format msgid "%s is writable" msgstr "%s ist beschreibbar" -#: ../../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 "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" +"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/Setup.php:598 +#: ../../Zotlabs/Module/Setup.php:603 msgid "store is writable" msgstr "store ist schreibbar" -#: ../../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 "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." -#: ../../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 "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/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 "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." -#: ../../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 "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/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 "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:636 +#: ../../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/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/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:643 msgid "SSL certificate validation" msgstr "SSL Zertifikatverifizierung" -#: ../../Zotlabs/Module/Setup.php:647 +#: ../../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/Module/Setup.php:650 +#: ../../Zotlabs/Module/Setup.php:652 msgid "Url rewrite is working" msgstr "Url rewrite funktioniert" -#: ../../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 "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/Setup.php:683 +#: ../../Zotlabs/Module/Setup.php:685 msgid "Errors encountered creating database tables." msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:719 msgid "

What next

" msgstr "

Was als Nächstes

" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:720 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6255,62 +5943,64 @@ msgstr "Alle Dateien löschen" msgid "Remove this file" msgstr "Diese Datei löschen" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Sache aktualisiert" - -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" - -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Sache hinzugefügt" - -#: ../../Zotlabs/Module/Thing.php:196 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +msgid "Version %s" +msgstr "Version %s" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Sache anzeigen" +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Addons/Apps" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "Eintrag nicht gefunden" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Keine installierten Plugins/Addons/Apps" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Sache bearbeiten" +#: ../../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/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Wähle ein Profil" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Schlagwort: " -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Letzter Hintergrundabruf:" -#: ../../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/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Aktuelles Load Average:" -#: ../../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/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Erreichbar unter der Web-Adresse" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" +#: ../../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/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/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "$projectname-Bugtracker" + +#: ../../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/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Administratoren" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6328,8 +6018,8 @@ msgstr "Quelle aktualisiert." 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 "Kanal-Quellen" @@ -6405,12 +6095,12 @@ msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es msgid "Ignore/Hide" msgstr "Ignorieren/Verstecken" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 msgid "post" msgstr "Beitrag" -#: ../../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" @@ -6431,110 +6121,131 @@ msgstr "Schlagwort entfernen" msgid "Select a tag to remove: " msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Webseiten" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Sache aktualisiert" -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Aktionen" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Seiten-Link" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Sache hinzugefügt" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Seitentitel" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "Nicht gefunden" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Sache anzeigen" -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:108 ../../include/conversation.php:1710 -#: ../../include/conversation.php:1713 ../../include/features.php:55 -msgid "Wiki" -msgstr "Wiki" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Eintrag nicht gefunden" -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "Sandbox" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Sache bearbeiten" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Wähle ein Profil" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" + +#: ../../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/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" + +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" + +#: ../../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/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" + +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanal exportieren" + +#: ../../Zotlabs/Module/Uexport.php:57 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*.\"" +"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/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Revisionsvergleich" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Kanal und Inhalte exportieren" -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Rückgängig machen" +#: ../../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/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Gib einen Namen für Dein neues Wiki ein:" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exportiert die Beiträge des angegebenen Jahres." -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Geben Sie den Namen der neuen Seite ein:" +#: ../../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/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Geben Sie den neuen Namen ein:" +#: ../../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/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Bild aus Fotoalben einbetten" +#: ../../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/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/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/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 "Wählen Sie Bilder zum Einbetten aus" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Wählen Sie ein Album aus" - -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Wählen Sie ein anderes Album aus..." - -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "Fehler beim Holen der Albenliste" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "Fehler beim Holen des Fotolinks" - -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Fehler beim Holen des Albums" - -#: ../../Zotlabs/Module/Viewconnections.php:65 +#: ../../Zotlabs/Module/Viewconnections.php:62 msgid "No connections." msgstr "Keine Verbindungen." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "%ss Profil [%s] besuchen" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:104 msgid "View Connections" msgstr "Verbindungen anzeigen" @@ -6542,23 +6253,22 @@ msgstr "Verbindungen anzeigen" msgid "Source of Item" msgstr "Quelle des Elements" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Webseiten" -#: ../../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/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Aktionen" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Zum Weitermachen, bitte einloggen." +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Seiten-Link" -#: ../../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/Webpages.php:197 +msgid "Page Title" +msgstr "Seitentitel" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6568,6 +6278,92 @@ msgstr "Xchan-Suche" msgid "Lookup xchan beginning with (or webbie): " msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Hub-Administration" + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "Fehler-Rückmeldung" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "Lesezeichen ansehen" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "Meine Chaträume" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "Teilen-Knopf für Firefox" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "Ferndiagnose" + +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Kanäle vorschlagen" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Anmelden" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Grid" + +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Mein Kanal" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Termine" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Mail" + +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Testen" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Empfehlen" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Zufälliger Kanal" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Einladen" + +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Funktionen" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Beitrag schreiben" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Kaufen" + #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Der Chatraum hat keinen Namen" @@ -6588,19 +6384,19 @@ msgstr "Chatraum konnte nicht gefunden werden." msgid "Room is full" msgstr "Der Chatraum ist voll" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 msgid "$Projectname Notification" msgstr "$Projectname-Benachrichtigung" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 msgid "Thank You," msgstr "Danke." -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format msgid "%s Administrator" msgstr "der Administrator von %s" @@ -6793,97 +6589,11 @@ msgstr "Neuer Beitrag wurde erzeugt" msgid "commented on %s's post" msgstr "hat %s's Beitrag kommentiert" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Hub-Administration" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Fehler-Rückmeldung" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Lesezeichen ansehen" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Meine Chaträume" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Teilen-Knopf für Firefox" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Ferndiagnose" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Kanäle vorschlagen" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Anmelden" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Grid" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Mein Kanal" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Termine" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Verzeichnis" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Mail" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Testen" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Empfehlen" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Zufälliger Kanal" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Einladen" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funktionen" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Beitrag schreiben" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Kaufen" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 msgid "Private Message" msgstr "Private Nachricht" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 msgid "Select" msgstr "Auswählen" @@ -6931,11 +6641,11 @@ msgstr "Markierungsstatus (Stern) umschalten" msgid "starred" msgstr "markiert" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 msgid "Message signature validated" msgstr "Signatur überprüft" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 msgid "Message signature incorrect" msgstr "Signatur nicht korrekt" @@ -6991,17 +6701,17 @@ msgstr "Wall-to-Wall" msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 #, php-format msgid "from %s" msgstr "via %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 #, php-format msgid "last edited: %s" msgstr "zuletzt bearbeitet: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 #, php-format msgid "Expires: %s" msgstr "Verfällt: %s" @@ -7019,27 +6729,26 @@ msgid "Mark all seen" msgstr "Alle als gelesen markieren" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mehr anzeigen" +msgid "[+] show all" +msgstr "[+] Alle anzeigen" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 msgid "Bold" msgstr "Fett" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 msgid "Italic" msgstr "Kursiv" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 msgid "Underline" msgstr "Unterstrichen" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 msgid "Quote" msgstr "Zitat" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 msgid "Code" msgstr "Code" @@ -7055,74 +6764,11 @@ msgstr "Link einfügen" msgid "Video" msgstr "Video" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" - -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Nur ich" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Öffentlich" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Jeder innerhalb des $Projectname Netzwerks" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" -msgstr "Jedes Nutzerkonto auf %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Alle meine Verbindungen" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Nur Verbindungen, denen ich es explizit erlaube" - -#: ../../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/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/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/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/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/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/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." - #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Kein Benutzername in der Importdatei gefunden." -#: ../../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 "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." @@ -7131,291 +6777,6 @@ msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Im msgid "Cannot locate DNS info for database server '%s'" msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Fotospeicherung fehlgeschlagen." - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "ein neues Foto" - -#: ../../include/photos.php:303 -#, 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 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Abmelden" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Beende diese Sitzung" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" - -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Profile bearbeiten" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Profil bearbeiten" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Deine Bilder" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Deine Dateien" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Deine Chaträume" - -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Lesezeichen" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Deine Webseiten" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "Dein Wiki" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:129 -#, 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" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Erzeuge ein Konto" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" - -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Kanal-Verzeichnis" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Dein Grid" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Persönliche Mail" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" - -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Eingang" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Ausgang" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Neue Nachricht" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Terminkalender" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Alle Termine ansehen" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" - -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Administration" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" - -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Lädt ..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Bitte warten..." - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" - -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrator" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Kein Betreff" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot!" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Neue Seite" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titel" - #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -7454,159 +6815,952 @@ 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/channel.php:67 -msgid "Empty name" -msgstr "Namensfeld leer" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Beginnt:" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Name ist zu lang" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Endet:" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Keine Account-Kennung" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Keine Angabe" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Aktion erforderlich" -#: ../../include/channel.php:212 +#: ../../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 "" -"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." +"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/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Standard-Profil" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Unbekannt)" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Für jeden im Internet sichtbar." -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Nur für Dich sichtbar." -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Für jedes $Projectname-Mitglied sichtbar." -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Geschlecht:" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Für jeden sichtbar, der angemeldet ist." -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Status:" - -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "gerade online" - -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" - -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j. F Y" - -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j. F" - -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: ../../include/channel.php:1232 +#: ../../include/items.php:1144 #, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" +msgid "Visible to anybody on %s." +msgstr "Für jeden auf %s sichtbar." -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Für alle Verbindungen sichtbar." -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Schlagworte:" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Nur für akzeptierte Verbindungen sichtbar." -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Politische Ansichten:" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "Gruppe ist leer." -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppe: %s" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Gefällt:" +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Gefällt nicht:" +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "Profilfoto" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Kein Empfänger angegeben" -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[no subject]" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kann Absender nicht bestimmen." -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Fernsehen:" +#: ../../include/text.php:428 +msgid "prev" +msgstr "vorherige" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" +#: ../../include/text.php:430 +msgid "first" +msgstr "erste" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" +#: ../../include/text.php:459 +msgid "last" +msgstr "letzte" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" +#: ../../include/text.php:462 +msgid "next" +msgstr "nächste" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Schule/Ausbildung:" +#: ../../include/text.php:472 +msgid "older" +msgstr "älter" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Gefällt mir" +#: ../../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/text.php:1039 +msgid "ping" +msgstr "anpingen" + +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "pingte" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "knuffen" + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "knuffte" + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "ohrfeigen" + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "ohrfeigte" + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "befummeln" + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "befummelte" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "zurückgewiesen" + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "glücklich" + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "traurig" + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "sanft" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "müde" + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "frech" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "sauer" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "verblüfft" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "verwirrt" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "interessiert" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "verbittert" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "fröhlich" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "lebendig" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "verärgert" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "unruhig" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "schrullig" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "verstört" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustriert" + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "deprimiert" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motiviert" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "entspannt" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "überrascht" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "Montag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "Dienstag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "Mittwoch" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "Donnerstag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "Freitag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "Samstag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "Sonntag" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "Januar" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "Februar" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "März" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "April" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "Juni" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "Juli" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "August" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "September" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "Oktober" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "November" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "Dezember" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Unbekannter Anhang" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "unbekannt" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "Kategorie entfernen" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "aus der Datei entfernen" + +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "Standard" + +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Seiten-Layout" + +#: ../../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/text.php:1803 +msgid "Page content type" +msgstr "Art des Seiteninhalts" + +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "Aktivität" + +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Gestaltungswerkzeuge" + +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Seiten" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "System" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Neue App" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Vorschläge" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Mehr anzeigen …" + +#: ../../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/widgets.php:181 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Adresse des Kanals eingeben" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notizen" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Eintrag löschen" + +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "hinzufügen" + +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Alles" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archive" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Aktualisieren" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Konto-Einstellungen" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Plugin-Einstellungen" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Klon-Adressen verwalten" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Kanal exportieren" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Verbundene Apps" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Private Nachrichten" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Kombinierte Anzeige" + +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Eingang" + +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Ausgang" + +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Neue Nachricht" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Konversationen" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Erhaltene Nachrichten" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Gesendete Nachrichten" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Kalendermenü" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Tagesansicht" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Wochenansicht" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Monatsansicht" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Kalenderwerkzeuge" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Kalender exportieren" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Kalender importieren" + +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Chaträume" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Übersicht" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Chatmitglieder" + +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" + +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" + +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "Foto/Bild" + +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Klick, um mehr anzuzeigen" + +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Bewertungswerkzeuge" + +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Bewerte mich" + +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Bewertungen ansehen" + +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Foren" + +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Aufgaben" + +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Dokumentation" + +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Informationen über das Projekt und diesen Hub" + +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Für Mitglieder" + +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Für Administratoren" + +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Für Entwickler" + +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" + +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Warteschlange kontrollieren" + +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "DB-Aktualisierungen" + +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Administration" + +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" + +#: ../../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:81 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "Kanalsuche fehlgeschlagen" + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Du kannst Dich nicht mit Dir selbst verbinden." + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" + +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" + +#: ../../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/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Element %s installieren: " + +#: ../../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/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/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" + +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "Spoiler" + +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" + +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 schrieb:" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Verzeichnisoptionen" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Sicherer Modus" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Nur öffentliche Foren" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Nur dieser Hub" + +#: ../../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/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Abmelden" + +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Beende diese Sitzung" + +#: ../../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/nav.php:86 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" + +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Profile bearbeiten" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Profil bearbeiten" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Deine Bilder" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Deine Dateien" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Deine Chaträume" + +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Lesezeichen" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Deine Webseiten" + +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Anmelden" + +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" + +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" + +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Erzeuge ein Konto" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" + +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" + +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Kanal-Verzeichnis" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Dein Grid" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Mein Kanal" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Persönliche Mail" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Terminkalender" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Alle Termine ansehen" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Markiere alle Termine als gesehen" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanal-Einstellungen" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" + +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Lädt ..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Bitte warten..." #: ../../include/connections.php:95 msgid "New window" @@ -7621,6 +7775,52 @@ msgstr "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab" msgid "User '%s' deleted" msgstr "Benutzer '%s' gelöscht" +#: ../../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/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Finde Kanäle" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiele: Robert Morgenstein, Angeln" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Zufallsprofil" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Lade Freunde ein" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" + +#: ../../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/contact_widgets.php:127 +msgid "show more" +msgstr "mehr zeigen" + #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7631,269 +7831,258 @@ msgstr "%1$s ist jetzt mit %2$s verbunden" msgid "%1$s poked %2$s" msgstr "%1$s stupste %2$s an" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "stupste" - -#: ../../include/conversation.php:694 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "%ss Profil auf %s ansehen" -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Kategorien:" -#: ../../include/conversation.php:714 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Gespeichert unter:" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "Im Zusammenhang anschauen" -#: ../../include/conversation.php:850 +#: ../../include/conversation.php:847 msgid "remove" msgstr "lösche" -#: ../../include/conversation.php:855 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Lösche die ausgewählten Elemente" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Quelle anzeigen" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Unterhaltung folgen" -#: ../../include/conversation.php:953 +#: ../../include/conversation.php:950 msgid "Unfollow Thread" msgstr "Unterhaltung nicht mehr folgen" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:955 msgid "Activity/Posts" msgstr "Aktivitäten/Beiträge" -#: ../../include/conversation.php:960 +#: ../../include/conversation.php:957 msgid "Edit Connection" msgstr "Verbindung bearbeiten" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:958 msgid "Message" msgstr "Nachricht" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "%s gefällt das." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "%s gefällt das nicht." -#: ../../include/conversation.php:1082 +#: ../../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/conversation.php:1084 +#: ../../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/conversation.php:1090 +#: ../../include/conversation.php:1087 msgid "and" msgstr "und" -#: ../../include/conversation.php:1093 +#: ../../include/conversation.php:1090 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] ", und %d andere" -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "%s gefällt das." -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "%s gefällt das nicht." -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "Standort" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Browser-Standort löschen" -#: ../../include/conversation.php:1182 +#: ../../include/conversation.php:1177 msgid "Tag term:" msgstr "Schlagwort:" -#: ../../include/conversation.php:1183 +#: ../../include/conversation.php:1178 msgid "Where are you right now?" msgstr "Wo bist Du jetzt grade?" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1210 msgid "Page link name" msgstr "Link zur Seite" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:1213 msgid "Post as" msgstr "Veröffentlichen als" -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1223 msgid "Toggle voting" msgstr "Umfragewerkzeug aktivieren" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Kategorien (optional, kommagetrennte Liste)" -#: ../../include/conversation.php:1269 +#: ../../include/conversation.php:1254 msgid "Set publish date" msgstr "Veröffentlichungsdatum festlegen" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "Ok" + +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "Entdecken" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Importierte öffentliche Beiträge" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Neueste Kommentare" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Nach Kommentardatum sortiert" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Neueste Beiträge" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Nach Beitragsdatum sortiert" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1529 msgid "Posts that mention or involve you" msgstr "Beiträge mit Beteiligung Deinerseits" -#: ../../include/conversation.php:1553 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Activity Stream – nach Datum sortiert" -#: ../../include/conversation.php:1559 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Markiert" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Markierte Beiträge" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../include/conversation.php:1629 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1623 msgid "About" msgstr "Über" -#: ../../include/conversation.php:1641 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Profil-Details" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Dateien und Speicher" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Chaträume" - -#: ../../include/conversation.php:1693 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Gespeicherte Lesezeichen" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Webseiten verwalten" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Zusage" msgstr[1] "Zusagen" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Absage" msgstr[1] "Absagen" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] " Unentschlossen" msgstr[1] "Unentschlossene" -#: ../../include/conversation.php:1777 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "Zustimmung" msgstr[1] "Zustimmungen" -#: ../../include/conversation.php:1780 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Ablehnung" msgstr[1] "Ablehnungen" -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Enthaltung" msgstr[1] "Enthaltungen" -#: ../../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/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." - #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Häufig" @@ -7958,6 +8147,12 @@ msgstr "Geschlechtslos" msgid "Non-specific" msgstr "unklar" +#: ../../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/selectors.php:49 msgid "Undecided" msgstr "Unentschieden" @@ -8134,366 +8329,361 @@ msgstr "Interessiert mich nicht" msgid "Ask me" msgstr "Frag mich mal" -#: ../../include/bookmarks.php:35 +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" + +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Nur ich" + +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Öffentlich" + +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Jeder innerhalb des $Projectname Netzwerks" + +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" +msgid "Any account on %s" +msgstr "Jedes Nutzerkonto auf %s" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "Gast:" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Alle meine Verbindungen" -#: ../../include/security.php:427 +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Nur Verbindungen, denen ich es explizit erlaube" + +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" + +#: ../../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/PermissionDescription.php:161 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." +"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/text.php:404 -msgid "prev" -msgstr "vorherige" +#: ../../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/text.php:406 -msgid "first" -msgstr "erste" +#: ../../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/text.php:435 -msgid "last" -msgstr "letzte" +#: ../../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/text.php:438 -msgid "next" -msgstr "nächste" +#: ../../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/text.php:448 -msgid "older" -msgstr "älter" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" -#: ../../include/text.php:450 -msgid "newer" -msgstr "neuer" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Keine Verbindungen" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." -#: ../../include/text.php:868 +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Eine Einladung wird benötigt." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht bestätigt werden." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Bitte gib die benötigten Informationen ein." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." + +#: ../../include/account.php:249 #, php-format -msgid "View all %s connections" -msgstr "Alle Verbindungen von %s anzeigen" +msgid "Registration confirmation for %s" +msgstr "Registrierungsbestätigung für %s" + +#: ../../include/account.php:315 +#, php-format +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" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Registrierungsdetails für %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Nutzerkonto bestätigt." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde widerrufen" + +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Nutzerkonto wurde bestätigt. Bitte melde Dich an!" + +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." + +#: ../../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:497 +msgid "No source file." +msgstr "Keine Quelldatei." + +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" + +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" + +#: ../../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: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:842 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." + +#: ../../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:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." + +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" + +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Pfad nicht gefunden." + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "Leere Pfadangabe" + +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "anstupsen" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Namensfeld leer" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "anpingen" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Name ist zu lang" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "pingte" +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Keine Account-Kennung" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "knuffen" +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "knuffte" +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." -#: ../../include/text.php:1021 -msgid "slap" -msgstr "ohrfeigen" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ohrfeigte" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "befummeln" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "befummelte" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "zurückgewiesen" - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "glücklich" - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "traurig" - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "sanft" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "müde" - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "frech" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "sauer" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "verblüfft" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "verwirrt" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "interessiert" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "verbittert" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "fröhlich" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "lebendig" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "verärgert" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "unruhig" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "schrullig" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "verstört" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustriert" - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "deprimiert" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motiviert" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "entspannt" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "überrascht" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Montag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Dienstag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Mittwoch" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Donnerstag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Freitag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Samstag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Sonntag" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "Januar" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "Februar" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "März" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "August" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "Dezember" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Unbekannter Anhang" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "unbekannt" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "Kategorie entfernen" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "aus der Datei entfernen" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "Standard" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Seiten-Layout" - -#: ../../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/text.php:1784 -msgid "Page content type" -msgstr "Art des Seiteninhalts" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "Aktivität" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Gestaltungswerkzeuge" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Seiten" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Ausgeloggt." - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" - -#: ../../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/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kann in meine Datei- und Bilderordner schreiben" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" - -#: ../../include/permissions.php:46 +#: ../../include/channel.php:211 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" +"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/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Standard-Profil" + +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal nicht verfügbar." + +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" + +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" + +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Geschlecht:" + +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Status:" + +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "gerade online" + +#: ../../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/channel.php:1179 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: ../../include/channel.php:1192 +#, php-format +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" @@ -8540,257 +8730,378 @@ msgid "Provide managed web pages on your channel" msgstr "Ermöglicht das Erstellen von Webseiten in Deinem Kanal" #: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "Stelle ein Wiki in Deinem Kanal zur Verfügung" - -#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Bewertung verbergen" -#: ../../include/features.php:56 +#: ../../include/features.php:55 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten." -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Private Notes" msgstr "Private Notizen" -#: ../../include/features.php:57 +#: ../../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:58 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "Kanal-Auswahl in der Navigationsleiste" -#: ../../include/features.php:58 +#: ../../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:59 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "Aufnahmeort" -#: ../../include/features.php:59 +#: ../../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:60 +#: ../../include/features.php:59 msgid "Access Controlled Chatrooms" msgstr "Zugriffskontrollierte Chaträume" -#: ../../include/features.php:60 +#: ../../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:61 +#: ../../include/features.php:60 msgid "Smart Birthdays" msgstr "Smarte Geburtstage" -#: ../../include/features.php:61 +#: ../../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:62 +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "Expertenmodus" -#: ../../include/features.php:62 +#: ../../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:63 +#: ../../include/features.php:62 msgid "Premium Channel" msgstr "Premium-Kanal" -#: ../../include/features.php:63 +#: ../../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/features.php:68 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "Nachbearbeitungsfunktionen" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Large Photos" msgstr "Große Fotos" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet." -#: ../../include/features.php:72 +#: ../../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/features.php:73 +#: ../../include/features.php:72 msgid "Even More Encryption" msgstr "Noch mehr Verschlüsselung" -#: ../../include/features.php:73 +#: ../../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/features.php:74 +#: ../../include/features.php:73 msgid "Enable Voting Tools" msgstr "Umfragewerkzeuge aktivieren" -#: ../../include/features.php:74 +#: ../../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/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Verzögertes Senden" -#: ../../include/features.php:75 +#: ../../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/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Doppelte Beiträge unterdrücken" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden." -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Netzwerk- und Stream-Filter" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Suche nach Datum" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/features.php:84 ../../include/group.php:311 +#: ../../include/features.php:83 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Gruppen" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" - -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Persönlicher Netzwerkreiter" -#: ../../include/features.php:86 +#: ../../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/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Netzwerkreiter Neu" -#: ../../include/features.php:87 +#: ../../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/features.php:88 +#: ../../include/features.php:87 msgid "Affinity Tool" msgstr "Beziehungs-Tool" -#: ../../include/features.php:88 +#: ../../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/features.php:89 +#: ../../include/features.php:88 msgid "Connection Filtering" msgstr "Filter für Verbindungen" -#: ../../include/features.php:89 +#: ../../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/features.php:90 +#: ../../include/features.php:89 msgid "Show channel suggestions" msgstr "Kanalvorschläge anzeigen" -#: ../../include/features.php:95 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "Beitrag-/Kommentar-Tools" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Community Tagging" msgstr "Gemeinschaftliches Verschlagworten" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "Ermöglicht das Verschlagworten existierender Beiträge" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "Beitrags-Kategorien" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "Aktiviert Kategorien für Beiträge" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Emoji Reactions" msgstr "Emoji Reaktionen" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Add emoji reaction ability to posts" msgstr "Aktiviert Emoji-Reaktionen für Beiträge" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: ../../include/features.php:99 +#: ../../include/features.php:98 msgid "Ability to file posts under folders" msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "Gefällt-mir-nicht-Beiträge" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "Beiträge mit Sternchen versehen" -#: ../../include/features.php:101 +#: ../../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/features.php:102 +#: ../../include/features.php:101 msgid "Tag Cloud" msgstr "Schlagwort-Wolke" -#: ../../include/features.php:102 +#: ../../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/oembed.php:324 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Einbetten ausgeschaltet" + +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "Wer kann das sehen?" + +#: ../../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/acl_selectors.php:274 +msgid "Show" +msgstr "Anzeigen" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Nicht anzeigen" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Andere Netzwerke und Platformen" + +#: ../../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/auth.php:105 +msgid "Logged out." +msgstr "Ausgeloggt." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Geburtstag" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Alter:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" + +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "Nie" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" + +#: ../../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/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "Jahr" +msgstr[1] "Jahre" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "Monat" +msgstr[1] "Monate" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "Woche" +msgstr[1] "Wochen" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "Tag" +msgstr[1] "Tage" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "Stunde" +msgstr[1] "Stunden" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "Minute" +msgstr[1] "Minuten" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "Sekunde" +msgstr[1] "Sekunden" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -8818,583 +9129,21 @@ msgstr "Gruppe hinzufügen" msgid "Channels not in any privacy group" msgstr "Kanäle, die in keiner Gruppe sind" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "hinzufügen" - -#: ../../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:814 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Keine Angabe" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Aktion erforderlich" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Abgeschlossen" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "In Bearbeitung" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "gestrichen" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Eine Einladung wird benötigt." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Bitte gib die benötigten Informationen ein." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Nutzerkonto bestätigt." - -#: ../../include/account.php:454 -#, php-format -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/follow.php:171 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "Keine Quelldatei." - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "Kann Datei zum Ersetzen nicht finden" - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" - -#: ../../include/attach.php:688 -#, 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 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." - -#: ../../include/attach.php:859 -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 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Pfad nicht gefunden." - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." - -#: ../../include/attach.php:1135 -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/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Element %s installieren: " - -#: ../../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/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/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "Spoiler" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 schrieb:" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Unbekannt)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Für jeden im Internet sichtbar." - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Nur für Dich sichtbar." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Für jedes $Projectname-Mitglied sichtbar." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Für jeden sichtbar, der angemeldet ist." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Für jeden auf %s sichtbar." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Für alle Verbindungen sichtbar." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Nur für akzeptierte Verbindungen sichtbar." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Sichtbar für bestimmte Verbindungen." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Gruppe ist leer." - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppe: %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Die Verbindung wurde nicht gefunden." - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "Profilfoto" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Neue App" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Vorschläge" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Mehr anzeigen …" - -#: ../../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/widgets.php:181 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Adresse des Kanals eingeben" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notizen" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eintrag löschen" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alles" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archive" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Aktualisieren" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Konto-Einstellungen" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Plugin-Einstellungen" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Anzeige-Einstellungen" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Klon-Adressen verwalten" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Kanal exportieren" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Verbundene Apps" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Private Nachrichten" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Kombinierte Anzeige" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Konversationen" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Erhaltene Nachrichten" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Gesendete Nachrichten" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Kalenderwerkzeuge" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Kalender exportieren" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Kalender importieren" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Übersicht" - -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Chatmitglieder" - -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Wikiliste" - -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Wikiseiten" - -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "Foto/Bild" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Klick, um mehr anzuzeigen" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Bewertungswerkzeuge" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Bewerte mich" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Bewertungen ansehen" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Foren" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Aufgaben" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Dokumentation" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Informationen über das Projekt und diesen Hub" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Für Mitglieder" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Für Administratoren" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Für Entwickler" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Warteschlange kontrollieren" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "DB-Aktualisierungen" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "und" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "öffentliches Profil" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s auf “%3$s” geändert" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besuche %1$s's %2$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/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Anhänge:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "$Projectname-Terminbenachrichtigung:" - #: ../../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,223 +9373,278 @@ 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/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "ein neues Foto" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiele: Robert Morgenstein, Angeln" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Zufallsprofil" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Lade Freunde ein" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" - -#: ../../include/contact_widgets.php:122 +#: ../../include/photos.php:299 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeinsame Verbindung" -msgstr[1] "%d gemeinsame Verbindungen" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s hat %2$s auf %3$s veröffentlicht" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mehr zeigen" +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Verzeichnisoptionen" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Sicherer Modus" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Nur öffentliche Foren" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Nur dieser Hub" - -#: ../../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/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "Wer kann das sehen?" - -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Benutzerdefinierte Auswahl" - -#: ../../include/acl_selectors.php:271 -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/acl_selectors.php:272 -msgid "Show" -msgstr "Anzeigen" - -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Nicht anzeigen" - -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Andere Netzwerke und Platformen" - -#: ../../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/datetime.php:135 -msgid "Birthday" -msgstr "Geburtstag" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Alter:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" - -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "Nie" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" - -#: ../../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/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "Jahr" -msgstr[1] "Jahre" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "Monat" -msgstr[1] "Monate" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "Woche" -msgstr[1] "Wochen" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "Tag" -msgstr[1] "Tage" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "Stunde" -msgstr[1] "Stunden" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "Minute" -msgstr[1] "Minuten" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "Sekunde" -msgstr[1] "Sekunden" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" - -#: ../../include/datetime.php:563 -#, 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 +#: ../../include/zot.php:699 msgid "Invalid data packet" msgstr "Ungültiges Datenpaket" -#: ../../include/zot.php:713 +#: ../../include/zot.php:715 msgid "Unable to verify channel signature" msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/zot.php:2326 +#: ../../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:3703 +#: ../../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/permissions.php:28 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kann meine Datei- und Bilderordner sehen" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" + +#: ../../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/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" + +#: ../../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/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" + +#: ../../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/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kann in meine Datei- und Bilderordner schreiben" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten bearbeiten" + +#: ../../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/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" + +#: ../../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/permissions.php:877 +msgid "Social Networking" +msgstr "Soziales Netzwerk" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Soziales Netzwerk - Weitgehend öffentlich" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Soziales Netzwerk - Beschränkt" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Soziales Netzwerk - Privat" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Forum" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Forum - Weitgehend öffentlich" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - Beschränkt" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - Privat" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Teilen von Feeds" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Feeds - Weitgehend öffentlich" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Feeds - Beschränkt" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Für besondere Zwecke" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Speziell - Gruppenarchiv" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "und" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "öffentliches Profil" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s auf “%3$s” geändert" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besuche %1$s's %2$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/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)" msgstr "Focus (Voreinstellung für Hubzilla)" @@ -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,6 +382,229 @@ 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["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."; +App::$strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; +App::$strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; +App::$strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines \$Projectname-Servers."; +App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; +App::$strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; +App::$strings["Send invitations"] = "Einladungen senden"; +App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; +App::$strings["Your message:"] = "Deine Nachricht:"; +App::$strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; +App::$strings["You will need to supply this invitation code:"] = "Bitte verwende bei der Registrierung den folgenden Einladungscode:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)"; +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"; +App::$strings["Please wait several minutes between consecutive operations."] = "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!"; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt."; +App::$strings["Hub not found."] = "Server nicht gefunden."; +App::$strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; +App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; +App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; +App::$strings["Messages"] = "Nachrichten"; +App::$strings["Message recalled."] = "Nachricht widerrufen."; +App::$strings["Conversation removed."] = "Unterhaltung gelöscht."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; +App::$strings["Requested channel is not in this network"] = "Angeforderter Kanal ist nicht in diesem Netzwerk."; +App::$strings["Send Private Message"] = "Private Nachricht senden"; +App::$strings["To:"] = "An:"; +App::$strings["Subject:"] = "Betreff:"; +App::$strings["Attach file"] = "Datei anhängen"; +App::$strings["Send"] = "Absenden"; +App::$strings["Set expiration date"] = "Verfallsdatum"; +App::$strings["Delete message"] = "Nachricht löschen"; +App::$strings["Delivery report"] = "Zustellungsbericht"; +App::$strings["Recall message"] = "Nachricht widerrufen"; +App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; +App::$strings["Delete Conversation"] = "Unterhaltung löschen"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +App::$strings["Send Reply"] = "Antwort senden"; +App::$strings["Your message for %s (%s):"] = "Deine Nachricht für %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; +App::$strings["Create a new channel"] = "Neuen Kanal anlegen"; +App::$strings["Channel Manager"] = "Kanal-Manager"; +App::$strings["Current Channel"] = "Aktueller Kanal"; +App::$strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; +App::$strings["Default Channel"] = "Standard Kanal"; +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["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)"; +App::$strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; +App::$strings["Password Reset"] = "Zurücksetzen des Kennworts"; +App::$strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; +App::$strings["Your new password is"] = "Dein neues Passwort lautet"; +App::$strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; +App::$strings["click here to login"] = "Klicke hier, um dich anzumelden"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; +App::$strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; +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"; +App::$strings["Search Results For:"] = "Suchergebnisse für:"; +App::$strings["Privacy group is empty"] = "Gruppe ist leer"; +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["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."; +App::$strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; +App::$strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; +App::$strings["Link Name"] = "Name des Links"; +App::$strings["Link or Submenu Target"] = "Ziel des Links oder Untermenüs"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen."; +App::$strings["Use magic-auth if available"] = "Magic-Auth verwenden, falls verfügbar"; +App::$strings["Open link in new window"] = "Öffne Link in neuem Fenster"; +App::$strings["Order in list"] = "Reihenfolge in der Liste"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; +App::$strings["Submit and finish"] = "Absenden und fertigstellen"; +App::$strings["Submit and continue"] = "Absenden und fortfahren"; +App::$strings["Menu:"] = "Menü:"; +App::$strings["Link Target"] = "Ziel des Links"; +App::$strings["Edit menu"] = "Menü bearbeiten"; +App::$strings["Edit element"] = "Bestandteil bearbeiten"; +App::$strings["Drop element"] = "Bestandteil löschen"; +App::$strings["New element"] = "Neues Bestandteil"; +App::$strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; +App::$strings["Add menu element"] = "Menüelement hinzufügen"; +App::$strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; +App::$strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; +App::$strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; +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."; @@ -611,164 +673,122 @@ 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["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."; -App::$strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; -App::$strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; -App::$strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines \$Projectname-Servers."; -App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; -App::$strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", -); -App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; -App::$strings["Send invitations"] = "Einladungen senden"; -App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; -App::$strings["Your message:"] = "Deine Nachricht:"; -App::$strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; -App::$strings["You will need to supply this invitation code:"] = "Bitte verwende bei der Registrierung den folgenden Einladungscode:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)"; -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["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["Primary"] = "Primär"; -App::$strings["Drop"] = "Löschen"; -App::$strings["Sync Now"] = "Jetzt synchronisieren"; -App::$strings["Please wait several minutes between consecutive operations."] = "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!"; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt."; -App::$strings["Hub not found."] = "Server nicht gefunden."; -App::$strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; -App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; -App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; -App::$strings["Messages"] = "Nachrichten"; -App::$strings["Message recalled."] = "Nachricht widerrufen."; -App::$strings["Conversation removed."] = "Unterhaltung gelöscht."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; -App::$strings["Requested channel is not in this network"] = "Angeforderter Kanal ist nicht in diesem Netzwerk."; -App::$strings["Send Private Message"] = "Private Nachricht senden"; -App::$strings["To:"] = "An:"; -App::$strings["Subject:"] = "Betreff:"; -App::$strings["Attach file"] = "Datei anhängen"; -App::$strings["Send"] = "Absenden"; -App::$strings["Set expiration date"] = "Verfallsdatum"; -App::$strings["Delete message"] = "Nachricht löschen"; -App::$strings["Delivery report"] = "Zustellungsbericht"; -App::$strings["Recall message"] = "Nachricht widerrufen"; -App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; -App::$strings["Delete Conversation"] = "Unterhaltung löschen"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -App::$strings["Send Reply"] = "Antwort senden"; -App::$strings["Your message for %s (%s):"] = "Deine Nachricht für %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; -App::$strings["Create a new channel"] = "Neuen Kanal anlegen"; -App::$strings["Channel Manager"] = "Kanal-Manager"; -App::$strings["Current Channel"] = "Aktueller Kanal"; -App::$strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; -App::$strings["Default Channel"] = "Standard Kanal"; -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)"; -App::$strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; -App::$strings["Password Reset"] = "Zurücksetzen des Kennworts"; -App::$strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; -App::$strings["Your new password is"] = "Dein neues Passwort lautet"; -App::$strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; -App::$strings["click here to login"] = "Klicke hier, um dich anzumelden"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; -App::$strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; -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["__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["No such group"] = "Gruppe nicht gefunden"; -App::$strings["No such channel"] = "Kanal nicht gefunden"; -App::$strings["forum"] = "Forum"; -App::$strings["Search Results For:"] = "Suchergebnisse für:"; -App::$strings["Privacy group is empty"] = "Gruppe ist leer"; -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."; -App::$strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; -App::$strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; -App::$strings["Link Name"] = "Name des Links"; -App::$strings["Link or Submenu Target"] = "Ziel des Links oder Untermenüs"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen."; -App::$strings["Use magic-auth if available"] = "Magic-Auth verwenden, falls verfügbar"; -App::$strings["Open link in new window"] = "Öffne Link in neuem Fenster"; -App::$strings["Order in list"] = "Reihenfolge in der Liste"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; -App::$strings["Submit and finish"] = "Absenden und fertigstellen"; -App::$strings["Submit and continue"] = "Absenden und fortfahren"; -App::$strings["Menu:"] = "Menü:"; -App::$strings["Link Target"] = "Ziel des Links"; -App::$strings["Edit menu"] = "Menü bearbeiten"; -App::$strings["Edit element"] = "Bestandteil bearbeiten"; -App::$strings["Drop element"] = "Bestandteil löschen"; -App::$strings["New element"] = "Neues Bestandteil"; -App::$strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; -App::$strings["Add menu element"] = "Menüelement hinzufügen"; -App::$strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; -App::$strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; -App::$strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; -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["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"; @@ -2017,7 +2071,6 @@ 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"; @@ -2025,149 +2078,63 @@ 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["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["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["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["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,6 +267,229 @@ 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/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nombre del bloque" + +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Bloques" + +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Título del bloque" + +#: ../../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/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/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 +#: ../../include/conversation.php:1208 +msgid "Share" +msgstr "Compartir" + +#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 +#: ../../include/page_widgets.php:39 +msgid "View" +msgstr "Ver" + +#: ../../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/Cal.php:69 +msgid "Permissions denied." +msgstr "Permisos denegados." + +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l j F" + +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Enlazar con la entrada en su ubicación original" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Editar el evento" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Crear un evento" + +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 +#: ../../Zotlabs/Module/Photos.php:949 +msgid "Previous" +msgstr "Anterior" + +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Siguiente" + +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Exportar" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importar" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 +#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 +#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 +#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:842 +#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 +#: ../../include/widgets.php:769 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Enviar" + +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Hoy" + +#: ../../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/Channel.php:41 +msgid "Posts and comments" +msgstr "Publicaciones y comentarios" + +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "Solo publicaciones" + +#: ../../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/Chat.php:181 +msgid "Room not found" +msgstr "Sala no encontrada" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Abandonar la sala" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Eliminar esta sala" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Estoy ausente momentáneamente" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Estoy conectado/a" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Añadir esta sala a Marcadores" + +#: ../../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/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/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/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" @@ -419,6 +498,65 @@ msgstr "Ausente" 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." @@ -427,350 +565,317 @@ msgstr "No se ha podido acceder al registro de contacto." msgid "Could not locate selected profile." msgstr "No se ha podido localizar el perfil seleccionado." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "Conexión actualizada." -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../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:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "ahora está conectado/a" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "No" msgstr "No" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "Yes" msgstr "Sí" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../Zotlabs/Module/Connedit.php:411 msgid "Could not access address book record." msgstr "No se pudo acceder al registro en su libreta de direcciones." -#: ../../Zotlabs/Module/Connedit.php:455 +#: ../../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:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 msgid "Unable to set address book parameters." msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "La conexión ha sido eliminada." -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 msgid "View Profile" msgstr "Ver el perfil" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:522 #, php-format msgid "View %s's profile" msgstr "Ver el perfil de %s" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:526 msgid "Refresh Permissions" msgstr "Recargar los permisos" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:529 msgid "Fetch updated permissions" msgstr "Obtener los permisos actualizados" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Recent Activity" msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:536 msgid "View recent posts and comments" msgstr "Ver publicaciones y comentarios recientes" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Desbloquear" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Bloquear" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../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:574 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "This connection is blocked!" msgstr "¡Esta conexión está bloqueada!" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 msgid "Unignore" msgstr "Dejar de ignorar" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignorar" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../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:582 +#: ../../Zotlabs/Module/Connedit.php:552 msgid "This connection is ignored!" msgstr "¡Esta conexión es ignorada!" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Unarchive" msgstr "Desarchivar" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Archive" msgstr "Archivar" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../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:590 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "This connection is archived!" msgstr "¡Esta conexión esta archivada!" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Unhide" msgstr "Mostrar" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../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,121 +891,17 @@ 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/Id.php:13 -msgid "First Name" -msgstr "Nombre" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Apellido" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Sobrenombre o Alias" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nombre completo" - -#: ../../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" @@ -920,12 +921,12 @@ msgstr "Estado:" msgid "Homepage: " msgstr "Página personal:" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 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,322 +1022,38 @@ 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/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/Events.php:25 -msgid "Calendar entries imported." -msgstr "Entradas de calendario importadas." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "No se han encontrado entradas de calendario." - -#: ../../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/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/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/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Evento no encontrado." - -#: ../../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/Events.php:448 -msgid "Edit event title" -msgstr "Editar el título del evento" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Título del evento" - -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obligatorio" - -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Categorías (lista separada por comas)" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Editar la categoría" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Categoría" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Modificar la fecha y hora de comienzo" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Fecha y hora de comienzo" - -#: ../../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 +#: ../../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/Editpost.php:35 -msgid "Item is not editable" -msgstr "El elemento no es editable" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Título (opcional)" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Editar la entrada" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modificar este bloque" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Fotos" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Ningún canal." -#: ../../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/Common.php:43 +msgid "Common connections" +msgstr "Conexiones comunes" -#: ../../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/Common.php:48 +msgid "No connections in common." +msgstr "Ninguna conexión en común." #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1364,7 +1081,7 @@ msgstr "Archivadas" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 +#: ../../include/conversation.php:1535 msgid "New" msgstr "Nuevas" @@ -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,69 +1267,200 @@ 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/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/Events.php:449 +msgid "Edit event title" +msgstr "Editar el título del evento" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Título del evento" + +#: ../../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/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Categorías (lista separada por comas)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Editar la categoría" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Categoría" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Modificar la fecha y hora de comienzo" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Fecha y hora de comienzo" + +#: ../../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/Events.php:458 +msgid "Edit finish date and time" +msgstr "Modificar la fecha y hora de terminación" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Fecha y hora de terminación" + +#: ../../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/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/Events.php:462 +msgid "Edit Description" +msgstr "Editar la descripción" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descripción" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Modificar la dirección" + +#: ../../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/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Compartir este evento" + +#: ../../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/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Configuración de permisos" + +#: ../../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" @@ -1622,184 +1470,112 @@ msgstr "Este sitio no es un servidor de directorio" msgid "This directory server requires an access token" msgstr "El servidor de este directorio necesita un \"token\" de acceso" -#: ../../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/Filer.php:52 +msgid "Save to Folder:" +msgstr "Guardar en carpeta:" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Sala no encontrada" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- seleccionar -" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Abandonar la sala" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Guardar" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Eliminar esta sala" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Estoy ausente momentáneamente" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Estoy conectado/a" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Añadir esta sala a Marcadores" - -#: ../../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/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/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/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: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/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/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -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/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 -msgid "channel sync processed" -msgstr "se ha realizado la sincronización del canal" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "encolado" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "enviado" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "aceptado para el envío" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "actualizado" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "actualización ignorada" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permiso denegado" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "destinatario no encontrado" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "mensaje de correo revocado" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "se ha recibido mensaje duplicado" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "correo enviado" - -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:64 #, 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:78 +msgid "channel sync processed" +msgstr "se ha realizado la sincronización del canal" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "encolado" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "enviado" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "aceptado para el envío" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "actualizado" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "actualización ignorada" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "permiso denegado" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "destinatario no encontrado" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "mensaje de correo revocado" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "se ha recibido mensaje duplicado" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "correo enviado" + +#: ../../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,57 +1629,31 @@ 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/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/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/Help.php:26 msgid "Documentation Search" @@ -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,124 +1674,335 @@ msgstr "Ayuda" msgid "$Projectname Documentation" msgstr "Documentación de $Projectname" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "Permiso denegado" + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "Fichero no encontrado." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "Modificar los permisos del fichero" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "Establecer/editar los permisos" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "Incluir todos los ficheros y subcarpetas" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "Volver a la lista de ficheros" + +#: ../../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: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:163 +msgid "Share this file" +msgstr "Compartir este fichero" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "Mostrar la dirección de este fichero" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "Avisar a sus contactos sobre este fichero" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Aplicaciones (apps)" + #: ../../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/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Su paquete de servicios solo permite %d canales." -#: ../../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/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "No hay nada para importar." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Plantilla no encontrada" +#: ../../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/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nombre del módulo:" +#: ../../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/Pdledit.php:63 -msgid "Layout Help" -msgstr "Ayuda para el diseño de plantillas de página" +#: ../../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/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Compartir contenido desde Firefox a $Projectname" +#: ../../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/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Servicio de compartición de Firefox: activar el proveedor $Projectname " +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "No hay canal. La importación ha fallado" -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "red" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Importación completada." -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../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/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permiso denegado" +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Importar canal" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "Fichero no encontrado." +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "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/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Modificar los permisos del fichero" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Fichero para subir" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" -msgstr "Establecer/editar los permisos" +#: ../../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/Filestorage.php:156 -msgid "Include all files and sub folders" -msgstr "Incluir todos los ficheros y subcarpetas" +#: ../../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/Filestorage.php:157 -msgid "Return to file list" -msgstr "Volver a la lista de ficheros" +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Su antigua dirección de correo electrónico" -#: ../../Zotlabs/Module/Filestorage.php:159 -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/Import.php:543 +msgid "Your old login password" +msgstr "Su antigua contraseña" -#: ../../Zotlabs/Module/Filestorage.php:160 -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/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/Filestorage.php:162 -msgid "Share this file" -msgstr "Compartir este fichero" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Convertir este servidor en mi ubicación primaria" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" -msgstr "Mostrar la dirección de este fichero" +#: ../../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/Filestorage.php:164 -msgid "Notify your contacts about this file" -msgstr "Avisar a sus contactos sobre este fichero" +#: ../../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/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "No ha sido posible encontrar la entrada original." + +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "La entrada vacía ha sido desechada." + +#: ../../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/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/Item.php:1248 +#, 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/Item.php:1255 +#, 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/Layouts.php:181 ../../include/text.php:2267 msgid "Layouts" msgstr "Plantillas" -#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../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/Layouts.php:189 +#: ../../Zotlabs/Module/Layouts.php:187 msgid "Layout Description" msgstr "Descripción de la plantilla" -#: ../../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/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/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "Compartir" - -#: ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Layouts.php:192 msgid "Download PDL file" msgstr "Descargar el fichero PDL" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Nombre" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Apellido" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Sobrenombre o Alias" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nombre completo" + +#: ../../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/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/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:234 +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/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "página web" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloque" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "plantilla" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menú" + +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s elemento instalado" + +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Elemento con instalación fallida: %s" + #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Me gusta/No me gusta" @@ -2077,65 +2038,1180 @@ msgstr "Canal no disponible." msgid "Previous action reversed." msgstr "Acción anterior revocada." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 +#: ../../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/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 +#: ../../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/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 "A %1$s le gusta %3$s de %2$s" -#: ../../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 "A %1$s no le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../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/Like.php:425 +#: ../../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/Like.php:427 +#: ../../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/Like.php:429 +#: ../../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/Like.php:431 +#: ../../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/Like.php:433 +#: ../../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/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "Acción completada." -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "Gracias." +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Importación completada" + +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importar elementos" + +#: ../../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/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Se ha superado el límite máximo de invitaciones." + +#: ../../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/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Únase a nosotros en $Projectname" + +#: ../../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/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Falló el envío del mensaje." + +#: ../../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/Invite.php:102 +msgid "You have no more invitations available" +msgstr "No tiene más invitaciones disponibles" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Enviar invitaciones" + +#: ../../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/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Su mensaje:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Por favor, únase a mi comunidad en $Projectname." + +#: ../../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/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/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/Invite.php:142 +msgid "or visit" +msgstr "o visitar" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Pulse [conectar]" + +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "La información privada remota no está disponible." + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Visible para:" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Dirección no encontrada." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Ha fallado la búsqueda de la dirección." + +#: ../../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/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronización de ubicaciones" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "No encontrada ninguna dirección." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gestionar las direcciones del canal" + +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Dirección" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primario" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Eliminar" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronizar ahora" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Por favor, espere algunos minutos entre operaciones consecutivas." + +#: ../../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/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/Magic.php:71 +msgid "Hub not found." +msgstr "Servidor no encontrado" + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Imposible asociar a un destinatario." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Imposible comunicar con el canal solicitado." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "No se puede verificar el canal solicitado." + +#: ../../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/Mail.php:143 +msgid "Messages" +msgstr "Mensajes" + +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Mensaje revocado." + +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversación eliminada." + +#: ../../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/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "El canal solicitado no existe en esta red" + +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Enviar un mensaje privado" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "Para:" + +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Asunto:" + +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Adjuntar fichero" + +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Enviar" + +#: ../../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/Mail.php:340 +msgid "Delete message" +msgstr "Borrar mensaje" + +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Informe de transmisión" + +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Revocar el mensaje" + +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "El mensaje ha sido revocado." + +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Eliminar conversación" + +#: ../../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/Mail.php:367 +msgid "Send Reply" +msgstr "Responder" + +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Su mensaje para %s (%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 "Ha creado %1$.0f de %2$.0f canales permitidos." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crear un nuevo canal" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Administración de canales" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canal actual" + +#: ../../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/Manage.php:168 +msgid "Default Channel" +msgstr "Canal principal" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Convertir en predeterminado" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d mensajes nuevos" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuevas isolicitudes de conexión" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canal delegado" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "No se ha encontrado una cuenta válida." + +#: ../../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/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Usuario del sitio (%s)" + +#: ../../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/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/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Restablecer la contraseña" + +#: ../../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/Lostpass.php:92 +msgid "Your new password is" +msgstr "Su nueva contraseña es" + +#: ../../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/Lostpass.php:94 +msgid "click here to login" +msgstr "pulse aquí para conectarse" + +#: ../../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/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Su contraseña en %s ha sido cambiada" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "¿Ha olvidado su contraseña?" + +#: ../../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/Lostpass.php:129 +msgid "Email Address" +msgstr "Dirección de correo electrónico" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reiniciar" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "No se puede actualizar el menú." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "No se puede crear el menú." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nombre del menú" + +#: ../../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/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Título del menú" + +#: ../../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/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permitir marcadores" + +#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Enviar y proceder" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menús" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Marcadores permitidos" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Borrar este menú" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Editar los contenidos del menú" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modificar este menú" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "El menú no puede ser eliminado." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menú no encontrado" + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modificar el menú" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Añadir o quitar entradas en este menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nombre del menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Debe ser único, solo será visible para usted" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Título del menú" + +#: ../../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/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permitir marcadores" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "No encontrado." + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s está %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Estado de ánimo" + +#: ../../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/Match.php:26 +msgid "Profile Match" +msgstr "Perfil compatible" + +#: ../../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/Match.php:67 +msgid "is interested in:" +msgstr "está interesado en:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "No se han encontrado perfiles compatibles" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "No se encuentra el grupo" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "No se encuentra el canal" + +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "foro" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Buscar resultados para:" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "El grupo de canales está vacío" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Grupo de canales: " + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Conexión no válida." + +#: ../../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/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notificaciones del sistema" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Imposible crear el elemento." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "No es posible actualizar el elemento del menú." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "No es posible añadir el elemento al menú" + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permisos del elemento del menú" + +#: ../../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/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nombre del enlace" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Destino del enlace o submenú" + +#: ../../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/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/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Abrir el enlace en una nueva ventana" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Orden en la lista" + +#: ../../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/Mitem.php:161 +msgid "Submit and finish" +msgstr "Enviar y terminar" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Enviar y continuar" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menú:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Destino del enlace" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Editar menú" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Editar el elemento" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Eliminar el elemento" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nuevo elemento" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Modificar el contenedor del menú" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Añadir un elemento al menú" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Eliminar este elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Modificar este elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Este elemento del menú no se ha encontrado" + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Este elemento del menú ha sido borrado" + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Este elemento del menú no puede ser borrado." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Editar elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Texto del enlace" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nombre o descripción" + +#: ../../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/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Elija un alias corto" + +#: ../../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 "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%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/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/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Leer más sobre los roles" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crear un canal" + +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canal es 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/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "O importar un canal existente desde otro lugar." + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Petición inválida del identificador." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Descartar" + +#: ../../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/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/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Fotos del perfil" + +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Álbum no encontrado." + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Borrar álbum" + +#: ../../Zotlabs/Module/Photos.php:153 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "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/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Borrar foto" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "No hay fotos seleccionadas" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "El acceso a este elemento está restringido." + +#: ../../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/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB de almacenamiento de fotos utilizado." + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Subir fotos" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Introducir un nombre de álbum" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "o seleccionar uno existente (doble click)" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Crear un mensaje de estado para esta subida" + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Título (opcional):" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Descripción (opcional):" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "El nombre del álbum no ha podido ser descifrado" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Fotos de contacto" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Mostrar lo más reciente primero" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Mostrar lo más antiguo primero" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Ver foto" + +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Editar álbum" + +#: ../../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/Photos.php:872 +msgid "Photo not available" +msgstr "Foto no disponible" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Usar como foto del perfil" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Usar como imagen de portada del perfil" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Foto privada" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Ver tamaño completo" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Eliminar" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Editar foto" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Girar CW (a la derecha)" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Girar CCW (a la izquierda)" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Introducir un nuevo nombre de álbum" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "o seleccionar uno (doble click) existente" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Título" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Añadir una etiqueta" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Marcar como \"solo para adultos\" en el álbum" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Me gusta (cambiar)" + +#: ../../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/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Espere por favor" + +#: ../../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/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Comentar" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Me gusta" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "No me gusta" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "De acuerdo" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "En desacuerdo" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Abstención" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Participaré" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "No participaré" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Quizá participe" + +#: ../../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/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/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/Photos.php:1235 +msgid "Photo Tools" +msgstr "Gestión de las fotos" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "En esta foto:" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Mapa" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Me gusta" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "No me gusta" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Cerrar" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Ver álbum" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Fotos recientes" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "le ha enviado un mensaje privado" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "añadió este canal a sus conexiones" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[hoy]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "publicó un evento" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "No se puede encontrar su servidor." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Enviado con éxito." + +#: ../../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/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "El acceso ha fallado." + +#: ../../Zotlabs/Module/Page.php:133 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor de configuración" + +#: ../../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/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/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Toques y otras cosas" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Dar un toque a alguien" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Toque/Incitación" + +#: ../../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/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Elegir qué desea enviar al destinatario" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Convertir en privado este envío" + +#: ../../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/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -2205,11 +3281,6 @@ msgstr "Página personal" msgid "Interests" msgstr "Intereses" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Dirección" - #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Perfil actualizado." @@ -2227,7 +3298,7 @@ msgid "View this profile" msgstr "Ver este perfil" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 +#: ../../include/channel.php:959 msgid "Edit visibility" msgstr "Editar visibilidad" @@ -2239,7 +3310,7 @@ msgstr "Gestión del perfil" msgid "Change cover photo" msgstr "Cambiar la imagen de portada del perfil" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 msgid "Change profile photo" msgstr "Cambiar la foto del perfil" @@ -2259,8 +3330,8 @@ msgstr "Eliminar este perfil" msgid "Add profile things" msgstr "Añadir cosas al perfil" -#: ../../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:1526 msgid "Personal" msgstr "Personales" @@ -2400,1097 +3471,119 @@ msgstr "Información de contacto y redes sociales" msgid "My other channels" msgstr "Mis otros canales" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 msgid "Profile Image" msgstr "Imagen del perfil" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 +#: ../../include/channel.php:937 msgid "Edit Profiles" msgstr "Editar perfiles" -#: ../../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/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "No hay nada para importar." - -#: ../../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/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "El fichero importado está vacío." - -#: ../../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/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/Import.php:163 -msgid "No channel. Import failed." -msgstr "No hay canal. La importación ha fallado" - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Importación completada." - -#: ../../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/Import.php:547 -msgid "Import Channel" -msgstr "Importar canal" - -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Profile_photo.php:179 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." +"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/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Fichero para subir" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Subir foto de perfil" -#: ../../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/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identificador del perfil no válido" -#: ../../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/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidad del perfil" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Su antigua dirección de correo electrónico" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Perfil" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Su antigua contraseña" +#: ../../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/Import.php:554 +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible para" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Servidores públicos" + +#: ../../Zotlabs/Module/Pubsites.php:25 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." +"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/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Convertir este servidor en mi ubicación primaria" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Dirección del hub" -#: ../../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/Pubsites.php:31 +msgid "Access Type" +msgstr "Tipo de acceso" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "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/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Normas de registro" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Estadísticas" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Valoraciones" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Valorar" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Sitio web:" + +#: ../../Zotlabs/Module/Rate.php:163 #, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "No ha sido posible encontrar la entrada original." +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Valoración (esta información es pública)" -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "La entrada vacía ha sido desechada." +#: ../../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/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "Contenido de tipo ejecutable no permitido en este canal." +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Ninguna valoración" -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Se ha suprimido la entrada duplicada." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Valoración:" -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Error del sistema. La entrada no se ha podido salvar." +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Sitio web:" -#: ../../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/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/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/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/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/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Álbum no encontrado." - -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Borrar álbum" - -#: ../../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/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Borrar foto" - -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "No hay fotos seleccionadas" - -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." - -#: ../../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/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB de almacenamiento de fotos utilizado." - -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Subir fotos" - -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Introducir un nombre de álbum" - -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o seleccionar uno existente (doble click)" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Crear un mensaje de estado para esta subida" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Título (opcional):" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descripción (opcional):" - -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "El nombre del álbum no ha podido ser descifrado" - -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Fotos de contacto" - -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Mostrar lo más reciente primero" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Mostrar lo más antiguo primero" - -#: ../../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/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Editar álbum" - -#: ../../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/Photos.php:870 -msgid "Photo not available" -msgstr "Foto no disponible" - -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Usar como foto del perfil" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Usar como imagen de portada del perfil" - -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Foto privada" - -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Ver tamaño completo" - -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Eliminar" - -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Editar foto" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Girar CW (a la derecha)" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Girar CCW (a la izquierda)" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Introducir un nuevo nombre de álbum" - -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "o seleccionar uno (doble click) existente" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Título" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Añadir una etiqueta" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" - -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Marcar como \"solo para adultos\" en el álbum" - -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Me gusta (cambiar)" - -#: ../../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/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Espere por favor" - -#: ../../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/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/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "De acuerdo" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "En desacuerdo" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Abstención" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Participaré" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "No participaré" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Quizá participe" - -#: ../../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/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/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/Photos.php:1233 -msgid "Photo Tools" -msgstr "Gestión de las fotos" - -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "En esta foto:" - -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Mapa" - -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Me gusta" - -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "No me gusta" - -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Cerrar" - -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Ver álbum" - -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Fotos recientes" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "La información privada remota no está disponible." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visible para:" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importación completada" - -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importar elementos" - -#: ../../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/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Se ha superado el límite máximo de invitaciones." - -#: ../../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/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Únase a nosotros en $Projectname" - -#: ../../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/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Falló el envío del mensaje." - -#: ../../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/Invite.php:102 -msgid "You have no more invitations available" -msgstr "No tiene más invitaciones disponibles" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Enviar invitaciones" - -#: ../../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/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Su mensaje:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Por favor, únase a mi comunidad en $Projectname." - -#: ../../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/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/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/Invite.php:142 -msgid "or visit" -msgstr "o visitar" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Pulse [conectar]" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Dirección no encontrada." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Ha fallado la búsqueda de la dirección." - -#: ../../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/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronización de ubicaciones" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "No encontrada ninguna dirección." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Gestionar las direcciones del canal" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primario" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Eliminar" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronizar ahora" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Por favor, espere algunos minutos entre operaciones consecutivas." - -#: ../../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/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/Magic.php:71 -msgid "Hub not found." -msgstr "Servidor no encontrado" - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Imposible asociar a un destinatario." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Imposible comunicar con el canal solicitado." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "No se puede verificar el canal solicitado." - -#: ../../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/Mail.php:135 -msgid "Messages" -msgstr "Mensajes" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Mensaje revocado." - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversación eliminada." - -#: ../../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/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "El canal solicitado no existe en esta red" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Enviar un mensaje privado" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "Para:" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Asunto:" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Adjuntar fichero" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Enviar" - -#: ../../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/Mail.php:332 -msgid "Delete message" -msgstr "Borrar mensaje" - -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Informe de transmisión" - -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Revocar el mensaje" - -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "El mensaje ha sido revocado." - -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Eliminar conversación" - -#: ../../Zotlabs/Module/Mail.php:355 -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/Mail.php:359 -msgid "Send Reply" -msgstr "Responder" - -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Su mensaje para %s (%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 "Ha creado %1$.0f de %2$.0f canales permitidos." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crear un nuevo 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/Manage.php:165 -msgid "Current Channel" -msgstr "Canal actual" - -#: ../../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/Manage.php:168 -msgid "Default Channel" -msgstr "Canal principal" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Convertir en predeterminado" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d mensajes nuevos" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nuevas isolicitudes de conexión" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canal delegado" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "No se puede actualizar el menú." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "No se puede crear el menú." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nombre del menú" - -#: ../../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/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Título del menú" - -#: ../../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/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permitir marcadores" - -#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Enviar y proceder" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menús" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Marcadores permitidos" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Borrar este menú" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Editar los contenidos del menú" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modificar este menú" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "El menú no puede ser eliminado." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menú no encontrado" - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modificar el menú" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Añadir o quitar entradas en este menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nombre del menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Debe ser único, solo será visible para usted" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Título del menú" - -#: ../../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/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permitir marcadores" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "No encontrado." - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "No se ha encontrado una cuenta válida." - -#: ../../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/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Usuario del sitio (%s)" - -#: ../../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/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/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Restablecer la contraseña" - -#: ../../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/Lostpass.php:92 -msgid "Your new password is" -msgstr "Su nueva contraseña es" - -#: ../../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/Lostpass.php:94 -msgid "click here to login" -msgstr "pulse aquí para conectarse" - -#: ../../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/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Su contraseña en %s ha sido cambiada" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "¿Ha olvidado su contraseña?" - -#: ../../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/Lostpass.php:129 -msgid "Email Address" -msgstr "Dirección de correo electrónico" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reiniciar" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s está %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Estado de ánimo" - -#: ../../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/Network.php:94 -msgid "No such group" -msgstr "No se encuentra el grupo" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "No se encuentra el canal" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "foro" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Buscar resultados para:" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "El grupo de canales está vacío" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Grupo de canales: " - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Conexión no válida." - -#: ../../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/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notificaciones del sistema" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Perfil compatible" - -#: ../../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/Match.php:67 -msgid "is interested in:" -msgstr "está interesado en:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "No se han encontrado perfiles compatibles" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Publicaciones y comentarios" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo publicaciones" - -#: ../../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/Mitem.php:52 -msgid "Unable to create element." -msgstr "Imposible crear el elemento." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "No es posible actualizar el elemento del menú." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "No es posible añadir el elemento al menú" - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permisos del elemento del menú" - -#: ../../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/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nombre del enlace" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Destino del enlace o submenú" - -#: ../../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/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/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Abrir el enlace en una nueva ventana" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Orden en la lista" - -#: ../../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/Mitem.php:161 -msgid "Submit and finish" -msgstr "Enviar y terminar" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Enviar y continuar" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menú:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Destino del enlace" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Editar menú" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Editar el elemento" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Eliminar el elemento" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nuevo elemento" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Modificar el contenedor del menú" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Añadir un elemento al menú" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Eliminar este elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Modificar este elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Este elemento del menú no se ha encontrado" - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Este elemento del menú ha sido borrado" - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Este elemento del menú no puede ser borrado." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Editar elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Texto del enlace" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Descripción:" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3577,11 +3670,11 @@ msgstr "Versión del repositorio (dev)" msgid "Site settings updated." msgstr "Ajustes del sitio actualizados." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 msgid "Default" msgstr "Predeterminado" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 msgid "mobile" msgstr "móvil" @@ -3613,7 +3706,7 @@ msgstr "Mi sitio es un servicio gratuito" 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:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 msgid "Site" msgstr "Sitio" @@ -3901,12 +3994,12 @@ msgid "0 for no expiration of imported content" msgstr "0 para que no caduque el contenido importado" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "Off" msgstr "Desactivado" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "On" msgstr "Activado" @@ -3963,7 +4056,7 @@ msgid "" "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:756 ../../include/widgets.php:1479 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 msgid "Security" msgstr "Seguridad" @@ -4131,7 +4224,7 @@ 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 +#: ../../include/widgets.php:1383 msgid "Accounts" msgstr "Cuentas" @@ -4237,7 +4330,7 @@ msgstr "Código permitido al canal '%s'" msgid "Channel '%s' code disallowed" msgstr "Código no permitido al canal '%s'" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 msgid "Channels" msgstr "Canales" @@ -4257,7 +4350,7 @@ msgstr "Permitir código" msgid "Disallow Code" msgstr "No permitir código" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 msgid "Channel" msgstr "Canal" @@ -4296,7 +4389,7 @@ msgid "Enable" msgstr "Activar" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1387 msgid "Plugins" msgstr "Extensiones (plugins)" @@ -4305,8 +4398,8 @@ 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 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Ajustes" @@ -4362,7 +4455,7 @@ msgstr "Descargar el repositorio" msgid "Install new repo" msgstr "Instalar un nuevo repositorio" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 msgid "Install" msgstr "Instalar" @@ -4378,8 +4471,8 @@ msgstr "Repositorios de los plugins instalados" 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 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 msgid "Update" msgstr "Actualizar" @@ -4396,7 +4489,7 @@ msgid "Screenshot" msgstr "Instantánea de pantalla" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1388 msgid "Themes" msgstr "Temas" @@ -4412,8 +4505,8 @@ msgstr "[No soportado]" msgid "Log settings updated." msgstr "Actualizado el informe de configuraciones." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 msgid "Logs" msgstr "Informes" @@ -4479,7 +4572,7 @@ msgstr "Definición del campo no encontrada" msgid "Edit Profile Field" msgstr "Modificar el campo del perfil" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 msgid "Profile Fields" msgstr "Campos del perfil" @@ -4507,384 +4600,57 @@ msgstr "Campos personalizados" msgid "Create Custom Field" msgstr "Crear un campo personalizado" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nombre o descripción" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "Aplicación instalada." -#: ../../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/Appman.php:46 +msgid "Malformed app." +msgstr "Aplicación con errores" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Elija un alias corto" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Código incorporado" -#: ../../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 "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modificar la aplicación" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Clase de canal y privacidad" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crear una aplicación" -#: ../../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/Appman.php:115 +msgid "Name of app" +msgstr "Nombre de la aplicación" -#: ../../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/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Dirección (URL) de la aplicación" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crear un canal" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Dirección del icono" -#: ../../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/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - opcional" -#: ../../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/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorías (opcional, lista separada por comas)" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "le ha enviado un mensaje privado" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versión" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "añadió este canal a sus conexiones" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Precio de la aplicación" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[hoy]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "publicó un evento" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Petición inválida del identificador." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Descartar" - -#: ../../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/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Toques y otras cosas" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Dar un toque a alguien" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Toque/Incitación" - -#: ../../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/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Elegir qué desea enviar al destinatario" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Convertir en privado este envío" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "No se puede encontrar su servidor." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Enviado con éxito." - -#: ../../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/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "El acceso ha fallado." - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identificador del perfil no válido" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidad del perfil" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Perfil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Pulsar en un contacto para añadirlo o eliminarlo." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible para" - -#: ../../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/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor de configuración" - -#: ../../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/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" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versión %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:" - -#: ../../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/Siteinfo.php:49 -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:" - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Última actualización en segundo plano:" - -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Carga media actual:" - -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Corriendo en el sitio web" - -#: ../../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/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Informes de errores e incidencias: por favor visite" - -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problemas en $projectname" - -#: ../../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/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Administradores del sitio" - -#: ../../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/Rmagic.php:44 -msgid "The error message was:" -msgstr "El mensaje de error fue:" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Falló la autenticación." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Acceso desde su 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/Rmagic.php:90 -msgid "Authenticate" -msgstr "Acceder" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Servidores públicos" - -#: ../../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 "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/Pubsites.php:31 -msgid "Hub URL" -msgstr "Dirección del hub" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipo de acceso" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Normas de registro" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Estadísticas" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Valoraciones" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Valorar" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -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." - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Subir foto de perfil" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nombre del bloque" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Bloques" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Título del bloque" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Sitio web:" - -#: ../../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/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Valoración (esta información es pública)" - -#: ../../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/Ratings.php:73 -msgid "No ratings" -msgstr "Ninguna valoración" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Valoración:" - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Sitio web:" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Descripción:" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Aplicaciones (apps)" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Título (opcional)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modificar este bloque" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Ningún canal." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Conexiones comunes" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Ninguna conexión en común." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Dirección (URL) donde adquirir la aplicación" #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4989,154 +4755,120 @@ msgstr "sí" msgid "Membership on this site is by invitation only." msgstr "Para registrarse en este sitio es necesaria una invitación." -#: ../../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 "Registrarse" -#: ../../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 "Crear su primer canal" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Por favor, inicie sesión." -#: ../../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 "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/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "Eliminar esta cuenta" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "ATENCIÓN:" -#: ../../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 "Esta cuenta y todos sus canales van a ser eliminados de la red." -#: ../../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 "¡Esta acción tiene carácter definitivo y no se puede deshacer!" -#: ../../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 "Por favor, introduzca su contraseña para su verificación:" -#: ../../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 "Remover esta cuenta, todos sus canales y clones de la red" -#: ../../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 "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Remove Account" msgstr "Eliminar cuenta" -#: ../../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 "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "Eliminar este canal" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../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/Removeme.php:63 +#: ../../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/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 "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 msgid "Remove Channel" msgstr "Eliminar el canal" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exportar el canal" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Rmagic.php:44 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." +"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/Uexport.php:58 -msgid "Export Content" -msgstr "Exportar contenidos" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "El mensaje de error fue:" -#: ../../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/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Falló la autenticación." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporta sus publicaciones de un año dado." +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Acceso desde su servidor" -#: ../../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/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/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/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/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/Rmagic.php:90 +msgid "Authenticate" +msgstr "Acceder" #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -5152,652 +4884,609 @@ msgstr "Resultados de la búsqueda para: %s" msgid "No service class restrictions found." msgstr "No se han encontrado restricciones sobre esta clase de servicio." -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:69 msgid "Name is required" msgstr "El nombre es obligatorio" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:73 msgid "Key and Secret are required" msgstr "\"Key\" y \"Secret\" son obligatorios" -#: ../../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 "Correo electrónico no válido." -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../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:286 +#: ../../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:303 +#: ../../Zotlabs/Module/Settings.php:254 msgid "Password verification failed." msgstr "La comprobación de la contraseña ha fallado." -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../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:314 +#: ../../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:328 +#: ../../Zotlabs/Module/Settings.php:279 msgid "Password changed." msgstr "Contraseña cambiada." -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../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:579 +#: ../../Zotlabs/Module/Settings.php:525 msgid "Settings updated." msgstr "Ajustes actualizados." -#: ../../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 "Añadir aplicación" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:592 msgid "Name of application" msgstr "Nombre de la aplicación" -#: ../../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 "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 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 "Redirigir" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../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:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 msgid "Icon url" msgstr "Dirección del icono" -#: ../../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 "Opcional" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:607 msgid "Application not found." msgstr "Aplicación no encontrada." -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:650 msgid "Connected Apps" msgstr "Aplicaciones (apps) conectadas" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:654 msgid "Client key starts with" msgstr "La \"client key\" empieza por" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:655 msgid "No name" msgstr "Sin nombre" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:656 msgid "Remove authorization" msgstr "Eliminar autorización" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../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:730 +#: ../../Zotlabs/Module/Settings.php:676 msgid "Feature/Addon Settings" msgstr "Ajustes de los complementos" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:699 msgid "Account Settings" msgstr "Configuración de la cuenta" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:700 msgid "Current Password" msgstr "Contraseña actual" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:701 msgid "Enter New Password" msgstr "Escribir una nueva contraseña" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Confirm New Password" msgstr "Confirmar la nueva contraseña" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../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:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 msgid "Email Address:" msgstr "Dirección de correo electrónico:" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../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: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 "Funcionalidades" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Connector Settings" msgstr "Configuración del conector" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../Zotlabs/Module/Settings.php:792 msgid "No special theme for mobile devices" msgstr "Sin tema especial para dispositivos móviles" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:795 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:837 msgid "Display Settings" msgstr "Ajustes de visualización" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:838 msgid "Theme Settings" msgstr "Ajustes del tema" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:839 msgid "Custom Theme Settings" msgstr "Ajustes personalizados del tema" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:840 msgid "Content Settings" msgstr "Ajustes del contenido" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:846 msgid "Display Theme:" msgstr "Tema gráfico del perfil:" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:847 msgid "Mobile Theme:" msgstr "Tema para el móvil:" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../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:949 +#: ../../Zotlabs/Module/Settings.php:848 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/Settings.php:950 +#: ../../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:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Update browser every xx seconds" msgstr "Actualizar navegador cada xx segundos" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../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:952 +#: ../../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:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum of 100 items" msgstr "Máximo de 100 elementos" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:852 msgid "Show emoticons (smilies) as images" msgstr "Mostrar emoticonos (smilies) como imágenes" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../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:955 +#: ../../Zotlabs/Module/Settings.php:854 msgid "System Page Layout Editor - (advanced)" msgstr "Editor de plantilla de página del sistema - (avanzado)" -#: ../../Zotlabs/Module/Settings.php:958 +#: ../../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/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 msgid "(comments displayed separately)" msgstr "(comentarios mostrados de forma separada)" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:858 msgid "Use blog/list mode on grid page" msgstr "Mostrar mi red en modo blog" -#: ../../Zotlabs/Module/Settings.php:960 +#: ../../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/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 "Pulsar para expandir el contenido que exceda de esta altura" -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../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/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:894 msgid "Nobody except yourself" msgstr "Nadie excepto usted" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:895 msgid "Only those you specifically allow" msgstr "Solo aquellos a los que usted permita explícitamente" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:896 msgid "Approved connections" msgstr "Conexiones aprobadas" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:897 msgid "Any connections" msgstr "Cualquier conexión" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:898 msgid "Anybody on this website" msgstr "Cualquiera en este sitio web" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:899 msgid "Anybody in this network" msgstr "Cualquiera en esta red" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:900 msgid "Anybody authenticated" msgstr "Cualquiera que esté autenticado" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:901 msgid "Anybody on the internet" msgstr "Cualquiera en internet" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../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/Settings.php:1076 +#: ../../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/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Your channel address is" msgstr "Su dirección de canal es" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1032 msgid "Channel Settings" msgstr "Ajustes del canal" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1039 msgid "Basic Settings" msgstr "Configuración básica" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 msgid "Full Name:" msgstr "Nombre completo:" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1042 msgid "Your Timezone:" msgstr "Su huso horario:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Default Post Location:" msgstr "Localización geográfica predeterminada para sus publicaciones:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../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/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1044 msgid "Use Browser Location:" msgstr "Usar la localización geográfica del navegador:" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "Adult Content" msgstr "Contenido solo para adultos" -#: ../../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 "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" -#: ../../Zotlabs/Module/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1048 msgid "Security and Privacy Settings" msgstr "Configuración de seguridad y privacidad" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../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/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Hide my online presence" msgstr "Ocultar mi presencia en línea" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../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/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Simple Privacy Settings:" msgstr "Configuración de privacidad sencilla:" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../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/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 "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" -#: ../../Zotlabs/Module/Settings.php:1153 +#: ../../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/Settings.php:1154 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "Blocked - default blocked to/from everybody" msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "Allow others to tag your posts" msgstr "Permitir a otros etiquetar sus publicaciones" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 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/Settings.php:1158 +#: ../../Zotlabs/Module/Settings.php:1063 msgid "Advanced Privacy Settings" msgstr "Configuración de privacidad avanzada" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../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/Settings.php:1160 +#: ../../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:1160 +#: ../../Zotlabs/Module/Settings.php:1065 #, php-format msgid "This website expires after %d days." msgstr "Este sitio web caduca después de %d días." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "This website does not expire imported content." msgstr "Este sitio web no caduca el contenido importado." -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../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/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "Maximum Friend Requests/Day:" msgstr "Máximo de solicitudes de amistad por día:" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "May reduce spam activity" msgstr "Podría reducir la actividad de spam" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1067 msgid "Default Post and Publish Permissions" msgstr "Permisos predeterminados de entradas y publicaciones" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../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/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1072 msgid "Channel permissions category:" msgstr "Categoría de permisos del canal:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../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/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Useful to reduce spamming" msgstr "Útil para reducir el envío de correo no deseado" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1081 msgid "Notification Settings" msgstr "Configuración de las notificaciones" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1082 msgid "By default post a status message when:" msgstr "Por defecto, enviar un mensaje de estado cuando:" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1083 msgid "accepting a friend request" msgstr "Acepte una solicitud de amistad" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1084 msgid "joining a forum/community" msgstr "al unirse a un foro o comunidad" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "making an interesting profile change" msgstr "Realice un cambio interesante en su perfil" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1086 msgid "Send a notification email when:" msgstr "Enviar una notificación por correo electrónico cuando:" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1087 msgid "You receive a connection request" msgstr "Reciba una solicitud de conexión" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1088 msgid "Your connections are confirmed" msgstr "Sus conexiones hayan sido confirmadas" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../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/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1090 msgid "Someone writes a followup comment" msgstr "Alguien escriba un comentario sobre sus publicaciones" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1091 msgid "You receive a private message" msgstr "Reciba un mensaje privado" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1092 msgid "You receive a friend suggestion" msgstr "Reciba una sugerencia de amistad" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1093 msgid "You are tagged in a post" msgstr "Usted sea etiquetado en una publicación" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../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/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1097 msgid "Show visual notifications including:" msgstr "Mostrar notificaciones visuales que incluyan:" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1099 msgid "Unseen grid activity" msgstr "Nueva actividad en la red" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1100 msgid "Unseen channel activity" msgstr "Actividad no vista en el canal" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1101 msgid "Unseen private messages" msgstr "Mensajes privados no leídos" -#: ../../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 "Recomendado" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1102 msgid "Upcoming events" msgstr "Próximos eventos" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1103 msgid "Events today" msgstr "Eventos de hoy" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Upcoming birthdays" msgstr "Próximos cumpleaños" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Not available in all themes" msgstr "No disponible en todos los temas" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1105 msgid "System (personal) notifications" msgstr "Notificaciones del sistema (personales)" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "System info messages" msgstr "Mensajes de información del sistema" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1107 msgid "System critical alerts" msgstr "Alertas críticas del sistema" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "New connections" msgstr "Nuevas conexiones" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1109 msgid "System Registrations" msgstr "Registros del sistema" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1110 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:1207 +#: ../../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:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Must be greater than 0" msgstr "Debe ser mayor que 0" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../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:1210 +#: ../../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/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1118 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!." -#: ../../Zotlabs/Module/Settings.php:1214 +#: ../../Zotlabs/Module/Settings.php:1119 msgid "Miscellaneous Settings" msgstr "Ajustes diversos" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "Default photo upload folder" msgstr "Carpeta por defecto de las fotos subidas" -#: ../../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 - año en curso, %m - mes actual" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "Default file upload folder" msgstr "Carpeta por defecto de los archivos subidos" -#: ../../Zotlabs/Module/Settings.php:1218 +#: ../../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/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Remove this channel." msgstr "Eliminar este canal." -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1126 msgid "Firefox Share $Projectname provider" msgstr "Servicio de compartición de Firefox: proveedor $Projectname" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Start calendar week on monday" msgstr "Comenzar el calendario semanal por el lunes" @@ -5830,7 +5519,7 @@ msgid "" msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." #: ../../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 "Por favor, lea el fichero \"install/INSTALL.txt\"." @@ -6030,200 +5719,199 @@ msgid "mb_string PHP module" msgstr "módulo PHP mb_string" #: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "módulo PHP mcrypt " + +#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "módulo PHP xml" -#: ../../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 "módulo 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 "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." -#: ../../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 "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../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/Setup.php:518 +#: ../../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/Setup.php:522 +#: ../../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/Setup.php:526 +#: ../../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/Setup.php:530 +#: ../../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/Setup.php:534 +#: ../../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/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/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 "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." -#: ../../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 "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/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 "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/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 "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/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:563 msgid ".htconfig.php is writable" msgstr ".htconfig.php tiene permisos de escritura" -#: ../../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 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/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 "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal." -#: ../../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 "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/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: 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/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:583 #, php-format msgid "%s is writable" msgstr "%s tiene permisos de escritura" -#: ../../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 "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/Setup.php:598 +#: ../../Zotlabs/Module/Setup.php:603 msgid "store is writable" msgstr "\"store\" tiene permisos de escritura" -#: ../../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 "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." -#: ../../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 "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/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 "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." -#: ../../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 "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/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 "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../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/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 "validación del certificado 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 "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" -#: ../../Zotlabs/Module/Setup.php:650 +#: ../../Zotlabs/Module/Setup.php:652 msgid "Url rewrite is working" msgstr "La reescritura de las direcciones funciona correctamente" -#: ../../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 "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/Setup.php:683 +#: ../../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/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:719 msgid "

What next

" msgstr "

Siguiente paso

" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:720 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6245,62 +5933,64 @@ msgstr "Eliminar todos los ficheros" msgid "Remove this file" msgstr "Eliminar este fichero" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Elemento actualizado." - -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Guardar objeto: ha fallado" - -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Elemento añadido" - -#: ../../Zotlabs/Module/Thing.php:196 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +msgid "Version %s" +msgstr "Versión %s" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Mostrar elemento" +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "elemento no encontrado." +#: ../../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/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Editar elemento" +#: ../../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/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Seleccionar un perfil" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Etiqueta:" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Publicar una actividad" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Última actualización en segundo plano:" -#: ../../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/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Carga media actual:" -#: ../../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/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Corriendo en el sitio web" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "Dirección del elemento (opcional)" +#: ../../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/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/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Informes de errores e incidencias: por favor visite" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Añadir alguna cosa a su perfil" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "Problemas en $projectname" + +#: ../../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/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Administradores del sitio" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6318,8 +6008,8 @@ msgstr "Fuente actualizada." 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 "Orígenes de los contenidos del canal" @@ -6395,12 +6085,12 @@ msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y msgid "Ignore/Hide" msgstr "Ignorar/Ocultar" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 msgid "post" msgstr "la entrada" -#: ../../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 "el comentario" @@ -6421,110 +6111,131 @@ msgstr "Eliminar etiqueta del elemento." msgid "Select a tag to remove: " msgstr "Seleccionar una etiqueta para eliminar:" -#: ../../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/Thing.php:114 +msgid "Thing updated" +msgstr "Elemento actualizado." -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Acciones" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Guardar objeto: ha fallado" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Vínculo de la página" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Elemento añadido" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Título de página" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostrar elemento" -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:108 ../../include/conversation.php:1710 -#: ../../include/conversation.php:1713 ../../include/features.php:55 -msgid "Wiki" -msgstr "Wiki" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "elemento no encontrado." -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "Entorno de edición" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Editar elemento" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Seleccionar un perfil" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Publicar una actividad" + +#: ../../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/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Nombre del elemento, p. ej.:. \"algo\"" + +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "Dirección del elemento (opcional)" + +#: ../../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/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Añadir alguna cosa a su perfil" + +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exportar el canal" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "" +"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/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Comparación de revisiones" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exportar contenidos" -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Revertir" +#: ../../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/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Nombre de su nuevo wiki:" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporta sus publicaciones de un año dado." -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Nombre de la nueva página:" +#: ../../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/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Nuevo nombre:" +#: ../../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/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Incluir una imagen de los álbumes de fotos" +#: ../../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/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "Incluir una imagen de sus álbumes" +#: ../../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/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 "Elegir imágenes para incluir" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Elegir un álbum" - -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Elegir un álbum diferente..." - -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "Error al obtener la lista de álbumes" - -#: ../../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/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Error al obtener el álbum" - -#: ../../Zotlabs/Module/Viewconnections.php:65 +#: ../../Zotlabs/Module/Viewconnections.php:62 msgid "No connections." msgstr "Sin conexiones." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visitar el perfil de %s [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:104 msgid "View Connections" msgstr "Ver conexiones" @@ -6532,23 +6243,22 @@ msgstr "Ver conexiones" msgid "Source of Item" msgstr "Origen del elemento" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autorizar una conexión de aplicación" +#: ../../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/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/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Acciones" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Por favor inicie sesión para continuar." +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Vínculo de la página" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Título de página" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6558,6 +6268,92 @@ msgstr "Búsqueda de canales" msgid "Lookup xchan beginning with (or webbie): " msgstr "Buscar un canal (o un \"webbie\") que comience por:" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Administrador del sitio" + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "Informe de errores" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "Ver los marcadores" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "Mis salas de chat" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "Servicio de compartición de Firefox" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "Diagnóstico remoto" + +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Sugerir canales" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Iniciar sesión" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Red" + +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Mi canal" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Eventos" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Directorio" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Correo" + +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Probar" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Sugerir" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Canal aleatorio" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Invitar" + +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Funcionalidades" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Publicación" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Comprar" + #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Sala de chat sin nombre" @@ -6578,19 +6374,19 @@ msgstr "Sala no encontrada." msgid "Room is full" msgstr "La sala está llena." -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 msgid "$Projectname Notification" msgstr "Notificación de $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 msgid "Thank You," msgstr "Gracias," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format msgid "%s Administrator" msgstr "%s Administrador" @@ -6783,97 +6579,11 @@ msgstr "ha creado una nueva entrada" msgid "commented on %s's post" msgstr "ha comentado la entrada de %s" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Administrador del sitio" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Informe de errores" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Ver los marcadores" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Mis salas de chat" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Servicio de compartición de Firefox" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnóstico remoto" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Sugerir canales" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Iniciar sesión" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Red" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Mi canal" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Eventos" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Directorio" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Correo" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Probar" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Sugerir" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Canal aleatorio" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Invitar" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funcionalidades" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Publicación" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Comprar" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 msgid "Private Message" msgstr "Mensaje Privado" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 msgid "Select" msgstr "Seleccionar" @@ -6921,11 +6631,11 @@ msgstr "Activar o desactivar el estado de entrada preferida" msgid "starred" msgstr "preferidas" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 msgid "Message signature validated" msgstr "Firma de mensaje validada" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 msgid "Message signature incorrect" msgstr "Firma de mensaje incorrecta" @@ -6981,17 +6691,17 @@ msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" msgid "via Wall-To-Wall:" msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 #, php-format msgid "from %s" msgstr "desde %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 #, php-format msgid "last edited: %s" msgstr "último cambio: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 #, php-format msgid "Expires: %s" msgstr "Caduca: %s" @@ -7009,27 +6719,26 @@ msgid "Mark all seen" msgstr "Marcar todo como visto" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "" +msgid "[+] show all" +msgstr "[+] mostrar todo:" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 msgid "Bold" msgstr "Negrita" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 msgid "Italic" msgstr "Itálico " -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 msgid "Underline" msgstr "Subrayar" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 msgid "Quote" msgstr "Citar" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 msgid "Code" msgstr "Código" @@ -7045,74 +6754,11 @@ msgstr "Insertar enlace" msgid "Video" msgstr "Vídeo" -#: ../../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/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Sólo yo" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Público" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Cualquiera en la red $Projectname" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" -msgstr "Cualquier cuenta en %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Cualquiera de mis conexiones" - -#: ../../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/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/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/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/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/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/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/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" - #: ../../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/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 "No se ha podido crear una dirección de canal única. Ha fallado la importación." @@ -7121,291 +6767,6 @@ msgstr "No se ha podido crear una dirección de canal única. Ha fallado la impo 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/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "La imagen excede el límite de %lu bytes del sitio" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "El fichero de imagen está vacío. " - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "La foto no ha podido ser guardada." - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nueva foto" - -#: ../../include/photos.php:303 -#, 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 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Álbumes de fotos" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Finalizar sesión" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Finalizar esta sesión" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Inicio" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Sus publicaciones y conversaciones" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Su página del perfil" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Administrar/editar perfiles" - -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Editar el perfil" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Editar su perfil" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Sus fotos" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Sus ficheros" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Sus salas de chat" - -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Marcadores" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Sus marcadores" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Sus páginas web" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Acceder" - -#: ../../include/nav.php:129 -#, 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" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Página de inicio" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Crear una cuenta" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Ayuda y documentación" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Aplicaciones, utilidades, enlaces, juegos" - -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Directorio de canales" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Mi red" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Marcar todas las notificaciones de la red como vistas" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Mi canal" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas las notificaciones del canal como leídas" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Avisos" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notificaciones" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Correo privado" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Ver todas los mensajes privados" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Marcar todos los mensajes privados como leídos" - -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Bandeja de entrada" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Bandeja de salida" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nuevo mensaje" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Calendario de eventos" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Ver todos los eventos" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Marcar todos los eventos como leidos" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Gestionar sus canales" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Ajustes de cuenta/canales" - -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Administrador" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Ajustes y configuración del sitio" - -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Cargando..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@nombre, #etiqueta, ?ayuda, contenido" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Espere por favor…" - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "Ver en el tamaño original" - -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrador" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Sin asunto" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU Social" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nueva página" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Título" - #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -7444,159 +6805,952 @@ msgstr "gusta de" msgid "dislikes" msgstr "no gusta de" -#: ../../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/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/channel.php:67 -msgid "Empty name" -msgstr "Nombre vacío" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Comienza:" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nombre demasiado largo" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Finaliza:" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Ningún identificador de la cuenta" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Este evento ha sido añadido a su calendario." -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Se requiere un sobrenombre (alias)." +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Sin especificar" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Sobrenombre en uso. Por favor, elija otro." +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Necesita de una intervención" -#: ../../include/channel.php:212 +#: ../../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 "" -"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." +"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/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "No ha sido posible recuperar la identidad creada" +#: ../../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/channel.php:341 -msgid "Default Profile" -msgstr "Perfil principal" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Desconocido)" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "El canal solicitado no está disponible." +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Visible para cualquiera en internet." -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Crear un nuevo perfil" +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Visible sólo para usted." -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Visible para todos" +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Visible para cualquiera en esta red." -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Género:" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Visible para cualquiera que esté autenticado." -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Estado:" - -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Página personal:" - -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Ahora en línea" - -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Me gusta este canal" - -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Cumpleaños:" - -#: ../../include/channel.php:1232 +#: ../../include/items.php:1144 #, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" +msgid "Visible to anybody on %s." +msgstr "Visible para cualquiera en %s." -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Orientación sexual:" +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Visible para todas las conexiones." -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Etiquetas:" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Visible para las conexiones permitidas." -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Posición política:" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Visible para conexiones específicas." -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religión:" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "El grupo de canales está vacío." -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Aficciones o intereses:" +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Grupo de canales: %s" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Me gusta:" +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Conexión no encontrada" -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "No me gusta:" +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "foto del perfil" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y redes sociales:" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "No se ha especificado ningún destinatario." -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Mis otros canales:" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[sin asunto]" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Preferencias musicales:" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "No ha sido posible determinar el remitente. " -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Libros, literatura:" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "No se han podido verificar las publicaciones guardadas." -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Televisión:" +#: ../../include/text.php:428 +msgid "prev" +msgstr "anterior" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Cine, danza, cultura, entretenimiento:" +#: ../../include/text.php:430 +msgid "first" +msgstr "primera" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Vida sentimental o amorosa:" +#: ../../include/text.php:459 +msgid "last" +msgstr "última" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Trabajo:" +#: ../../include/text.php:462 +msgid "next" +msgstr "próxima" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Estudios:" +#: ../../include/text.php:472 +msgid "older" +msgstr "más antiguas" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Me gusta esto" +#: ../../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/text.php:1039 +msgid "pinged" +msgstr "ha enviado un \"ping\" a" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "una incitación " + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "ha incitado a " + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "una bofetada " + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "ha abofeteado a " + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "un \"finger\" " + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "envió un \"finger\" a" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "un reproche" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "ha hecho un reproche a " + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "feliz " + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "triste " + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "tranquilo/a" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "cansado/a " + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "vivaz" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "enfadado/a" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "asombrado/a" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "perplejo/a" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "interesado/a" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "amargado/a" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "alegre" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "animado/a" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "molesto/a" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "ansioso/a" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "de mal humor" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "perturbado/a" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustrado/a" + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "deprimido/a" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivado/a" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "relajado/a" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "sorprendido/a" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "lunes" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "martes" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "miércoles" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "jueves" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "viernes" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "sábado" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "domingo" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "enero" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "febrero" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "marzo" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "abril" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "mayo" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "junio" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "julio" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "agosto" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "septiembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "octubre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "noviembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "diciembre" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Adjunto no reconocido" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "desconocido" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "eliminar categoría" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "eliminar del fichero" + +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "por defecto" + +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Plantilla de la página" + +#: ../../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/text.php:1803 +msgid "Page content type" +msgstr "Tipo de contenido de la página" + +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Seleccionar un idioma alternativo" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "la actividad" + +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Herramientas de diseño web" + +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Páginas" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nueva aplicación (app)" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Sugerencias" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Ver más..." + +#: ../../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/widgets.php:181 +msgid "Add New Connection" +msgstr "Añadir nueva conexión" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Dirección del canal" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notas" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Eliminar término" + +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Búsquedas guardadas" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "añadir" + +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Carpetas guardadas" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Todo" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Hemeroteca" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Recargar" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Configuración de la cuenta" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Configuración del canal" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Funcionalidades" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Complementos" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Ajustes de visualización" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestión de ubicaciones (clones) del canal" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Exportar canal" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Aplicaciones (apps) conectadas" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Configuración del canal premium" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Menú de correo privado" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Vista combinada" + +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Bandeja de entrada" + +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Bandeja de salida" + +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nuevo mensaje" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversaciones" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Mensajes recibidos" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Enviar mensajes" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Sin mensajes." + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Eliminar conversación" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Menú de eventos" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Eventos del día" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Eventos de la semana" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Eventos del mes" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Gestión de eventos" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Exportar el calendario" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importar un calendario" + +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Salas de chat" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Resumen" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Miembros del chat" + +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Salas de chat preferidas" + +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Salas de chat sugeridas" + +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/imagen" + +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Hacer clic para ver más" + +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Valoraciones" + +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Valorar este canal" + +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Mostrar las valoraciones" + +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Foros" + +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Tareas" + +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Documentación" + +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Información sobre el proyecto o sitio" + +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Para los miembros" + +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Para los administradores" + +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Para los desarrolladores" + +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "Inscripciones de nuevos miembros pendientes de aprobación" + +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Examinar la cola" + +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Actualizaciones de la base de datos" + +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Administrador" + +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Extensiones" + +#: ../../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:81 +msgid "Response from remote channel was incomplete." +msgstr "Respuesta incompleta del canal." + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "El canal ha sido eliminado y ya no existe." + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocolo deshabilitado." + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "El intento de acceder al canal ha fallado." + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "No puede conectarse consigo mismo." + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Marcadores de %1$s" + +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Cronología pública" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 +#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 +#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 +#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 +#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 +#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 +#: ../../include/bbcode.php:883 +msgid "Image/photo" +msgstr "Imagen/foto" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Contenido cifrado" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Instalar el elemento %s:" + +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio." + +#: ../../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/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Pulsar para abrir/cerrar" + +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Visitantes diferentes verán este texto de forma distinta" + +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 escribió:" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opciones del directorio" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modo seguro" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo foros públicos" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo este sitio web" + +#: ../../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/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Finalizar sesión" + +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Finalizar esta sesión" + +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Inicio" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Sus publicaciones y conversaciones" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Su página del perfil" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Administrar/editar perfiles" + +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Editar el perfil" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Editar su perfil" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Sus fotos" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Sus ficheros" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Sus salas de chat" + +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Marcadores" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Sus marcadores" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Sus páginas web" + +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Acceder" + +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - pulsar para finalizar sesión" + +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Acceder desde su servidor" + +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Pulsar para identificarse en su servidor de inicio" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Página de inicio" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Crear una cuenta" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Ayuda y documentación" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Aplicaciones, utilidades, enlaces, juegos" + +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" + +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Directorio de canales" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Mi red" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Marcar todas las notificaciones de la red como vistas" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Mi canal" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Marcar todas las notificaciones del canal como leídas" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Avisos" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notificaciones" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Ver todas las notificaciones" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Correo privado" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Ver todas los mensajes privados" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Marcar todos los mensajes privados como leídos" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Calendario de eventos" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Ver todos los eventos" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Marcar todos los eventos como leidos" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Gestionar sus canales" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Ajustes de cuenta/canales" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Ajustes y configuración del sitio" + +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Cargando..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@nombre, #etiqueta, ?ayuda, contenido" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Espere por favor…" #: ../../include/connections.php:95 msgid "New window" @@ -7611,6 +7765,52 @@ msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" msgid "User '%s' deleted" msgstr "El usuario '%s' ha sido eliminado" +#: ../../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/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Encontrar canales" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Introducir nombre o interés" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Conectar/Seguir" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Ejemplos: José Fernández, Pesca" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Perfil aleatorio" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Invitar a amigos" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Ejemplo avanzado: nombre=juan y país=españ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/contact_widgets.php:127 +msgid "show more" +msgstr "mostrar más" + #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7621,269 +7821,258 @@ msgstr "%1$s ahora está conectado/a con %2$s" msgid "%1$s poked %2$s" msgstr "%1$s ha dado un toque a %2$s" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "ha dado un toque a" - -#: ../../include/conversation.php:694 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "Ver el perfil @ %s de %s" -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Categorías:" -#: ../../include/conversation.php:714 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Archivado bajo:" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "Mostrar en su contexto" -#: ../../include/conversation.php:850 +#: ../../include/conversation.php:847 msgid "remove" msgstr "eliminar" -#: ../../include/conversation.php:855 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Eliminar elementos seleccionados" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Ver el código fuente de la entrada" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Seguir este hilo" -#: ../../include/conversation.php:953 +#: ../../include/conversation.php:950 msgid "Unfollow Thread" msgstr "Dejar de seguir este hilo" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:955 msgid "Activity/Posts" msgstr "Actividad y publicaciones" -#: ../../include/conversation.php:960 +#: ../../include/conversation.php:957 msgid "Edit Connection" msgstr "Editar conexión" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:958 msgid "Message" msgstr "Mensaje" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "A %s le gusta esto." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1082 +#: ../../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/conversation.php:1084 +#: ../../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/conversation.php:1090 +#: ../../include/conversation.php:1087 msgid "and" msgstr "y" -#: ../../include/conversation.php:1093 +#: ../../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/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "A %s le gusta esto." -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "Establecer su ubicación" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Eliminar los datos de localización geográfica del navegador" -#: ../../include/conversation.php:1182 +#: ../../include/conversation.php:1177 msgid "Tag term:" msgstr "Término de la etiqueta:" -#: ../../include/conversation.php:1183 +#: ../../include/conversation.php:1178 msgid "Where are you right now?" msgstr "¿Donde está ahora?" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1210 msgid "Page link name" msgstr "Nombre del enlace de la página" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:1213 msgid "Post as" msgstr "Publicar como" -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1223 msgid "Toggle voting" msgstr "Cambiar votación" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Categorías (opcional, lista separada por comas)" -#: ../../include/conversation.php:1269 +#: ../../include/conversation.php:1254 msgid "Set publish date" msgstr "Establecer la fecha de publicación" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "Descubrir" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Contenidos públicos importados" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Comentarios recientes" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Ordenar por fecha de comentario" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Publicaciones recientes" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Ordenar por fecha de publicación" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1529 msgid "Posts that mention or involve you" msgstr "Publicaciones que le mencionan o involucran" -#: ../../include/conversation.php:1553 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Contenido - por fecha" -#: ../../include/conversation.php:1559 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Preferidas" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Publicaciones favoritas" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Correo basura" -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Publicaciones marcadas como basura" -#: ../../include/conversation.php:1629 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Mensajes de estado y publicaciones" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1623 msgid "About" msgstr "Mi perfil" -#: ../../include/conversation.php:1641 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Detalles del perfil" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Álbumes de fotos" + +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Ficheros y repositorio" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Salas de chat" - -#: ../../include/conversation.php:1693 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Marcadores guardados" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Administrar páginas web" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Participaré" msgstr[1] "Participaré" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "No participaré" msgstr[1] "No participaré" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso/a" msgstr[1] "Indecisos/as" -#: ../../include/conversation.php:1777 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "De acuerdo" msgstr[1] "De acuerdo" -#: ../../include/conversation.php:1780 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "En desacuerdo" msgstr[1] "En desacuerdo" -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "se abstiene" msgstr[1] "Se abstienen" -#: ../../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/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/selectors.php:30 msgid "Frequently" msgstr "Frecuentemente" @@ -7948,6 +8137,12 @@ msgstr "Neutral" msgid "Non-specific" msgstr "No especificado" +#: ../../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/selectors.php:49 msgid "Undecided" msgstr "Indeciso/a" @@ -8124,366 +8319,361 @@ msgstr "No me importa" msgid "Ask me" msgstr "Pregúnteme" -#: ../../include/bookmarks.php:35 +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Visible para su público predeterminado." + +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Sólo yo" + +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Público" + +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Cualquiera en la red $Projectname" + +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "%1$s's bookmarks" -msgstr "Marcadores de %1$s" +msgid "Any account on %s" +msgstr "Cualquier cuenta en %s" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Cualquiera de mis conexiones" -#: ../../include/security.php:427 +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Sólo las conexiones que yo permita de forma explícita" + +#: ../../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/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/PermissionDescription.php:161 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" +"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/text.php:404 -msgid "prev" -msgstr "anterior" +#: ../../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/text.php:406 -msgid "first" -msgstr "primera" +#: ../../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/text.php:435 -msgid "last" -msgstr "última" +#: ../../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/text.php:438 -msgid "next" -msgstr "próxima" +#: ../../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/text.php:448 -msgid "older" -msgstr "más antiguas" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Dirección de correo no válida" -#: ../../include/text.php:450 -msgid "newer" -msgstr "más recientes" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio." -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Sin conexiones" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Su dirección de correo está ya registrada en este sitio." -#: ../../include/text.php:868 +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Es obligatorio que le inviten." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "No se ha podido verificar su invitación." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Por favor introduzca la información requerida." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "La información de la cuenta no se ha podido guardar." + +#: ../../include/account.php:249 #, php-format -msgid "View all %s connections" -msgstr "Ver todas las %s conexiones" +msgid "Registration confirmation for %s" +msgstr "Confirmación de registro para %s" + +#: ../../include/account.php:315 +#, php-format +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" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Detalles del registro de %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Cuenta aprobada." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registro revocado para %s" + +#: ../../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: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/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:497 +msgid "No source file." +msgstr "Ningún fichero de origen" + +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "No se puede localizar el fichero que va a ser sustituido." + +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "No se puede localizar el fichero para revisar/actualizar" + +#: ../../include/attach.php:672 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "El fichero supera el limite de tamaño de %d" + +#: ../../include/attach.php:686 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." + +#: ../../include/attach.php:842 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." + +#: ../../include/attach.php:855 +msgid "Stored file could not be verified. Upload failed." +msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." + +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Ruta no disponible." + +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Ruta vacía" + +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "Nombre duplicado de ruta o fichero" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Ruta no encontrada" + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "mkdir ha fallado." + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "el almacenamiento en la base de datos ha fallado." + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "Ruta vacía" + +#: ../../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/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "un toque" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Nombre vacío" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "un \"ping\"" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Nombre demasiado largo" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "ha enviado un \"ping\" a" +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Ningún identificador de la cuenta" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "una incitación " +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Se requiere un sobrenombre (alias)." -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "ha incitado a " +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Sobrenombre en uso. Por favor, elija otro." -#: ../../include/text.php:1021 -msgid "slap" -msgstr "una bofetada " - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ha abofeteado a " - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "un \"finger\" " - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "envió un \"finger\" a" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "un reproche" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "ha hecho un reproche a " - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "feliz " - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste " - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "tranquilo/a" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "cansado/a " - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "vivaz" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "enfadado/a" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "asombrado/a" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "perplejo/a" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "interesado/a" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amargado/a" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "alegre" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "animado/a" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "molesto/a" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "ansioso/a" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "de mal humor" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "perturbado/a" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrado/a" - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "deprimido/a" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivado/a" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "relajado/a" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorprendido/a" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "lunes" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "martes" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "miércoles" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "jueves" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "viernes" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "sábado" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "domingo" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "enero" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "febrero" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "marzo" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "abril" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "mayo" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "junio" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "julio" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "agosto" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "septiembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "octubre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "noviembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "diciembre" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Adjunto no reconocido" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "desconocido" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "eliminar categoría" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "eliminar del fichero" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "por defecto" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Plantilla de la página" - -#: ../../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/text.php:1784 -msgid "Page content type" -msgstr "Tipo de contenido de la página" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Seleccionar un idioma alternativo" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "la actividad" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Herramientas de diseño web" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Páginas" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Desconectado/a." - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Autenticación fallida." - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pueden verse mi actividad y publicaciones normales" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Pueden verse mis páginas web" - -#: ../../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/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Puede marcarse contenido como me gusta/no me gusta" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" - -#: ../../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/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/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Se puede charlar conmigo (cuando esté disponible)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Puede escribirse en mi repositorio de ficheros y fotos" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Pueden editarse mis páginas web" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Algo avanzado - muy útil en comunidades abiertas" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Pueden administrarse mis recursos del canal" - -#: ../../include/permissions.php:46 +#: ../../include/channel.php:211 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." +"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/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "No ha sido posible recuperar la identidad creada" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Perfil principal" + +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "El canal solicitado no está disponible." + +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Crear un nuevo perfil" + +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Visible para todos" + +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Género:" + +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Estado:" + +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Página personal:" + +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Ahora en línea" + +#: ../../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/channel.php:1192 +#, php-format +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" @@ -8530,257 +8720,378 @@ msgid "Provide managed web pages on your channel" msgstr "Proveer páginas web gestionadas en su canal" #: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "" - -#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Ocultar las valoraciones" -#: ../../include/features.php:56 +#: ../../include/features.php:55 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "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:57 +#: ../../include/features.php:56 msgid "Private Notes" msgstr "Notas privadas" -#: ../../include/features.php:57 +#: ../../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:58 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "Navegación por el selector de canales" -#: ../../include/features.php:58 +#: ../../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:59 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "Ubicación de las fotos" -#: ../../include/features.php:59 +#: ../../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:60 +#: ../../include/features.php:59 msgid "Access Controlled Chatrooms" msgstr "Salas de chat moderadas" -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Provide chatrooms and chat services with access control." msgstr "Proporcionar salas y servicios de chat moderados." -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "Smart Birthdays" msgstr "Cumpleaños inteligentes" -#: ../../include/features.php:61 +#: ../../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:62 +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "Modo de experto" -#: ../../include/features.php:62 +#: ../../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:63 +#: ../../include/features.php:62 msgid "Premium Channel" msgstr "Canal premium" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" -#: ../../include/features.php:68 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "Opciones para la redacción de entradas" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Large Photos" msgstr "Fotos de gran tamaño" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" -#: ../../include/features.php:72 +#: ../../include/features.php:71 msgid "Automatically import channel content from other channels or feeds" msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "Even More Encryption" msgstr "Más cifrado todavía" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Enable Voting Tools" msgstr "Permitir entradas con votación" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Provide a class of post which others can vote on" msgstr "Proveer una clase de publicación en la que otros puedan votar" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Publicación aplazada" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Allow posts to be published at a later date" msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Filtrado del contenido" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Buscar por fecha" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Capacidad de seleccionar entradas por rango de fechas" -#: ../../include/features.php:84 ../../include/group.php:311 +#: ../../include/features.php:83 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Grupos de canales" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Activar la gestión y selección de grupos de canales" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" - -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Actividad personal" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Contenido nuevo" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Enable tab to display all new Network activity" msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Affinity Tool" msgstr "Herramienta de afinidad" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Filter stream activity by depth of relationships" msgstr "Filtrar el contenido según la profundidad de las relaciones" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Connection Filtering" msgstr "Filtrado de conexiones" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" -#: ../../include/features.php:90 +#: ../../include/features.php:89 msgid "Show channel suggestions" msgstr "Mostrar sugerencias de canales" -#: ../../include/features.php:95 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "Gestión de entradas y comentarios" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Community Tagging" msgstr "Etiquetas de la comunidad" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "Capacidad de etiquetar entradas existentes" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "Categorías de entradas" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "Añadir categorías a sus publicaciones" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Emoji Reactions" msgstr "Emoticonos \"emoji\"" -#: ../../include/features.php:98 +#: ../../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/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Carpetas guardadas" - -#: ../../include/features.php:99 +#: ../../include/features.php:98 msgid "Ability to file posts under folders" msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "Desagrado de publicaciones" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "Entradas destacadas" -#: ../../include/features.php:101 +#: ../../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/features.php:102 +#: ../../include/features.php:101 msgid "Tag Cloud" msgstr "Nube de etiquetas" -#: ../../include/features.php:102 +#: ../../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/oembed.php:324 +msgid "Embedded content" +msgstr "Contenido incorporado" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Incrustación deshabilitada" + +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "¿Quién puede ver esto?" + +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "Selección personalizada" + +#: ../../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/acl_selectors.php:274 +msgid "Show" +msgstr "Mostrar" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "No mostrar" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Otras redes y servicios de publicación" + +#: ../../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/auth.php:105 +msgid "Logged out." +msgstr "Desconectado/a." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Autenticación fallida." + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Cumpleaños" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Edad:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-DD o MM-DD" + +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "nunca" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "hace un instante" + +#: ../../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/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "año" +msgstr[1] "años" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mes" +msgstr[1] "meses" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "semana" +msgstr[1] "semanas" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "día" +msgstr[1] "días" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "horas" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minutos" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "segundo" +msgstr[1] "segundos" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Cumpleaños de %1$s" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Feliz cumpleaños %1$s" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -8808,583 +9119,21 @@ msgstr "Añadir un grupo de canales" msgid "Channels not in any privacy group" msgstr "Sin canales en ningún grupo" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "añadir" - -#: ../../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:814 -msgid "This event has been added to your calendar." -msgstr "Este evento ha sido añadido a su calendario." - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Sin especificar" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Necesita de una intervención" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Completado/a" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "En proceso" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Cancelado/a" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Dirección de correo no válida" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio." - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Su dirección de correo está ya registrada en este sitio." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Es obligatorio que le inviten." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "No se ha podido verificar su invitación." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Por favor introduzca la información requerida." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "La información de la cuenta no se ha podido guardar." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmación de registro para %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Solicitud de registro en %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "su contraseña de registro" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Detalles del registro de %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Cuenta aprobada." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registro revocado para %s" - -#: ../../include/account.php:739 ../../include/account.php:741 -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/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "No puede conectarse consigo mismo." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Elemento no encontrado." - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "Ningún fichero de origen" - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "No se puede localizar el fichero que va a ser sustituido." - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "No se puede localizar el fichero para revisar/actualizar" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "El fichero supera el limite de tamaño de %d" - -#: ../../include/attach.php:688 -#, 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 -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 -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 -msgid "Path not available." -msgstr "Ruta no disponible." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Ruta vacía" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "Nombre duplicado de ruta o fichero" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Ruta no encontrada" - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir ha fallado." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "el almacenamiento en la base de datos ha fallado." - -#: ../../include/attach.php:1135 -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/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contenido cifrado" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Instalar el elemento %s:" - -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en 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/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Pulsar para abrir/cerrar" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Visitantes diferentes verán este texto de forma distinta" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 escribió:" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Desconocido)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visible para cualquiera en internet." - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visible sólo para usted." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visible para cualquiera en esta red." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visible para cualquiera que esté autenticado." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible para cualquiera en %s." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Visible para todas las conexiones." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visible para las conexiones permitidas." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visible para conexiones específicas." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "El grupo de canales está vacío." - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Grupo de canales: %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Conexión no encontrada" - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "foto del perfil" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Contenido incorporado" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Incrustación deshabilitada" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nueva aplicación (app)" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Sugerencias" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Ver más..." - -#: ../../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/widgets.php:181 -msgid "Add New Connection" -msgstr "Añadir nueva conexión" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Dirección del canal" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notas" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eliminar término" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Todo" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Hemeroteca" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Recargar" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Configuración de la cuenta" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Configuración del canal" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Funcionalidades" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Complementos" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Ajustes de visualización" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestión de ubicaciones (clones) del canal" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exportar canal" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Aplicaciones (apps) conectadas" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Configuración del canal premium" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menú de correo privado" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vista combinada" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversaciones" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Mensajes recibidos" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Enviar mensajes" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Sin mensajes." - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Eliminar conversación" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Gestión de eventos" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exportar el calendario" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importar un calendario" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Resumen" - -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Miembros del chat" - -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Lista de wikis" - -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Páginas del wiki" - -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Salas de chat preferidas" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Salas de chat sugeridas" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/imagen" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Hacer clic para ver más" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Valoraciones" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Valorar este canal" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Mostrar las valoraciones" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Foros" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Tareas" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Documentación" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Información sobre el proyecto o sitio" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Para los miembros" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Para los administradores" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Para los desarrolladores" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Inscripciones de nuevos miembros pendientes de aprobación" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Examinar la cola" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Actualizaciones de la base de datos" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Extensiones" - -#: ../../include/activities.php:41 -msgid " and " -msgstr " y " - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "el perfil público" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiado %2$s a “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visitar %2$s de %1$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha actualizado %2$s, cambiando %3$s." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Ficheros adjuntos:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificación de eventos de $Projectname:" - #: ../../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,223 +9363,278 @@ 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/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Conectar/Seguir" +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "una nueva foto" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Ejemplos: José Fernández, Pesca" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Perfil aleatorio" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Invitar a amigos" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Ejemplo avanzado: nombre=juan y país=españa" - -#: ../../include/contact_widgets.php:122 +#: ../../include/photos.php:299 #, 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" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha publicado %2$s en %3$s" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostrar más" +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opciones del directorio" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modo seguro" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo foros públicos" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo este sitio web" - -#: ../../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/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "¿Quién puede ver esto?" - -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Selección personalizada" - -#: ../../include/acl_selectors.php:271 -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/acl_selectors.php:272 -msgid "Show" -msgstr "Mostrar" - -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "No mostrar" - -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Otras redes y servicios de publicación" - -#: ../../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/datetime.php:135 -msgid "Birthday" -msgstr "Cumpleaños" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Edad:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-DD o MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "nunca" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "hace un instante" - -#: ../../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/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "año" -msgstr[1] "años" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "meses" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "día" -msgstr[1] "días" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "horas" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minutos" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "segundo" -msgstr[1] "segundos" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Cumpleaños de %1$s" - -#: ../../include/datetime.php:563 -#, 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 +#: ../../include/zot.php:699 msgid "Invalid data packet" msgstr "Paquete de datos no válido" -#: ../../include/zot.php:713 +#: ../../include/zot.php:715 msgid "Unable to verify channel signature" msgstr "No ha sido posible de verificar la firma del canal" -#: ../../include/zot.php:2326 +#: ../../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:3703 +#: ../../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/permissions.php:28 +msgid "Can view my connections" +msgstr "Pueden verse mis conexiones" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Pueden verse mi repositorio de ficheros y mis fotos" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Pueden verse mis páginas web" + +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Me pueden enviar sus entradas y contenidos del canal" + +#: ../../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/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/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Se me pueden enviar mensajes privados" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Puede marcarse contenido como me gusta/no me gusta" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" + +#: ../../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/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/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Se puede charlar conmigo (cuando esté disponible)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Puede escribirse en mi repositorio de ficheros y fotos" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Pueden editarse mis páginas web" + +#: ../../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/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Algo avanzado - muy útil en comunidades abiertas" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Pueden administrarse mis recursos del canal" + +#: ../../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/permissions.php:877 +msgid "Social Networking" +msgstr "Redes sociales" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Social - Público en su mayor parte" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Social - Restringido" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Social - Privado" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Foro de discusión" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Foro - Público en su mayor parte" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Foro - Restringido" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Foro - Privado" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Republicar un \"feed\"" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Feed - Público en su mayor parte" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Feed - Restringido" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Propósito especial" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Especial - Celebridad / Tribuna improvisada" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Especial - Repositorio de grupo" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Modo personalizado/experto" + +#: ../../include/activities.php:41 +msgid " and " +msgstr " y " + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "el perfil público" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiado %2$s a “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Visitar %2$s de %1$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha actualizado %2$s, cambiando %3$s." + +#: ../../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)" msgstr "Focus (predefinido)" @@ -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,6 +382,229 @@ 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["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."; +App::$strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; +App::$strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; +App::$strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; +App::$strings["%s : Message delivery failed."] = "%s : Falló el envío del mensaje."; +App::$strings["%d message sent."] = array( + 0 => "%d mensajes enviados.", + 1 => "%d mensajes enviados.", +); +App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; +App::$strings["Send invitations"] = "Enviar invitaciones"; +App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; +App::$strings["Your message:"] = "Su mensaje:"; +App::$strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Tendrá que suministrar este código de invitación:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier sitio de \$Projectname (están todos interconectados)"; +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"; +App::$strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."; +App::$strings["Hub not found."] = "Servidor no encontrado"; +App::$strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; +App::$strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; +App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; +App::$strings["Messages"] = "Mensajes"; +App::$strings["Message recalled."] = "Mensaje revocado."; +App::$strings["Conversation removed."] = "Conversación eliminada."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red"; +App::$strings["Send Private Message"] = "Enviar un mensaje privado"; +App::$strings["To:"] = "Para:"; +App::$strings["Subject:"] = "Asunto:"; +App::$strings["Attach file"] = "Adjuntar fichero"; +App::$strings["Send"] = "Enviar"; +App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; +App::$strings["Delete message"] = "Borrar mensaje"; +App::$strings["Delivery report"] = "Informe de transmisión"; +App::$strings["Recall message"] = "Revocar el mensaje"; +App::$strings["Message has been recalled."] = "El mensaje ha sido revocado."; +App::$strings["Delete Conversation"] = "Eliminar conversación"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente."; +App::$strings["Send Reply"] = "Responder"; +App::$strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; +App::$strings["Create a new channel"] = "Crear un nuevo canal"; +App::$strings["Channel Manager"] = "Administración de canales"; +App::$strings["Current Channel"] = "Canal actual"; +App::$strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo."; +App::$strings["Default Channel"] = "Canal principal"; +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["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)"; +App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; +App::$strings["Password Reset"] = "Restablecer la contraseña"; +App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; +App::$strings["Your new password is"] = "Su nueva contraseña es"; +App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; +App::$strings["click here to login"] = "pulse aquí para conectarse"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; +App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; +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"; +App::$strings["Search Results For:"] = "Buscar resultados para:"; +App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; +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["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ú"; +App::$strings["Menu Item Permissions"] = "Permisos del elemento del menú"; +App::$strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; +App::$strings["Link Name"] = "Nombre del enlace"; +App::$strings["Link or Submenu Target"] = "Destino del enlace o submenú"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introducir la dirección del enlace o seleccionar el nombre de un submenú"; +App::$strings["Use magic-auth if available"] = "Usar la autenticación mágica si está disponible"; +App::$strings["Open link in new window"] = "Abrir el enlace en una nueva ventana"; +App::$strings["Order in list"] = "Orden en la lista"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Los números más altos irán al final de la lista"; +App::$strings["Submit and finish"] = "Enviar y terminar"; +App::$strings["Submit and continue"] = "Enviar y continuar"; +App::$strings["Menu:"] = "Menú:"; +App::$strings["Link Target"] = "Destino del enlace"; +App::$strings["Edit menu"] = "Editar menú"; +App::$strings["Edit element"] = "Editar el elemento"; +App::$strings["Drop element"] = "Eliminar el elemento"; +App::$strings["New element"] = "Nuevo elemento"; +App::$strings["Edit this menu container"] = "Modificar el contenedor del menú"; +App::$strings["Add menu element"] = "Añadir un elemento al menú"; +App::$strings["Delete this menu item"] = "Eliminar este elemento del menú"; +App::$strings["Edit this menu item"] = "Modificar este elemento del menú"; +App::$strings["Menu item not found."] = "Este elemento del menú no se ha encontrado"; +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."; @@ -611,164 +673,122 @@ 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["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."; -App::$strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; -App::$strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; -App::$strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; -App::$strings["%s : Message delivery failed."] = "%s : Falló el envío del mensaje."; -App::$strings["%d message sent."] = array( - 0 => "%d mensajes enviados.", - 1 => "%d mensajes enviados.", -); -App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; -App::$strings["Send invitations"] = "Enviar invitaciones"; -App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; -App::$strings["Your message:"] = "Su mensaje:"; -App::$strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Tendrá que suministrar este código de invitación:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier sitio de \$Projectname (están todos interconectados)"; -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["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["Primary"] = "Primario"; -App::$strings["Drop"] = "Eliminar"; -App::$strings["Sync Now"] = "Sincronizar ahora"; -App::$strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."; -App::$strings["Hub not found."] = "Servidor no encontrado"; -App::$strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; -App::$strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; -App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; -App::$strings["Messages"] = "Mensajes"; -App::$strings["Message recalled."] = "Mensaje revocado."; -App::$strings["Conversation removed."] = "Conversación eliminada."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red"; -App::$strings["Send Private Message"] = "Enviar un mensaje privado"; -App::$strings["To:"] = "Para:"; -App::$strings["Subject:"] = "Asunto:"; -App::$strings["Attach file"] = "Adjuntar fichero"; -App::$strings["Send"] = "Enviar"; -App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; -App::$strings["Delete message"] = "Borrar mensaje"; -App::$strings["Delivery report"] = "Informe de transmisión"; -App::$strings["Recall message"] = "Revocar el mensaje"; -App::$strings["Message has been recalled."] = "El mensaje ha sido revocado."; -App::$strings["Delete Conversation"] = "Eliminar conversación"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente."; -App::$strings["Send Reply"] = "Responder"; -App::$strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; -App::$strings["Create a new channel"] = "Crear un nuevo canal"; -App::$strings["Channel Manager"] = "Administración de canales"; -App::$strings["Current Channel"] = "Canal actual"; -App::$strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo."; -App::$strings["Default Channel"] = "Canal principal"; -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)"; -App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; -App::$strings["Password Reset"] = "Restablecer la contraseña"; -App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; -App::$strings["Your new password is"] = "Su nueva contraseña es"; -App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; -App::$strings["click here to login"] = "pulse aquí para conectarse"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; -App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; -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["__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["No such group"] = "No se encuentra el grupo"; -App::$strings["No such channel"] = "No se encuentra el canal"; -App::$strings["forum"] = "foro"; -App::$strings["Search Results For:"] = "Buscar resultados para:"; -App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; -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ú"; -App::$strings["Menu Item Permissions"] = "Permisos del elemento del menú"; -App::$strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; -App::$strings["Link Name"] = "Nombre del enlace"; -App::$strings["Link or Submenu Target"] = "Destino del enlace o submenú"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introducir la dirección del enlace o seleccionar el nombre de un submenú"; -App::$strings["Use magic-auth if available"] = "Usar la autenticación mágica si está disponible"; -App::$strings["Open link in new window"] = "Abrir el enlace en una nueva ventana"; -App::$strings["Order in list"] = "Orden en la lista"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Los números más altos irán al final de la lista"; -App::$strings["Submit and finish"] = "Enviar y terminar"; -App::$strings["Submit and continue"] = "Enviar y continuar"; -App::$strings["Menu:"] = "Menú:"; -App::$strings["Link Target"] = "Destino del enlace"; -App::$strings["Edit menu"] = "Editar menú"; -App::$strings["Edit element"] = "Editar el elemento"; -App::$strings["Drop element"] = "Eliminar el elemento"; -App::$strings["New element"] = "Nuevo elemento"; -App::$strings["Edit this menu container"] = "Modificar el contenedor del menú"; -App::$strings["Add menu element"] = "Añadir un elemento al menú"; -App::$strings["Delete this menu item"] = "Eliminar este elemento del menú"; -App::$strings["Edit this menu item"] = "Modificar este elemento del menú"; -App::$strings["Menu item not found."] = "Este elemento del menú no se ha encontrado"; -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["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."; @@ -2017,7 +2071,6 @@ 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"; @@ -2025,149 +2078,63 @@ 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["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["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["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["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,6 +263,229 @@ msgstr "Profil demandé non disponible." msgid "Some blurb about what to do when you're new here" msgstr "Quelques mots sur quoi faire quand on est nouveau ici" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nom du Bloc" + +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Blocs" + +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Titre du bloc" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 +#: ../../include/page_widgets.php:44 +msgid "Created" +msgstr "Créé(e)" + +#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 +#: ../../include/page_widgets.php:45 +msgid "Edited" +msgstr "Modifié(e)" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 +#: ../../include/conversation.php:1208 +msgid "Share" +msgstr "Partager" + +#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 +#: ../../include/page_widgets.php:39 +msgid "View" +msgstr "Voir" + +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canal introuvable." + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permissions refusées." + +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l, F j" + +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Lien vers la Source" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Modifier l'événement" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Créer un événement" + +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 +#: ../../Zotlabs/Module/Photos.php:949 +msgid "Previous" +msgstr "Précédent" + +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Suivant" + +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Export" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Import" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 +#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 +#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 +#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:842 +#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 +#: ../../include/widgets.php:769 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Envoyer" + +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Aujourd'hui" + +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Vous devez vous connecter pour voir cette page." + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permissions insuffisantes. Demande redirigée vers la page du profil." + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Salon introuvable" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Quitter le salon" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Je suis absent en ce moment" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Je suis en ligne" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Marquer ce salon comme favori" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 +#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 +msgid "Please enter a link URL:" +msgstr "Merci d'entrer l'URL d'un lien :" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 +#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1256 +msgid "Encrypt text" +msgstr "Chiffrer le texte" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 +msgid "Insert web link" +msgstr "Insérer lien web" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nouveau salon de discussion" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Expiration des discussions (en minutes)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 +#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:283 +msgid "Permissions" +msgstr "Autorisations" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Salons de %1$s" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "" + #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Absent" @@ -415,6 +494,65 @@ msgstr "Absent" msgid "Online" msgstr "En ligne" +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Élément invalide." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Favori ajouté" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mes Favoris" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Favoris de mes contacts" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continuer" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Configuration du canal VIP" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Activer les restrictions liées au canal VIP" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes :" + +#: ../../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." @@ -423,350 +561,317 @@ msgstr "Impossible d'accéder aux détails du contact." msgid "Could not locate selected profile." msgstr "Impossible de localiser le profil sélectionné." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "Contact mis à jour." -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../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:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "est maintenant connecté avec" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "No" msgstr "Non" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "Yes" msgstr "Oui" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../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:455 +#: ../../Zotlabs/Module/Connedit.php:425 msgid "Refresh failed - channel is currently unavailable." msgstr "Actualisation impossible - le canal est indisponible." -#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 msgid "Unable to set address book parameters." msgstr "Impossible de régler les paramètres du carnet d'adresses." -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "Le contact a été supprimé." -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 msgid "View Profile" msgstr "Voir le profil" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:522 #, php-format msgid "View %s's profile" msgstr "Voir le profil de %s" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:526 msgid "Refresh Permissions" msgstr "Actualiser les autorisations" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:529 msgid "Fetch updated permissions" msgstr "Récupérer les autorisations les plus récentes" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Recent Activity" msgstr "Activité récente" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:536 msgid "View recent posts and comments" msgstr "Voir les publications et commentaires récents" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Débloquer" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Bloquer" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../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:574 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "This connection is blocked!" msgstr "Ce contact est bloqué !" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 msgid "Unignore" msgstr "Ne plus ignorer" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignorer" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../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:582 +#: ../../Zotlabs/Module/Connedit.php:552 msgid "This connection is ignored!" msgstr "Ce contact est ignoré !" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Unarchive" msgstr "Désarchiver" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Archive" msgstr "Archiver" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../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:590 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "This connection is archived!" msgstr "Ce contact est archivé !" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Unhide" msgstr "Ne plus cacher" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../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,121 +887,17 @@ 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/Id.php:14 -msgid "Last Name" -msgstr "Nom de famille" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Surnom" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nom complet" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 -msgid "Email" -msgstr "Courriel" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Photo du Profil" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Photo de profil 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Photo de profil 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Photo de profil 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Photo de profil 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Photo de profil 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Photo de profil 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Fuseau horaire" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "URL de mon site Internet :" - -#: ../../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" @@ -916,12 +917,12 @@ msgstr "État :" 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,322 +1018,38 @@ 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/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/Events.php:25 -msgid "Calendar entries imported." -msgstr "Entrées du calendrier importées." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Aucune entrée du calendrier trouvée." - -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "La fin de l'événement ne peut être antérieure à son début." - -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Impossible de générer l'aperçu." - -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Un titre et une date de début sont requises pour l'événement." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Événement introuvable." - -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1924 ../../include/event.php:951 -msgid "event" -msgstr "événement" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Modifier le titre de l'événement" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Titre de l'événement" - -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Requis" - -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Catégories (séparées par des virgules)" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Modifier la catégorie" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Catégorie" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Modifier la date et l'heure de début" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Date et heure de début" - -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "Date et heure de fin inconnues ou sans objet" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Modifier la date et l'heure de fin" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Date et heure de fin" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "Ajuster au fuseau horaire du visiteur" - -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde." - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Modifier la description" - -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Description" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Modifier l'emplacement" - -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Emplacement" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Partager cet événement" - -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 -#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 -msgid "Preview" -msgstr "Aperçu" - -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Gérer les autorisations" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Options avancées" - -#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l, F j" - -#: ../../Zotlabs/Module/Events.php:609 -msgid "Edit event" -msgstr "Modifier l'événement" - -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Supprimer l'événement" - -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Lien vers la Source" - -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "calendrier" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Modifier l'événement" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Créer un événement" - -#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:947 -msgid "Previous" -msgstr "Précédent" - -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Suivant" - -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Export" - -#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Voir" - -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Aujourd'hui" - -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "Événement supprimé" - -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "Impossible de supprimer l'événement" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Favori ajouté" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mes Favoris" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Favoris de mes contacts" - -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:81 msgid "Item not found" msgstr "Élément introuvable" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Elément non modifiable" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Titre (facultatif)" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Modifier la publication" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modifier le bloc" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Photos" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Pas de canal." -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 -#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 -#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 -#: ../../include/conversation.php:1274 -msgid "Cancel" -msgstr "Annuler" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Contacts en commun" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Élément invalide." - -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canal introuvable." - -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Classer dans le dossier :" - -#: ../../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/Common.php:48 +msgid "No connections in common." +msgstr "Pas de contacts en commun." #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1360,7 +1077,7 @@ msgstr "Archivé" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 +#: ../../include/conversation.php:1535 msgid "New" msgstr "Nouveautés" @@ -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,69 +1263,200 @@ 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/Events.php:254 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 +#: ../../include/text.php:1943 ../../include/conversation.php:123 +msgid "event" +msgstr "événement" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Modifier le titre de l'événement" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Titre de l'événement" + +#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Requis" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Catégories (séparées par des virgules)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Modifier la catégorie" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Catégorie" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Modifier la date et l'heure de début" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Date et heure de début" + +#: ../../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/Events.php:458 +msgid "Edit finish date and time" +msgstr "Modifier la date et l'heure de fin" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Date et heure de fin" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "Ajuster au fuseau horaire du visiteur" + +#: ../../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/Events.php:462 +msgid "Edit Description" +msgstr "Modifier la description" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Description" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Modifier l'emplacement" + +#: ../../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/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Partager cet événement" + +#: ../../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/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Gérer les autorisations" + +#: ../../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" @@ -1618,184 +1466,112 @@ msgstr "Ce site n'est pas un serveur d'annuaire" msgid "This directory server requires an access token" msgstr "Ce serveur d'annuaire requiert un jeton d'accès" -#: ../../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/Filer.php:52 +msgid "Save to Folder:" +msgstr "Classer dans le dossier :" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Salon introuvable" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- choisir -" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Quitter le salon" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Enregistrer" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Je suis absent en ce moment" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Je suis en ligne" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Marquer ce salon comme favori" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php: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/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/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/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: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/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/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:44 +#: ../../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 -msgid "channel sync processed" -msgstr "Synchro de canal effectuée" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "mis dans la file d'attente" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "publié" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "accepté pour la distribution" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "mis à jour" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "mise à jour ignorée" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permission refusée" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "destinataire introuvable" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "courriel rappelé" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "courriel reçu en double" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "courriel distribué" - -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:64 #, 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:78 +msgid "channel sync processed" +msgstr "Synchro de canal effectuée" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "mis dans la file d'attente" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "publié" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "accepté pour la distribution" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "mis à jour" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "mise à jour ignorée" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "permission refusée" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "destinataire introuvable" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "courriel rappelé" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "courriel reçu en double" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "courriel distribué" + +#: ../../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,57 +1625,31 @@ 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/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Partager du contenu depuis Firefox avec $Projectname" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Erreur de l'application - Malformée." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activer le connecteur $Projectname pour Firefox" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Imbriquer le code" +#: ../../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 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modifier l'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:110 -msgid "Create App" -msgstr "Créer une application" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Merci de vous identifier pour continuer." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nom de l'application" - -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Emplacement (URL) de l'application" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL de l'icône à utiliser pour cette photo" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - facultatif" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Identifiant de version" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prix de l'application" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Emplacement (URL) pour l'achat de l'application" +#: ../../Zotlabs/Module/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/Help.php:26 msgid "Documentation Search" @@ -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,124 +1670,335 @@ msgstr "Aide" msgid "$Projectname Documentation" msgstr "Documentation $Projectname" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "Permission refusée." + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "Fichier introuvable." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "Modifier les autorisations d'accès au fichier" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "Définir/modifier les autorisations" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "Inclure tous fichiers et sous-répertoires" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "Retourner à la liste des fichiers" + +#: ../../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: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:163 +msgid "Share this file" +msgstr "Partager ce fichier" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "Montrer l'URL de ce fichier" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "Notifier vos contacts à propos de ce fichier" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Applications" + #: ../../Zotlabs/Module/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/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Votre forfait n'autorise que %d canaux." -#: ../../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/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Rien à importer." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Mise en page introuvable." +#: ../../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/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nom du module :" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Le fichier importé est vide." -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Aide à la mise en page" +#: ../../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/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Partager du contenu depuis Firefox avec $Projectname" +#: ../../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/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Activer le connecteur $Projectname pour Firefox" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Pas de canal. Echec de l'import." -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "réseau" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "L'import est terminé." -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../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/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permission refusée." +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Importation de canal" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "Fichier introuvable." +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "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/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Modifier les autorisations d'accès au fichier" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Fichier à envoyer" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" -msgstr "Définir/modifier les autorisations" +#: ../../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/Filestorage.php:156 -msgid "Include all files and sub folders" -msgstr "Inclure tous fichiers et sous-répertoires" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Votre ancienne identité (zyx@exemple.com)" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Return to file list" -msgstr "Retourner à la liste des fichiers" +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Votre ancienne adresse de courriel" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copiez/collez ce code pour joindre le fichier à une publication" +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "Votre ancien mot de passe" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copiez/collez cette URL pour pointer vers ce fichier depuis une page web" +#: ../../Zotlabs/Module/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/Filestorage.php:162 -msgid "Share this file" -msgstr "Partager ce fichier" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Faire de ce hub mon emplacement primaire" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" -msgstr "Montrer l'URL de ce fichier" +#: ../../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/Filestorage.php:164 -msgid "Notify your contacts about this file" -msgstr "Notifier vos contacts à propos de ce fichier" +#: ../../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/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "Impossible de localiser la publication initiale." + +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "Publication vide annulée." + +#: ../../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/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/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 "You have reached your limit of %1$.0f top level posts." +msgstr "Vous avez atteint votre limite de %1$.0f contributions \"racines\"." + +#: ../../Zotlabs/Module/Item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Vous avez atteint votre limite de %1$.0f pages web." + +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 msgid "Layouts" msgstr "Mises-en-page" -#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Layouts.php:183 msgid "Comanche page description language help" msgstr "Aide sur le langage de description de page Comanche" -#: ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Layouts.php:187 msgid "Layout Description" msgstr "Description de la mise en page" -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Créé(e)" - -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Modifié(e)" - -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "Partager" - -#: ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Layouts.php:192 msgid "Download PDL file" msgstr "Télécharger le fichier PDL" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenue sur %s" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Prénom" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Nom de famille" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Surnom" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nom complet" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2151 ../../boot.php:1705 +msgid "Email" +msgstr "Courriel" + +#: ../../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/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:234 +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/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pages web" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloquer" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "mise en page" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" + +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "Elément %s installé" + +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "L'installation de l'élément %s a échoué" + #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Aime/n'aime pas" @@ -2073,65 +2034,1180 @@ msgstr "Canal indisponible." msgid "Previous action reversed." msgstr "Action précédente annulée." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 +#: ../../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/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "état" -#: ../../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 "%1$s aime %3$s de %2$s" -#: ../../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 "%1$s n'aime pas %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../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/Like.php:425 +#: ../../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/Like.php:427 +#: ../../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/Like.php:429 +#: ../../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/Like.php:431 +#: ../../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/Like.php:433 +#: ../../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/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "Action terminée." -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "Merci." +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "L'import est terminé." + +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importer" + +#: ../../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/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Limite du nombre total d'invitation dépassée." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : adresse courriel invalide." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Rejoignez-nous sur $Projectname" + +#: ../../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/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Échec de distribution du message." + +#: ../../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/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Vous ne disposez plus d'aucune invitation" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Envoyer des invitations" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Entrez les adresses de courriel, une par ligne :" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Votre message :" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Rejoignez ma communauté sur $Projectname." + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Vous devrez fournir le code suivant :" + +#: ../../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/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/Invite.php:142 +msgid "or visit" +msgstr "ou rendez-vous sur" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Cliquez sur [Ajouter]" + +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Les informations distantes de confidentialité ne sont pas disponibles." + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Visible par :" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Emplacement introuvable." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Echec de la recherche de l'emplacement." + +#: ../../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/Locs.php:95 +msgid "Syncing locations" +msgstr "Synchronisation des emplacements" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Emplacement(s) introuvable." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gérer les emplacements des canaux" + +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adresse" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Supprimer" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "" + +#: ../../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/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/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/Magic.php:71 +msgid "Hub not found." +msgstr "Hub introuvable." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Impossible de localiser le destinataire." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Impossible de communiquer avec le canal demandé." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Impossible de vérifier le canal demandé." + +#: ../../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/Mail.php:143 +msgid "Messages" +msgstr "Messages" + +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Message rappelé." + +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversation supprimée." + +#: ../../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/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "Le canal demandé n'est pas sur ce réseau" + +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Envoyer un message privé" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "À :" + +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Objet :" + +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Joindre un fichier" + +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Envoyer" + +#: ../../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/Mail.php:340 +msgid "Delete message" +msgstr "Supprimer le message" + +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Rapport de distribution" + +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Rappeler le message" + +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "Le message a été rappelé." + +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Supprimer la conversation" + +#: ../../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/Mail.php:367 +msgid "Send Reply" +msgstr "Envoyer la réponse" + +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Votre message pour %s (%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 "Vous avez créé %1$.0f des %2$.0f canaux autorisés." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Créer un nouveau canal" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Gérer les canaux" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canal actif" + +#: ../../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/Manage.php:168 +msgid "Default Channel" +msgstr "Canal par défaut" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Définir comme défaut" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nouveaux messages" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nouvelles présentations" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Aucun compte valide trouvé." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Membre du site (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Demande de réinitialisation du mot de passe sur %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Réinitialiser le mot de passe" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Votre mot de passe a bien été réinitialisé." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Votre nouveau mot de passe est" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Enregistrez ou copiez votre nouveau mot de passe, puis" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "cliquez ici pour vous connecter" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Votre mot de passe peut être changé depuis la page des Paramètres une fois connecté." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Votre mot de passe de %s a été changé" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Mot de passe oublié ?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Adresse de courriel" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Réinitialiser" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossible de mettre le menu à jour." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossible de créer le menu." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nom du menu" + +#: ../../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/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titre du menu" + +#: ../../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/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Autoriser l'usage de favoris" + +#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Valider et continuer" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menus" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Favoris autorisés" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Supprimer ce menu" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifier le contenu du menu" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifier ce menu" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Impossible de supprimer le menu." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menu introuvable." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modifier le menu" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Ajouter/supprimer des entrées à ce menu" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nom du menu" + +#: ../../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/Menu.php:156 +msgid "Menu title" +msgstr "Titre du menu" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titre du menu tel que vu par les visiteurs" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Autoriser l'usage de favoris" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Introuvable." + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s est %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Humeur" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Indiquez votre humeur du moment à vos amis" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profils similaires" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "s'intéresse à :" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Pas de correspondance" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Groupe introuvable" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Canal introuvable" + +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "forum" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Résultats de recherche pour :" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Groupe d'accès vide" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Groupe d'accès :" + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Contact non valide." + +#: ../../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/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notifications du système" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Impossible de créer l'entrée." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Impossible de mettre à jour l'entrée de menu." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Impossible d'ajouter l'entrée de menu." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permissions de l'entrée de menu" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(cliquer pour ouvrir/fermer)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nom du lien" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Lien ou sous-menu cible" + +#: ../../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/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Utiliser l'authentification distante, quand disponible" + +#: ../../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/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Ordre dans la liste" + +#: ../../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/Mitem.php:161 +msgid "Submit and finish" +msgstr "Vadiler et terminer" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Valider et continuer" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menu :" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Cible du lien" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Modifier le menu" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Modifier l'entrée" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Supprimer l'entrée" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nouvelle entrée" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Éditer ce bloc de menu" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Ajouter une entrée au menu" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Supprimer cette entrée du menu" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Modifier cette entrée du menu" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Entrée de menu introuvable." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Entrée de menu supprimée." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Impossible de supprimer l'entrée de menu." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Modifier l'entrée de menu" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Texte du lien" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nom ou libellé" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Exemples : \"Jérôme Dutilleul\", \"Louise et ses chevaux\", \"Football\", \"Club d'aéromodélisme\"" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Choisissez un alias" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Votre pseudo sera utilisé pour créer une adresse de canal facile à mémoriser, par ex. pseudo%s" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Rôle et confidentialité du canal" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Sélectionner un rôle de canal adapté à vos besoins de confidentialité." + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "En savoir plus sur les rôles" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Créer le canal" + +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canal est votre identité sur ce réseau. Il peut représenter une personne, un blog, ou un forum par exemple. Les canaux peuvent entrer en contact les uns avec les autres pour partager des informations avec des permissions d'accès très fines." + +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "ou importer un canal existant d'un autre serveur." + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Identifiant de requête invalide." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Annuler" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Marquer toutes les notifications système comme vues" + +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "Impossible d'obtenir des informations sur le propriétaire de la page." + +#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Photos du profil" + +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Album introuvable." + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Supprimer l'album" + +#: ../../Zotlabs/Module/Photos.php:153 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Supprimer la photo" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Aucune photo selectionnée" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "L'accès à l'élément est restreint." + +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos." + +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f méga-octets utilisés pour le stockage des photos." + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Téléverser des photos" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Entrer un nom d'album" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "ou sélectionner un album existant (double-clic)" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Créer une publication de statut pour cet envoi" + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Légende (facultative)" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Description (facultative)" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "Le nom de l'Album n'a pu être décodé" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Photos de contact" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Les plus récent(e)s en premier" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Les moins récent(e)s en premier" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Voir la photo" + +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Modifier l'album" + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permission refusée. L'accès à cet élément peut avoir été restreint." + +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Photo non disponible" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Utiliser comme photo du profil" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Photo privée" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Voir en taille réelle" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Retirer" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Modifier la photo" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Rotation horaire (droite)" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Rotation anti-horaire (gauche)" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Entrer un nouveau nom d'album" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "ou en sélectionner un existant (double-clic)" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Titre/légende" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Ajouter une étiquette" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Exemple : @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Marquer comme \"adulte\" dans l'affichage de l'album" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "J'aime (oui/non)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Je n'aime pas (oui/non)" + +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Merci de patienter" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "C'est vous" + +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commenter" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Aime" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "N'aime pas" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "D'accord" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Pas d'accord" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Abstention" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Participations" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Non-participations" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Participation possible" + +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1717 +msgid "View all" +msgstr "Voir tout" + +#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 +#: ../../include/channel.php:1158 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Aime" +msgstr[1] "Aime" + +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "N'aime pas" +msgstr[1] "N'aime pas" + +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "Dans cette photo :" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Carte" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Aime" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "N'aime pas" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Fermer" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Voir l'album" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Photos récentes" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "vous a envoyé un message privé" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "a ajouté votre canal" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[aujourd'hui]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "a publié un événement" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Impossible de trouver votre hub." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Publication réussie." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Erreur du protocole OpenID. Pas d'ID retourné." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Échec de la connexion." + +#: ../../Zotlabs/Module/Page.php:133 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editeur de configuration" + +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Attention :modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité." + +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Mise en page mise à jour." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Modifier la description de la page du système" + +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Mise en page introuvable." + +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nom du module :" + +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Aide à la mise en page" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Tapoter" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Taquiner quelqu'un" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Tapoter/Encourager" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Taquiner, pousser ou faire autre chose à quelqu'un" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinataire" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Choisir ce que vous voulez faire au destinataire" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Rendre cette publication privée" + +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Récupération d'URL échouée : %1$s" + #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -2201,11 +3277,6 @@ msgstr "Site Internet" msgid "Interests" msgstr "Centres d'intérêt" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" - #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Profil mis à jour." @@ -2223,7 +3294,7 @@ msgid "View this profile" msgstr "Voir ce profil" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 +#: ../../include/channel.php:959 msgid "Edit visibility" msgstr "Changer la visibilité" @@ -2235,7 +3306,7 @@ msgstr "" msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 msgid "Change profile photo" msgstr "Changer la photo du profil" @@ -2255,8 +3326,8 @@ msgstr "Supprimer ce profil" msgid "Add profile things" msgstr "Ajouter des éléments de profil" -#: ../../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:1526 msgid "Personal" msgstr "Me concernant" @@ -2396,1097 +3467,119 @@ msgstr "" msgid "My other channels" msgstr "Mes autres canaux" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 msgid "Profile Image" msgstr "Image du profil" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 +#: ../../include/channel.php:937 msgid "Edit Profiles" msgstr "Modifier les profils" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Votre forfait n'autorise que %d canaux." - -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Rien à importer." - -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Impossible de récupérer les données de l'ancien serveur" - -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Le fichier importé est vide." - -#: ../../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/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Canal cloné non trouvé. Echec de l'import." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Pas de canal. Echec de l'import." - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "L'import est terminé." - -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Vous devez vous connecter pour utiliser cette fonctionnalité." - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importation de canal" - -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Profile_photo.php:179 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." +"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/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Fichier à envoyer" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Téléverser une photo de profil" -#: ../../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/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identifiant de profil invalide." -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Votre ancienne identité (zyx@exemple.com)" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Éditeur de visibilité de profil" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Votre ancienne adresse de courriel" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profil" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Votre ancien mot de passe" +#: ../../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/Import.php:554 +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible par" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Instances publiques" + +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"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." +"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/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Faire de ce hub mon emplacement primaire" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "URL du site" -#: ../../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/Pubsites.php:31 +msgid "Access Type" +msgstr "Type d'accès" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Ce processus peut prendre plusieurs minutes. Merci de ne valider le formulaire qu'une seule fois et de laisser cette page ouverte jusqu'à la fin." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Politique d'inscription" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenue sur %s" - -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Impossible de localiser la publication initiale." - -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Publication vide annulée." - -#: ../../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/Item.php:989 -msgid "System error. Post not saved." -msgstr "Erreur système. Publication non sauvegardée." - -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "Impossible d'obtenir les informations de publication depuis la base de données." - -#: ../../Zotlabs/Module/Item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Vous avez atteint votre limite de %1$.0f contributions \"racines\"." - -#: ../../Zotlabs/Module/Item.php: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/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/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/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album introuvable." - -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Supprimer l'album" - -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" msgstr "" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Supprimer la photo" - -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Aucune photo selectionnée" - -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "L'accès à l'élément est restreint." - -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos." - -#: ../../Zotlabs/Module/Photos.php: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/Photos.php:658 -msgid "Upload Photos" -msgstr "Téléverser des photos" - -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Entrer un nom d'album" - -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "ou sélectionner un album existant (double-clic)" - -#: ../../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/Photos.php:665 -msgid "Caption (optional):" -msgstr "Légende (facultative)" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Description (facultative)" - -#: ../../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/Photos.php:741 -msgid "Contact Photos" -msgstr "Photos de contact" - -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Les plus récent(e)s en premier" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Les moins récent(e)s en premier" - -#: ../../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/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Modifier l'album" - -#: ../../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/Photos.php:870 -msgid "Photo not available" -msgstr "Photo non disponible" - -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Utiliser comme photo du profil" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" msgstr "" -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Photo privée" +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Evaluations" -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Voir en taille réelle" +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Evaluer" -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Retirer" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Site web :" -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Modifier la photo" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Rotation horaire (droite)" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Rotation anti-horaire (gauche)" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Entrer un nouveau nom d'album" - -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "ou en sélectionner un existant (double-clic)" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Titre/légende" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Ajouter une étiquette" - -#: ../../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/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Marquer comme \"adulte\" dans l'affichage de l'album" - -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "J'aime (oui/non)" - -#: ../../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/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Merci de patienter" - -#: ../../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/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Commenter" - -#: ../../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/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Pas d'accord" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Abstention" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Participations" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Non-participations" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Participation possible" - -#: ../../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/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/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/Photos.php:1233 -msgid "Photo Tools" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "Dans cette photo :" - -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Carte" - -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Aime" - -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "N'aime pas" - -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Fermer" - -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Voir l'album" - -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Photos récentes" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Les informations distantes de confidentialité ne sont pas disponibles." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visible par :" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "L'import est terminé." - -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importer" - -#: ../../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/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Limite du nombre total d'invitation dépassée." - -#: ../../Zotlabs/Module/Invite.php:53 +#: ../../Zotlabs/Module/Rate.php:163 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : adresse courriel invalide." +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal distant [%s] (encore inconnu sur ce site)" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Rejoignez-nous sur $Projectname" +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Evaluation (cette information est publique)" -#: ../../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/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Explication facultative de votre évaluation (cette information est publique)" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Échec de distribution du message." +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Pas de note" -#: ../../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/Ratings.php:104 +msgid "Rating: " +msgstr "Evaluation :" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Vous ne disposez plus d'aucune invitation" +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Site web :" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Envoyer des invitations" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Entrez les adresses de courriel, une par ligne :" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Votre message :" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Rejoignez ma communauté sur $Projectname." - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Vous devrez fournir le code suivant :" - -#: ../../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/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/Invite.php:142 -msgid "or visit" -msgstr "ou rendez-vous sur" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Cliquez sur [Ajouter]" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Emplacement introuvable." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Echec de la recherche de l'emplacement." - -#: ../../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/Locs.php:95 -msgid "Syncing locations" -msgstr "Synchronisation des emplacements" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Emplacement(s) introuvable." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Gérer les emplacements des canaux" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Supprimer" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "" - -#: ../../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/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/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/Magic.php:71 -msgid "Hub not found." -msgstr "Hub introuvable." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Impossible de localiser le destinataire." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Impossible de communiquer avec le canal demandé." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Impossible de vérifier le canal demandé." - -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué." - -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Messages" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Message rappelé." - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversation supprimé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/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Le canal demandé n'est pas sur ce réseau" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Envoyer un message privé" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "À :" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Objet :" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Joindre un fichier" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Envoyer" - -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Définir la date d'expiration" - -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Supprimer le message" - -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Rapport de distribution" - -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Rappeler le message" - -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Le message a été rappelé." - -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Supprimer la conversation" - -#: ../../Zotlabs/Module/Mail.php:355 -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/Mail.php:359 -msgid "Send Reply" -msgstr "Envoyer la réponse" - -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Votre message pour %s (%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 "Vous avez créé %1$.0f des %2$.0f canaux autorisés." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Créer un nouveau 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/Manage.php:165 -msgid "Current Channel" -msgstr "Canal actif" - -#: ../../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/Manage.php:168 -msgid "Default Channel" -msgstr "Canal par défaut" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Définir comme défaut" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nouveaux messages" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nouvelles présentations" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "" - -#: ../../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/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nom du menu" - -#: ../../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/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titre du menu" - -#: ../../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/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Autoriser l'usage de favoris" - -#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Valider et continuer" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menus" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Favoris autorisés" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Supprimer ce menu" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifier le contenu du menu" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifier ce menu" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Impossible de supprimer le menu." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menu introuvable." - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifier le menu" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Ajouter/supprimer des entrées à ce menu" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nom du menu" - -#: ../../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/Menu.php:156 -msgid "Menu title" -msgstr "Titre du menu" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titre du menu tel que vu par les visiteurs" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Autoriser l'usage de favoris" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Introuvable." - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Aucun compte valide trouvé." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Membre du site (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Demande de réinitialisation du mot de passe sur %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Réinitialiser le mot de passe" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Votre mot de passe a bien été réinitialisé." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Votre nouveau mot de passe est" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Enregistrez ou copiez votre nouveau mot de passe, puis" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "cliquez ici pour vous connecter" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Votre mot de passe peut être changé depuis la page des Paramètres une fois connecté." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Votre mot de passe de %s a été changé" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Mot de passe oublié ?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Adresse de courriel" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Réinitialiser" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s est %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Humeur" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Indiquez votre humeur du moment à vos amis" - -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Groupe introuvable" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Canal introuvable" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Résultats de recherche pour :" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "Groupe d'accès vide" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Groupe d'accès :" - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Contact non valide." - -#: ../../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/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notifications du système" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profils similaires" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "s'intéresse à :" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Pas de correspondance" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permissions insuffisantes. Demande redirigée vers la page du profil." - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Impossible de créer l'entrée." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Impossible de mettre à jour l'entrée de menu." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Impossible d'ajouter l'entrée de menu." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permissions de l'entrée de menu" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(cliquer pour ouvrir/fermer)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nom du lien" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Lien ou sous-menu cible" - -#: ../../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/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Utiliser l'authentification distante, quand disponible" - -#: ../../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/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Ordre dans la liste" - -#: ../../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/Mitem.php:161 -msgid "Submit and finish" -msgstr "Vadiler et terminer" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Valider et continuer" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menu :" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Cible du lien" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Modifier le menu" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Modifier l'entrée" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Supprimer l'entrée" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nouvelle entrée" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Éditer ce bloc de menu" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Ajouter une entrée au menu" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Supprimer cette entrée du menu" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Modifier cette entrée du menu" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Entrée de menu introuvable." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Entrée de menu supprimée." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Impossible de supprimer l'entrée de menu." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Modifier l'entrée de menu" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Texte du lien" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Description :" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3573,11 +3666,11 @@ msgstr "" msgid "Site settings updated." msgstr "Paramètres du site sauvegardés." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 msgid "Default" msgstr "Défaut" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 msgid "mobile" msgstr "mobile" @@ -3609,7 +3702,7 @@ msgstr "Mon site est gratuit uniquement" msgid "My site offers free accounts with optional paid upgrades" msgstr "Mon site offre des comptes gratuits avec des améliorations payantes facultatives" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 msgid "Site" msgstr "Site" @@ -3897,12 +3990,12 @@ msgid "0 for no expiration of imported content" msgstr "0 pour ne pas expirer le contenu importé" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "Off" msgstr "Inactif" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "On" msgstr "Actif" @@ -3959,7 +4052,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:1385 msgid "Security" msgstr "Sécurité" @@ -4127,7 +4220,7 @@ msgid "Account '%s' unblocked" msgstr "Compte '%s' débloqué" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1383 msgid "Accounts" msgstr "Comptes" @@ -4233,7 +4326,7 @@ msgstr "Code autorisé pour le canal '%s'" msgid "Channel '%s' code disallowed" msgstr "Code interdit pour le canal '%s'" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 msgid "Channels" msgstr "Canaux" @@ -4253,7 +4346,7 @@ msgstr "Autoriser le code" msgid "Disallow Code" msgstr "Interdire le code" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 msgid "Channel" msgstr "Canal" @@ -4292,7 +4385,7 @@ msgid "Enable" msgstr "Activer" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1387 msgid "Plugins" msgstr "Greffons" @@ -4301,8 +4394,8 @@ msgid "Toggle" msgstr "(Dés)activer" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Paramètres" @@ -4358,7 +4451,7 @@ msgstr "" msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 msgid "Install" msgstr "Installer" @@ -4374,8 +4467,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:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 msgid "Update" msgstr "Mise à jour" @@ -4392,7 +4485,7 @@ msgid "Screenshot" msgstr "Capture d'écran" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1388 msgid "Themes" msgstr "Thèmes" @@ -4408,8 +4501,8 @@ msgstr "[Non maintenu]" msgid "Log settings updated." msgstr "Paramètres du journal mis à jour." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 msgid "Logs" msgstr "Journaux" @@ -4475,7 +4568,7 @@ msgstr "Définition du champ introuvable" msgid "Edit Profile Field" msgstr "Modifier le champ de profil" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 msgid "Profile Fields" msgstr "Champs de profil" @@ -4503,384 +4596,57 @@ msgstr "Champs personnalisés" msgid "Create Custom Field" msgstr "Créer un champ personnalisé" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nom ou libellé" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "Application installée." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "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/Appman.php:46 +msgid "Malformed app." +msgstr "Erreur de l'application - Malformée." -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Choisissez un alias" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Imbriquer le code" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Votre pseudo sera utilisé pour créer une adresse de canal facile à mémoriser, par ex. pseudo%s" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modifier l'application" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Rôle et confidentialité du canal" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Créer une application" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Sélectionner un rôle de canal adapté à vos besoins de confidentialité." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nom de l'application" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "En savoir plus sur les rôles" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Emplacement (URL) de l'application" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Créer le canal" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL de l'icône à utiliser pour cette photo" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canal est votre identité sur ce réseau. Il peut représenter une personne, un blog, ou un forum par exemple. Les canaux peuvent entrer en contact les uns avec les autres pour partager des informations avec des permissions d'accès très fines." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - facultatif" -#: ../../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/Ping.php:265 -msgid "sent you a private message" -msgstr "vous a envoyé un message privé" - -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "a ajouté votre canal" - -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[aujourd'hui]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "a publié un événement" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Identifiant de requête invalide." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Annuler" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Marquer toutes les notifications système comme vues" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Tapoter" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Taquiner quelqu'un" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Tapoter/Encourager" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Taquiner, pousser ou faire autre chose à quelqu'un" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinataire" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Choisir ce que vous voulez faire au destinataire" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Rendre cette publication privée" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Impossible de trouver votre hub." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Publication réussie." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Erreur du protocole OpenID. Pas d'ID retourné." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Échec de la connexion." - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identifiant de profil invalide." - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Éditeur de visibilité de profil" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Cliquer sur un contact pour l'ajouter ou le retirer." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible par" - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editeur de configuration" - -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Attention :modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité." - -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Récupération d'URL échouée : %1$s" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Version %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Greffons/extensions/applications installés :" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Aucun greffon/extension/application installé" - -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Ceci est un serveur $Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée." - -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Étiquette :" - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Dernière récupération en tâche de fond :" - -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Charge moyenne actuelle :" - -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Tourne à l'adresse internet" - -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Merci de visiter hubzilla.org pour en apprendre davantage sur $Projectname." - -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Pour remonter bogues et problèmes, merci de visiter" - -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problèmes $projectname" - -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com" - -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Administrateurs du site" - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est correctement saisi." - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Le message d'erreur était :" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Échec de l'authentification." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Authentification distante" - -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)" - -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authentifier" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Instances publiques" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself 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" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Type d'accès" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Politique d'inscription" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Identifiant de version" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Evaluations" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prix de l'application" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Evaluer" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement." - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Téléverser une photo de profil" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nom du Bloc" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Blocs" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titre du bloc" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Site web :" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal distant [%s] (encore inconnu sur ce site)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Evaluation (cette information est publique)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Explication facultative de votre évaluation (cette information est publique)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Pas de note" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Evaluation :" - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Site web :" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Description :" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Applications" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Titre (facultatif)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modifier le bloc" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Pas de canal." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Contacts en commun" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Pas de contacts en commun." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Emplacement (URL) pour l'achat de l'application" #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -4985,154 +4751,120 @@ msgstr "oui" msgid "Membership on this site is by invitation only." msgstr "L'inscription à ce site se fait uniquement sur invitation." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 msgid "Register" msgstr "S'inscrire" -#: ../../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 "Continuer pour créer votre premier canal" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Merci de vous connecter." -#: ../../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 "Il est impossible de supprimer un compte dans les 48 heures après avoir changé le mot de passe du compte." -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "Supprimer ce compte" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "AVERTISSEMENT :" -#: ../../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 "Ce compte et tous ses canaux seront entièrement supprimés du réseau." -#: ../../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 "Cette action est permanente et irréversible !" -#: ../../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 "Merci de saisir votre mot de passe pour vérification :" -#: ../../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 "Supprimer du réseau ce compte, tous ses canaux et tous les clones de ses canaux." -#: ../../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 "Par défaut, seules les instances des canaux situés sur ce hub seront supprimées du réseau" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Remove Account" msgstr "Supprimer le compte" -#: ../../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 "Il est impossible de supprimer un canal moins de 48 heures après avoir changé le mot de passe d'un compte." -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "Supprimer ce canal" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../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/Removeme.php:63 +#: ../../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/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 "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 msgid "Remove Channel" msgstr "Supprimer le canal" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exporter le canal" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Rmagic.php:44 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." +"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/Uexport.php:58 -msgid "Export Content" -msgstr "Exporter le contenu" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Le message d'erreur était :" -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence." +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Échec de l'authentification." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporter vos publications d'une année en particulier" +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Authentification distante" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit." +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)" -#: ../../Zotlabs/Module/Uexport.php: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/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/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/Rmagic.php:90 +msgid "Authenticate" +msgstr "Authentifier" #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -5148,652 +4880,609 @@ msgstr "Résultats de recherche pour : %s" msgid "No service class restrictions found." msgstr "Aucune restriction de classe de service trouvée." -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:69 msgid "Name is required" msgstr "Le nom est requis" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:73 msgid "Key and Secret are required" msgstr "Clef et secret sont requis" -#: ../../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 "Adresse de courriel non valide." -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../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:286 +#: ../../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:303 +#: ../../Zotlabs/Module/Settings.php:254 msgid "Password verification failed." msgstr "La vérification du mot de passe a échoué." -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../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:314 +#: ../../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:328 +#: ../../Zotlabs/Module/Settings.php:279 msgid "Password changed." msgstr "Le mot de passe a été changé." -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../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:579 +#: ../../Zotlabs/Module/Settings.php:525 msgid "Settings updated." msgstr "Paramètres mis à jour." -#: ../../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 "Ajouter une application" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:592 msgid "Name of application" msgstr "Nom de l'application" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 msgid "Consumer Key" msgstr "Clef client" -#: ../../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 "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères." -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 msgid "Consumer Secret" msgstr "Secret client" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 +#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 msgid "Redirect" msgstr "Redirection" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../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:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 msgid "Icon url" msgstr "URL de l'icône" -#: ../../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 "Facultatif" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:607 msgid "Application not found." msgstr "Application introuvable." -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:650 msgid "Connected Apps" msgstr "Applications connectées" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:654 msgid "Client key starts with" msgstr "La clef partagée commence par" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:655 msgid "No name" msgstr "Sans nom" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:656 msgid "Remove authorization" msgstr "Révoquer l'autorisation" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Settings.php:669 msgid "No feature settings configured" msgstr "Aucun paramètre de fonctionnalité configuré" -#: ../../Zotlabs/Module/Settings.php:730 +#: ../../Zotlabs/Module/Settings.php:676 msgid "Feature/Addon Settings" msgstr "Paramètres des extensions/greffons" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:699 msgid "Account Settings" msgstr "Paramètres du compte" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:700 msgid "Current Password" msgstr "Mot de passe actuel" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:701 msgid "Enter New Password" msgstr "Entrez votre nouveau mot de passe" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Confirm New Password" msgstr "Confirmez le nouveau mot de passe" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../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:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 msgid "Email Address:" msgstr "Adresse de courriel :" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../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: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 "Fonctionnalités additionnelles" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Connector Settings" msgstr "Paramètres du connecteur" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../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:896 +#: ../../Zotlabs/Module/Settings.php:795 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Expérimental)" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:837 msgid "Display Settings" msgstr "Afficher les paramètres" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:838 msgid "Theme Settings" msgstr "Paramètres du thème" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:839 msgid "Custom Theme Settings" msgstr "Paramètres personnels du thème" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:840 msgid "Content Settings" msgstr "Paramètres liés au contenu" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:846 msgid "Display Theme:" msgstr "Afficher le thème :" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:847 msgid "Mobile Theme:" msgstr "Thème mobile :" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../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:949 +#: ../../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:950 +#: ../../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:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Update browser every xx seconds" msgstr "Mettre à jour le navigateur toutes les xx secondes" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 secondes, pas de maximum" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../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:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum of 100 items" msgstr "100 éléments au maximum" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:852 msgid "Show emoticons (smilies) as images" msgstr "Remplacer les émoticônes (smileys) par des images" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../Zotlabs/Module/Settings.php:853 msgid "Link post titles to source" msgstr "Lier les titres des publications à leur source" -#: ../../Zotlabs/Module/Settings.php:955 +#: ../../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:958 +#: ../../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:958 ../../Zotlabs/Module/Settings.php:959 +#: ../../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:959 +#: ../../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:960 +#: ../../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: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 "cliquer pour dérouler le contenu dépassant cette limite" -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../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:990 +#: ../../Zotlabs/Module/Settings.php:894 msgid "Nobody except yourself" msgstr "Personne sauf vous" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:895 msgid "Only those you specifically allow" msgstr "Seulement ceux que vous autorisez spécifiquement" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:896 msgid "Approved connections" msgstr "Contacts approuvés" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:897 msgid "Any connections" msgstr "Tous les contacts" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:898 msgid "Anybody on this website" msgstr "Tous les utilisateurs du hub" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:899 msgid "Anybody in this network" msgstr "Tous les utilisateurs sur ce réseau" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:900 msgid "Anybody authenticated" msgstr "Tous les utilisateurs authentifiés" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:901 msgid "Anybody on the internet" msgstr "Tous les utilisateurs d'Internet" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../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/Settings.php:1076 +#: ../../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/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Your channel address is" msgstr "L'adresse de votre canal est" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1032 msgid "Channel Settings" msgstr "Paramètres du canal" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1039 msgid "Basic Settings" msgstr "Paramètres standard" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 msgid "Full Name:" msgstr "Nom complet :" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1042 msgid "Your Timezone:" msgstr "Votre fureau horaire :" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Default Post Location:" msgstr "Emplacement de publication par défaut :" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Geographical location to display on your posts" msgstr "Emplacement géographique à afficher sur vos publications" -#: ../../Zotlabs/Module/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1044 msgid "Use Browser Location:" msgstr "Utiliser la géolocalisation du navigateur :" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "Adult Content" msgstr "Contenu \"adulte\"" -#: ../../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 "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/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1048 msgid "Security and Privacy Settings" msgstr "Paramètres de sécurité et de confidentialité" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../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/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Hide my online presence" msgstr "Cacher ma présence en ligne" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../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/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Simple Privacy Settings:" msgstr "Paramètres de confidentialité simplifiés :" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../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/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 "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:1153 +#: ../../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/Settings.php:1154 +#: ../../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/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "Allow others to tag your posts" msgstr "Autoriser les autres à \"étiqueter\" vos publications" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 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:1158 +#: ../../Zotlabs/Module/Settings.php:1063 msgid "Advanced Privacy Settings" msgstr "Paramètres de confidentialité avancés" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../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/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 #, php-format msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../Zotlabs/Module/Settings.php:1065 msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "Maximum Friend Requests/Day:" msgstr "Nombre maximum de demandes de contact par jour :" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "May reduce spam activity" msgstr "Contribue à réduire l'impact des indésirables" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1067 msgid "Default Post and Publish Permissions" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../Zotlabs/Module/Settings.php:1069 msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Module/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1072 msgid "Channel permissions category:" msgstr "Catégorie de permissions du canal :" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../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/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Useful to reduce spamming" msgstr "Utile pour réduire les indésirables" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1081 msgid "Notification Settings" msgstr "Paramètres de notification" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1082 msgid "By default post a status message when:" msgstr "Par défaut, publier un statut quand :" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1083 msgid "accepting a friend request" msgstr "vous acceptez une demande de contact" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1084 msgid "joining a forum/community" msgstr "vous rejoignez un forum ou une communauté" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "making an interesting profile change" msgstr "vous faîtes une modification intéressante de votre profil" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1086 msgid "Send a notification email when:" msgstr "Envoyer un courriel de notification quand :" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1087 msgid "You receive a connection request" msgstr "Vous recevez une demande de contact" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1088 msgid "Your connections are confirmed" msgstr "Vos contacts sont confirmés" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../Zotlabs/Module/Settings.php:1089 msgid "Someone writes on your profile wall" msgstr "Quelqu'un a écrit sur votre mur" -#: ../../Zotlabs/Module/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1090 msgid "Someone writes a followup comment" msgstr "Quelqu'un a commenté vos publications" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1091 msgid "You receive a private message" msgstr "Vous recevez un message privé" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1092 msgid "You receive a friend suggestion" msgstr "Vous recevez une suggestion d'amitié/contact" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1093 msgid "You are tagged in a post" msgstr "Vous êtes étiqueté dans une publication" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../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/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1097 msgid "Show visual notifications including:" msgstr "Afficher des notifications visuelles y compris :" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1099 msgid "Unseen grid activity" msgstr "Activité du réseau pas encore consultée" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1100 msgid "Unseen channel activity" msgstr "Activité non vue sur le canal" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1101 msgid "Unseen private messages" msgstr "Messages privés non lus" -#: ../../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 "Recommandé" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1102 msgid "Upcoming events" msgstr "Événements à venir" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1103 msgid "Events today" msgstr "Événements aujourd'hui" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Upcoming birthdays" msgstr "Anniversaires à venir" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Not available in all themes" msgstr "Pas disponible dans tous les thèmes" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1105 msgid "System (personal) notifications" msgstr "Notifications système (personnelles)" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "System info messages" msgstr "Messages d'info système" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1107 msgid "System critical alerts" msgstr "Alertes critiques système" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "New connections" msgstr "Nouveaux contacts" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1109 msgid "System Registrations" msgstr "Inscriptions système" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1110 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:1207 +#: ../../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/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Must be greater than 0" msgstr "Doit être supérieur à 0" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../Zotlabs/Module/Settings.php:1114 msgid "Advanced Account/Page Type Settings" msgstr "Paramètres avancés de compte/type de page" -#: ../../Zotlabs/Module/Settings.php:1210 +#: ../../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/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1118 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:1214 +#: ../../Zotlabs/Module/Settings.php:1119 msgid "Miscellaneous Settings" msgstr "Paramètres divers" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../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/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 - année en cours, %m - mois en cours" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../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/Settings.php:1218 +#: ../../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/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Remove this channel." msgstr "Supprimer ce canal" -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1126 msgid "Firefox Share $Projectname provider" msgstr "Connecteur $Projectname pour Firefox Share" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Start calendar week on monday" msgstr "Commencer la semaine du calendrier le lundi" @@ -5826,7 +5515,7 @@ msgid "" msgstr "Vous pourriez avoir besoin d'importer le fichier \"install/schema_xxx.sql\" manuellement via un client de base de données (ex: phpmyadmin)." #: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 +#: ../../Zotlabs/Module/Setup.php:721 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Merci de consulter le fichier \"install/INSTALL.txt\"." @@ -6026,200 +5715,199 @@ msgid "mb_string PHP module" msgstr "module PHP mb_string" #: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "module PHP mcrypt" + +#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "module PHP xml" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 msgid "Apache mod_rewrite module" msgstr "module 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 "Erreur : le module mod-rewrite du serveur web Apache est requis, mais pas installé." -#: ../../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 "Erreur : proc_open est requis, mais soit n'est pas installé, soit est désactivé dans le php.ini" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../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/Setup.php:518 +#: ../../Zotlabs/Module/Setup.php:519 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/Setup.php:522 +#: ../../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/Setup.php:526 +#: ../../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/Setup.php:530 +#: ../../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/Setup.php:534 +#: ../../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/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/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'installeur web a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable." -#: ../../Zotlabs/Module/Setup.php: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 "C'est généralement lié à un problème de droits, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit." -#: ../../Zotlabs/Module/Setup.php: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 "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de $Projectname." -#: ../../Zotlabs/Module/Setup.php: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 "Autrement, vous pouvez contourner toute cette procédure et réaliser l'installation manuellement. Merci de consulter le fichier \"install/INSTALL.txt\" pour les instructions détaillées." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:563 msgid ".htconfig.php is writable" msgstr "Le fichier .htconfig.php est accessible en écriture" -#: ../../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 "$Projectname utilise le moteur de gabarits Smarty3 pour mettre son contenu en forme. Smarty3 compile ses modèles vers du PHP natif pour accélérer le rendu." -#: ../../Zotlabs/Module/Setup.php: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 "" -#: ../../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 "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire." -#: ../../Zotlabs/Module/Setup.php: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 "Note: Comme mesure de sécurité, assurez vous de donner les droits d'écriture au serveur web sur %s uniquement, pas sur les fichiers individuels (.tpl) qu'il contient." -#: ../../Zotlabs/Module/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:583 #, php-format msgid "%s is writable" msgstr "Permission d'écriture sur %s activée" -#: ../../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 "$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/Setup.php:598 +#: ../../Zotlabs/Module/Setup.php:603 msgid "store is writable" msgstr "'store' est accessible en écriture" -#: ../../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 "Le certificat SSL/TLS n'a pas pu être validé. Merci de le corriger, ou de désactiver l'accès https à ce site (non recommandé)." -#: ../../Zotlabs/Module/Setup.php: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 "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/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 "Nous avons ajouté cette contrainte pour éviter que vos publications publiques ne fassent référence par exemple à des images sur votre propre hub." -#: ../../Zotlabs/Module/Setup.php: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 "Si votre certificat n'est pas reconnu, les membres des autres sites (qui eux peuvent avoir des certificats valides) recevront des messages d'avertissement sur leur propre site se plaignant de problèmes de sécurité." -#: ../../Zotlabs/Module/Setup.php: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 "Ceci peut causer des problèmes d'ergonomie ailleurs (pas seulement sur votre site), nous devons donc insister sur ce prérequis." -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../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/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 "Validation du certificat SSL/TLS" -#: ../../Zotlabs/Module/Setup.php:647 +#: ../../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/Module/Setup.php:650 +#: ../../Zotlabs/Module/Setup.php:652 msgid "Url rewrite is working" msgstr "La réécriture d'URL fonctionne" -#: ../../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 "Le fichier de configuration de la base de données - \".htconfig.php\" - ne peut être écrit. Merci de copier le texte généré dans un fichier à ce nom, à la racine de votre serveur web." -#: ../../Zotlabs/Module/Setup.php:683 +#: ../../Zotlabs/Module/Setup.php:685 msgid "Errors encountered creating database tables." msgstr "Erreurs rencontrées pendant la création de tables de BDD." -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:719 msgid "

What next

" msgstr "

Et maintenant

" -#: ../../Zotlabs/Module/Setup.php:721 +#: ../../Zotlabs/Module/Setup.php:720 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6241,62 +5929,64 @@ msgstr "Supprimer tous les fichiers" msgid "Remove this file" msgstr "Supprimer ce fichier" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Elément mis à jour" - -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Stockage de l'objet : échec" - -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Elément ajouté" - -#: ../../Zotlabs/Module/Thing.php:196 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +msgid "Version %s" +msgstr "Version %s" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Montrer élément" +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Greffons/extensions/applications installés :" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "élément introuvable." +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Aucun greffon/extension/application installé" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Modifier élément" +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Ceci est un serveur $Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée." -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Choisissez un profil" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Étiquette :" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Publier une activité" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Dernière récupération en tâche de fond :" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Envoie exclusivement aux visiteurs du profil concerné" +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Charge moyenne actuelle :" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Nom de l'élément, p.ex. quelque-chose" +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Tourne à l'adresse internet" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL de l'élément (facultatif)" +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Merci de visiter hubzilla.org pour en apprendre davantage sur $Projectname." -#: ../../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/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Pour remonter bogues et problèmes, merci de visiter" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Ajouter l'élément à votre profil" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "Problèmes $projectname" + +#: ../../Zotlabs/Module/Siteinfo.php:80 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com" + +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Administrateurs du site" #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6314,8 +6004,8 @@ msgstr "Source mise à jour." 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 "Sources du canal" @@ -6391,12 +6081,12 @@ msgstr "Aucune suggestion disponible. Si le site est récent, merci de re-tenter msgid "Ignore/Hide" msgstr "Ignorer/Cacher" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 msgid "post" msgstr "publication" -#: ../../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 "commentaire" @@ -6417,110 +6107,131 @@ msgstr "Retirer une étiquette à l'élément" msgid "Select a tag to remove: " msgstr "Étiquette à retirer :" -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Pages web" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Elément mis à jour" -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Actions" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Stockage de l'objet : échec" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Lien vers la page" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Elément ajouté" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Titre de la page" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Montrer élément" -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:108 ../../include/conversation.php:1710 -#: ../../include/conversation.php:1713 ../../include/features.php:55 -msgid "Wiki" -msgstr "" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "élément introuvable." -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Modifier élément" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Choisissez un profil" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Publier une activité" + +#: ../../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/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/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL de l'élément (facultatif)" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "URL d'une photo de l'élément (facultatif)" + +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Ajouter l'élément à votre profil" + +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exporter le canal" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus." -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exporter le contenu" -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "" +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence." -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporter vos publications d'une année en particulier" -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit." -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "" +#: ../../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/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -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/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -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/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 +#: ../../Zotlabs/Module/Viewconnections.php:62 msgid "No connections." msgstr "Aucun contact." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visiter le profil de %s [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:104 msgid "View Connections" msgstr "Voir les contacts" @@ -6528,23 +6239,22 @@ msgstr "Voir les contacts" msgid "Source of Item" msgstr "Source de l'élément" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autoriser l'application à se connecter" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Pages web" -#: ../../Zotlabs/Module/Api.php: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/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Actions" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Merci de vous identifier pour continuer." +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Lien vers la page" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Titre de la page" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6554,6 +6264,92 @@ msgstr "Recherche xchan" msgid "Lookup xchan beginning with (or webbie): " msgstr "Recherche xchan commençant par (ou adresse \"webbie\") :" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Administrateur" + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Suggérer des canaux" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Connexion" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Réseau" + +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Mon canal" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Événements" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Annuaire" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Messages" + +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Clavardage" + +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Sonder" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Suggérer" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Un canal au hasard" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Invitation" + +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Fonctionalités" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Envoyer" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Acheter" + #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Il manque le nom du salon" @@ -6574,19 +6370,19 @@ msgstr "Salon introuvable." msgid "Room is full" msgstr "Le salon est plein" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 msgid "$Projectname Notification" msgstr "Notification $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 msgid "Thank You," msgstr "Merci," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format msgid "%s Administrator" msgstr "l'administrateur de %s" @@ -6779,97 +6575,11 @@ msgstr "a publié un nouveau message" msgid "commented on %s's post" msgstr "a commenté la publication de %s" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Administrateur" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Suggérer des canaux" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Connexion" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Réseau" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Mon canal" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Événements" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Annuaire" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Messages" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Clavardage" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Sonder" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Suggérer" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Un canal au hasard" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Invitation" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Fonctionalités" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Envoyer" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Acheter" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 msgid "Private Message" msgstr "Message Privé" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 msgid "Select" msgstr "Sélectionner" @@ -6917,11 +6627,11 @@ msgstr "(Dés)activer l'étoile" msgid "starred" msgstr "mis en avant" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 msgid "Message signature validated" msgstr "Signature du message validée" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 msgid "Message signature incorrect" msgstr "Signature du message incorrecte" @@ -6977,17 +6687,17 @@ msgstr "Mur-à-mur" msgid "via Wall-To-Wall:" msgstr "par Mur-à-mur :" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 #, php-format msgid "from %s" msgstr "de %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 #, php-format msgid "last edited: %s" msgstr "dernière modification : %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 #, php-format msgid "Expires: %s" msgstr "Expire : %s" @@ -7005,27 +6715,26 @@ msgid "Mark all seen" msgstr "Tout marquer comme vu" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "" +msgid "[+] show all" +msgstr "[+] voir tous" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 msgid "Bold" msgstr "Gras" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 msgid "Italic" msgstr "Italique" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 msgid "Underline" msgstr "Souligné" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 msgid "Quote" msgstr "Citation" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 msgid "Code" msgstr "Code" @@ -7041,74 +6750,11 @@ msgstr "Insérer un lien" msgid "Video" msgstr "Vidéo" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Visible pour vos contacts seulement" - -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Public" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "" - #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Aucun nom d'utilisateur dans le fichier d'import." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +#: ../../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." @@ -7117,291 +6763,6 @@ msgstr "Impossible de créer une adresse de canal unique. Echec de l'import." msgid "Cannot locate DNS info for database server '%s'" msgstr "Impossible de trouver les infos DNS du serveur de BDD '%s'" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'image dépasse la taille limite de %lu octets" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "L'image est vide." - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Le stockage de l'image a échoué." - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "une nouvelle photo" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s a publié %2$s pour %3$s" - -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Albums photo" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Ajouter des photos" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Déconnexion" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Mettre fin à la session" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Mon canal" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Vos publications et conversations" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Votre profil" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Gérer/modifier les profils" - -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Éditeur de profil" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Modifier votre profil" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Vos photos" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Vos fichiers" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Vos salons" - -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Favoris" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Vos favoris" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Vos pages web" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Connexion" - -#: ../../include/nav.php:129 -#, php-format -msgid "%s - click to logout" -msgstr "%s - cliquer ici pour déconnecter" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Authentification distante" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "S'authentifier auprès de votre hub principal" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Page d'accueil" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Créer un compte" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Aide et documentation" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Applications, utilitaires, liens, jeux" - -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Recherche @nom, #tag, contenu" - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Annuaire des canaux" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Votre réseau" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Marquer toutes les notifications du réseau comme vues" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Mon canal" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Marquer toutes les notifications du canal comme vues" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Notifications" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notifications" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Voir toutes les notifications" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Messages privés" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Voir tous les messages privés" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Marquer tous les messages privés comme vus" - -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Boîte de réception" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Boîte d'envoi" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nouveau message" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Calendrier des événements" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Voir tous les événements" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Marquer tous les événements comme vus" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Gérer vos canaux" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Paramètres du Compte/Canal" - -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Administrateur" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Configuration du site" - -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Chargement..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@nom, #étiquette, ?doc, contenu" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Merci de patienter..." - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "voir en taille réelle" - -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrateur" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Pas d'objet" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "Linkedin" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nouvelle page" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titre" - #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -7440,159 +6801,952 @@ 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/channel.php:67 -msgid "Empty name" -msgstr "Nom vide" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Début :" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nom trop long" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Fin :" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Pas d'identifiant de compte" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Cet évènement a été ajouté dans votre calendrier." -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Un surnom est requis." +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Non spécifié" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Surnom réservé. Merci d'en choisir un autre." +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Besoin d'une action" -#: ../../include/channel.php:212 +#: ../../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 "" -"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." +"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/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Impossible de récupérer l'identité créée" +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "Echec du clonage du canal. Echec de l'impot." -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Profil par défaut" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Inconnu)" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Canal demandé non disponible." +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Visible pour tout le monde sur internet." -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Créer un nouveau profil" +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Visible pour vous seulement." -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Visible de tous" +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Visible pour tout le monde sur ce réseau." -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Sexe :" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Visible aux utilisateurs authentifiés." -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "État :" - -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Site Internet :" - -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Connecté" - -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "J'aime ce canal" - -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Date de naissance :" - -#: ../../include/channel.php:1232 +#: ../../include/items.php:1144 #, php-format -msgid "for %1$d %2$s" -msgstr "depuis %1$d %2$s" +msgid "Visible to anybody on %s." +msgstr "Visible pour tous sur %s." -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Orientation sexuelle :" +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Visible pour tous les contacts." -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Étiquettes :" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Visible aux contacts approuvés." -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Opinions politiques :" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Visible pour certains contacts." -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religion :" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "Groupe d'accès vide." -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Occupations/Centres d'intérêt :" +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Groupe d'accès : %s" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Aime :" +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Contact non trouvé." -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "N'aime pas :" +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "photo de profil" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Coordonnées et réseaux sociaux :" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Pas de destinataire." -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Mes autres canaux :" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[sans objet]" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Goûts musicaux :" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Impossible de déterminer l'émetteur." -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Lectures, goûts littéraires :" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Le message stocké n'a pas pu être vérifié." -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Télévision :" +#: ../../include/text.php:428 +msgid "prev" +msgstr "préc." -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Cinéma/danse/culture/divertissement&nsbp;:" +#: ../../include/text.php:430 +msgid "first" +msgstr "premier" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Vie sentimentale/amoureuse :" +#: ../../include/text.php:459 +msgid "last" +msgstr "dernier" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Travail/Occupation " +#: ../../include/text.php:462 +msgid "next" +msgstr "Suivant" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Études " +#: ../../include/text.php:472 +msgid "older" +msgstr "plus ancien" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "J'aime ceci" +#: ../../include/text.php:474 +msgid "newer" +msgstr "plus récent" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "Pas de relations." + +#: ../../include/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "Voir les %s contacts" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "tapoter" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "a tapoté" + +#: ../../include/text.php:1039 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "pingé" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "encourager" + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "encouragé" + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "giffler" + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "gifflé(e)" + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "pointer" + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "pointé" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "rejetter" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "rejeté" + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "heureux" + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "mélancolique" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "fatigué" + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "impertinent" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "en colère" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "stupéfait" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "perplexe" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "intéressé" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "amer" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "plein d'entrain" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "vivant" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "agaçé" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "anxieux" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "énervé" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "perturbé" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustré" + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "déprimé" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivé" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "détendu" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "surpris" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "Lundi" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "Mardi" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "Mercredi" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "Jeudi" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "Vendredi" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "Samedi" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "Dimanche" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "Janvier" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "Février" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "Mars" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "Avril" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "Juin" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "Juillet" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "Août" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "Septembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "Octobre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "Novembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "Décembre" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Pièce jointe inconnue" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "Inconnu" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "supprimer la catégorie" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "retirer du fichier" + +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "défaut" + +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Mise en page" + +#: ../../include/text.php:1761 +msgid "You can create your own with the layouts tool" +msgstr "Créez les vôtres avec les outils de mise en page" + +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Type de contenu de la page" + +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Choisir une langue alternative" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "activité" + +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Outils de conception" + +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Pages" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Système" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggestions" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Voir plus..." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Vous avez %1$.0f sur %2$.0f contacts autorisés." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Ajouter un nouveau contact" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Saisissez l'adresse du canal" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Exemples : pierre@exemple.com, https://exemple.com/sophie" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notes" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Retirer le terme" + +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Recherches sauvegardées" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "ajouter" + +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Dossiers sauvegardés" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tout" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archives" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Actualiser" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Paramètres du compte" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Paramètres du canal" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Fonctionnalités supplémentaires" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Paramètres des extensions/greffons" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Paramètres d'affichage" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Exporter le canal" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Applications connectées" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Paramètres de canal VIP" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Menu des messages privés" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Vue combinée" + +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Boîte de réception" + +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Boîte d'envoi" + +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nouveau message" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversations" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Messages reçus" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Messages envoyés" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Pas de message." + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Supprimer la conversation" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Menu Evènements" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Vue Jour" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Vue Semaine" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Vue Mois" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Outils Evènements" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Exporter le calendrier" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importer un calendrier" + +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Salons de clavardage" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "" + +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Salons favoris" + +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Salons suggérés" + +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "photo/image" + +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Cliquer pour voir plus" + +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Outils d'évaluation" + +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "M'évaluer" + +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Voir mes évaluations" + +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Membres du forum" + +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Tâches" + +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Documentation" + +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Information sur le site/projet" + +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Pour les membres" + +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Pour les administrateurs" + +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Pour les développeurs" + +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Analyser la file d'attente" + +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Mises à jour BDD" + +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Administrateur" + +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Fonctionnalités des greffons" + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Ce canal est bloqué sur ce site." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Emplacement du canal introuvable." + +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "La réponse du canal distant était incomplète." + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Le canal a été supprimé et n'existe plus." + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocole désactivé." + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "La tentative d'accéder au canal a échoué." + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Ne peut pas se connecter à vous." + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Favoris de %1$s" + +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Fil public" + +#: ../../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/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Contenu chiffré" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installer %s élément" + +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site." + +#: ../../include/bbcode.php: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/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Cliquer pour ouvrir/fermer" + +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Ce texte aura un rendu différent en fonction des utilisateurs" + +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 a écrit :" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Options d'annuaire" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Mode sûr" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Les forums publics uniquement" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Ce site uniquement" + +#: ../../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/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Déconnexion" + +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Mettre fin à la session" + +#: ../../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/nav.php:86 +msgid "Your profile page" +msgstr "Votre profil" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Gérer/modifier les profils" + +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Éditeur de profil" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Modifier votre profil" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Vos photos" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Vos fichiers" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Vos salons" + +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Favoris" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Vos favoris" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Vos pages web" + +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Connexion" + +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - cliquer ici pour déconnecter" + +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Authentification distante" + +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "S'authentifier auprès de votre hub principal" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Page d'accueil" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Créer un compte" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Aide et documentation" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Applications, utilitaires, liens, jeux" + +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Recherche @nom, #tag, contenu" + +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Annuaire des canaux" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Votre réseau" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Marquer toutes les notifications du réseau comme vues" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Mon canal" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Marquer toutes les notifications du canal comme vues" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Notifications" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notifications" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Voir toutes les notifications" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Messages privés" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Voir tous les messages privés" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Marquer tous les messages privés comme vus" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Calendrier des événements" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Voir tous les événements" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Marquer tous les événements comme vus" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Gérer vos canaux" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Paramètres du Compte/Canal" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Configuration du site" + +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Chargement..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@nom, #étiquette, ?doc, contenu" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Merci de patienter..." #: ../../include/connections.php:95 msgid "New window" @@ -7607,6 +7761,52 @@ msgstr "Ouvrir l'emplacement dans une fenêtre ou un onglet différent" msgid "User '%s' deleted" msgstr "Utilisateur '%s' supprimé" +#: ../../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/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Trouver des canaux" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Saisir nom ou centre d'intérêt" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Ajouter/Suivre" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemples: Guillaume Martin, Course à pieds" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Un profil au hasard" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Inviter des amis" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Exemple avancé : name=fred and country=iceland" + +#: ../../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/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7617,269 +7817,258 @@ msgstr "%1$s ajoute %2$s à ses contacts" msgid "%1$s poked %2$s" msgstr "%1$s a tapoté %2$s" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "a tapoté" - -#: ../../include/conversation.php:694 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "Voir le profil de %s @ %s" -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Catégories :" -#: ../../include/conversation.php:714 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Classé sous :" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "Voir en contexte" -#: ../../include/conversation.php:850 +#: ../../include/conversation.php:847 msgid "remove" msgstr "supprimer" -#: ../../include/conversation.php:855 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Supprimer les éléments selectionnés" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Voir source" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Suivre la discussion" -#: ../../include/conversation.php:953 +#: ../../include/conversation.php:950 msgid "Unfollow Thread" msgstr "Ne plus suivre la discussion" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:955 msgid "Activity/Posts" msgstr "Activité/Publications" -#: ../../include/conversation.php:960 +#: ../../include/conversation.php:957 msgid "Edit Connection" msgstr "Modifier le contact" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:958 msgid "Message" msgstr "Message" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "%s aime ça." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "%s n'aime pas ça." -#: ../../include/conversation.php:1082 +#: ../../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/conversation.php:1084 +#: ../../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/conversation.php:1090 +#: ../../include/conversation.php:1087 msgid "and" msgstr "et" -#: ../../include/conversation.php:1093 +#: ../../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/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "%s aime ça." -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "%s n'aime pas ça." -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "Spécifier votre emplacement géographique" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Supprimer l'emplacement géographique du navigateur" -#: ../../include/conversation.php:1182 +#: ../../include/conversation.php:1177 msgid "Tag term:" msgstr "Étiquette :" -#: ../../include/conversation.php:1183 +#: ../../include/conversation.php:1178 msgid "Where are you right now?" msgstr "Où êtes-vous en ce moment ?" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1210 msgid "Page link name" msgstr "Nom du lien vers la page" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:1213 msgid "Post as" msgstr "Publier en tant que" -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1223 msgid "Toggle voting" msgstr "(Dés)activer le vote" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Catégories (facultatives, séparées par des virgules)" -#: ../../include/conversation.php:1269 +#: ../../include/conversation.php:1254 msgid "Set publish date" msgstr "Définir la date de publication" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "À découvrir" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Flux publics importés" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Par date de commentaire" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Trier par date de dernier commentaire" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Par date de publication" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Trier par date de publication" -#: ../../include/conversation.php:1544 +#: ../../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/conversation.php:1553 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Flux d'activité - par date" -#: ../../include/conversation.php:1559 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Mis en avant (étoiles)" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Publications préférées" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Indésirable" -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Publications marquées comme indésirables" -#: ../../include/conversation.php:1629 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Messages d'état et contributions" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1623 msgid "About" msgstr "À propos" -#: ../../include/conversation.php:1641 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Détails du profil" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Albums photo" + +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Fichiers et Stockage" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Salons de clavardage" - -#: ../../include/conversation.php:1693 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Favoris sauvegardés" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Gérer les pages web" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Participe" msgstr[1] "Participent" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Ne participe pas" msgstr[1] "Ne participent pas" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indécis(e)" msgstr[1] "Indécis(es)" -#: ../../include/conversation.php:1777 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "D'accord" msgstr[1] "D'accord" -#: ../../include/conversation.php:1780 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Pas d'accord" msgstr[1] "Pas d'accord" -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "S'abstient" msgstr[1] "S'abstiennent" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "L'import a échoué. Un canal existe déjà avec ce nom" - -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Echec du clonage du canal. Echec de l'impot." - #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Fréquemment" @@ -7944,6 +8133,12 @@ msgstr "Neutre" msgid "Non-specific" msgstr "Non spécifique" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "Autre" + #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Indécis" @@ -8120,366 +8315,361 @@ msgstr "S'en fiche" msgid "Ask me" msgstr "Me demander" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Favoris de %1$s" +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Visible pour vos contacts seulement" -#: ../../include/security.php:109 -msgid "guest:" +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" 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." -msgstr "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures)." +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Public" -#: ../../include/text.php:404 -msgid "prev" -msgstr "préc." +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "" -#: ../../include/text.php:406 -msgid "first" -msgstr "premier" - -#: ../../include/text.php:435 -msgid "last" -msgstr "dernier" - -#: ../../include/text.php:438 -msgid "next" -msgstr "Suivant" - -#: ../../include/text.php:448 -msgid "older" -msgstr "plus ancien" - -#: ../../include/text.php:450 -msgid "newer" -msgstr "plus récent" - -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Pas de relations." - -#: ../../include/text.php:868 +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "View all %s connections" -msgstr "Voir les %s contacts" +msgid "Any account on %s" +msgstr "" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "tapoter" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "ping" +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "pingé" +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "encourager" +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "encouragé" - -#: ../../include/text.php:1021 -msgid "slap" -msgstr "giffler" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "gifflé(e)" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "pointer" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "pointé" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "rejetter" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "rejeté" - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "heureux" - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "mélancolique" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "fatigué" - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "impertinent" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "en colère" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "stupéfait" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "perplexe" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "intéressé" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amer" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "plein d'entrain" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "vivant" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "agaçé" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "anxieux" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "énervé" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "perturbé" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustré" - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "déprimé" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivé" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "détendu" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "surpris" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Lundi" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Mardi" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Mercredi" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Jeudi" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Vendredi" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Samedi" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Dimanche" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "Janvier" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "Février" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "Mars" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "Avril" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juin" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juillet" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "Août" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "Septembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "Octobre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "Décembre" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Pièce jointe inconnue" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "Inconnu" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "supprimer la catégorie" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "retirer du fichier" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "défaut" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Mise en page" - -#: ../../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/text.php:1784 -msgid "Page content type" -msgstr "Type de contenu de la page" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Choisir une langue alternative" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "activité" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Outils de conception" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Pages" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Deconnecté." - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Échec de l'authentification" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Peut voir les publications ordinaires sur mon canal." - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Peut voir mes pages web" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Peuvent poster sur la page de mon canal (\"mur\")" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Peuvent aimer/ne pas aimer" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profils et autres excluant les publications/commentaires." - -#: ../../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/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avancé - utile pour les canaux de type \"forum/groupe\"" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Peut discuter avec moi (quand disponibie)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Peut charger des fichiers et des photos dans mon canal" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Peut modifier mes pages web" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Plutôt avancé - très utile dans les communautés ouvertes" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Peut administrer les ressources de mon canal" - -#: ../../include/permissions.php:46 +#: ../../include/PermissionDescription.php:161 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" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" + +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" + +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "" + +#: ../../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" +msgstr "Ce n'est pas une adresse de courriel valide" + +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site" + +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Votre adresse de courriel est déjà inscrite sur ce site." + +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Une invitation est requise." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Votre invitation n'a pas pu être vérifiée." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Merci d'entrer les informations requises." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Impossible de stocker les informations liées au compte." + +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Confirmation de l'inscription pour %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Demande d'inscription sur %s" + +#: ../../include/account.php: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" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Détails de l'inscription pour %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Compte approuvé." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Inscription révoquée pour %s" + +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Compte vérifié. Veuillez vous connecter." + +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Cliquez ici pour mettre à jour." + +#: ../../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:497 +msgid "No source file." +msgstr "Pas de fichier source." + +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "Impossible de trouver le fichier à remplacer." + +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "Impossible de trouver le fichier à corriger/mettre à jour" + +#: ../../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: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: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: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:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Chemin non disponible." + +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Chemin vide" + +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "doublon de chemin ou de fichier" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Chemin introuvable." + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "mkdir a échoué." + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "l'écriture dans la base de données a échoué." + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "Chemin vide" + +#: ../../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/channel.php:66 +msgid "Empty name" +msgstr "Nom vide" + +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Nom trop long" + +#: ../../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 "" +"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/channel.php:1192 +#, php-format +msgid "for %1$d %2$s" +msgstr "depuis %1$d %2$s" + +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Orientation sexuelle :" + +#: ../../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" @@ -8526,257 +8716,378 @@ msgid "Provide managed web pages on your channel" msgstr "Fournir des pages web, sous votre contrôle, sur votre canal" #: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "" - -#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Masquer l'évaluation" -#: ../../include/features.php:56 +#: ../../include/features.php:55 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "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:57 +#: ../../include/features.php:56 msgid "Private Notes" msgstr "Notes privées" -#: ../../include/features.php:57 +#: ../../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:58 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "Sélection du canal par la navigation" -#: ../../include/features.php:58 +#: ../../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:59 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "Site de prise de vue" -#: ../../include/features.php:59 +#: ../../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:60 +#: ../../include/features.php:59 msgid "Access Controlled Chatrooms" msgstr "" -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Provide chatrooms and chat services with access control." msgstr "" -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "Smart Birthdays" msgstr "Anniversaires intelligents" -#: ../../include/features.php:61 +#: ../../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/features.php:62 +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "Mode expert" -#: ../../include/features.php:62 +#: ../../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/features.php:63 +#: ../../include/features.php:62 msgid "Premium Channel" msgstr "Canal VIP" -#: ../../include/features.php:63 +#: ../../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/features.php:68 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "Fonctionnalités de composition" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Large Photos" msgstr "Grandes photos" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Inclure de grands aperçus (1024px) dans les messages. Si désactivé, inclure de petits aperçus (640px)." -#: ../../include/features.php:72 +#: ../../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/features.php:73 +#: ../../include/features.php:72 msgid "Even More Encryption" msgstr "Encore plus de chiffrement" -#: ../../include/features.php:73 +#: ../../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/features.php:74 +#: ../../include/features.php:73 msgid "Enable Voting Tools" msgstr "Activer les outils de vote" -#: ../../include/features.php:74 +#: ../../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/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Publication plus tard" -#: ../../include/features.php:75 +#: ../../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/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Supprimer les publications/commentaires en doublon" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Empêcher des messages aux contenus identiques d'être publiés à moins de deux minutes d'intervalle" -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Filtrage du réseau et des flux" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Chercher par date" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Pouvoir choisir des publications par date" -#: ../../include/features.php:84 ../../include/group.php:311 +#: ../../include/features.php:83 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Groupes d'accès" -#: ../../include/features.php:84 +#: ../../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/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Recherches sauvegardées" - -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Sauvegarder des termes de recherche pour utilisation ultérieure" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Onglet \"Me concernant\"" -#: ../../include/features.php:86 +#: ../../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/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Onglet \"nouveautés réseau\"" -#: ../../include/features.php:87 +#: ../../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/features.php:88 +#: ../../include/features.php:87 msgid "Affinity Tool" msgstr "Gérer l'affinité" -#: ../../include/features.php:88 +#: ../../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/features.php:89 +#: ../../include/features.php:88 msgid "Connection Filtering" msgstr "Filtrage des contacts" -#: ../../include/features.php:89 +#: ../../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/features.php:90 +#: ../../include/features.php:89 msgid "Show channel suggestions" msgstr "Montrer les suggestions de canaux" -#: ../../include/features.php:95 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "Gérer les publications/commentaires" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Community Tagging" msgstr "Etiquetage communautaire" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "Permettre de marquer les publications existantes" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "Catégoriser les publications" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "Ajouter des catégories à vos publications" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Emoji Reactions" msgstr "" -#: ../../include/features.php:98 +#: ../../include/features.php:97 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 "Dossiers sauvegardés" - -#: ../../include/features.php:99 +#: ../../include/features.php:98 msgid "Ability to file posts under folders" msgstr "Permettre de classer les publications dans des dossiers" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "\"Ne pas aimer\" les publications" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "Possibilité de \"ne pas aimer\" les publications/commentaires" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "Pouvoir mettre en avant les publications" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Ability to mark special posts with a star indicator" msgstr "Pouvoir marquer certaines publications d'une étoile" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Tag Cloud" msgstr "Nuage de tags" -#: ../../include/features.php:102 +#: ../../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/oembed.php:324 +msgid "Embedded content" +msgstr "Contenu imbriqué" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Imbrication désactivée" + +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "" + +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "" + +#: ../../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/acl_selectors.php:274 +msgid "Show" +msgstr "Montrer" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Cacher" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Autres réseaux et services de messagerie" + +#: ../../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/auth.php:105 +msgid "Logged out." +msgstr "Deconnecté." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Échec de l'authentification" + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Anniversaire" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Age :" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-JJ ou MM-JJ" + +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "jamais" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "à l'instant" + +#: ../../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/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "an" +msgstr[1] "ans" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mois" +msgstr[1] "mois" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "semaine" +msgstr[1] "semaines" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "jour" +msgstr[1] "jours" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "heure" +msgstr[1] "heures" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minute" +msgstr[1] "minutes" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "seconde" +msgstr[1] "secondes" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Anniversaire de %1$s" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Joyeux Anniversaire %1$s" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -8804,583 +9115,21 @@ msgstr "Ajouter un groupe d'accès" msgid "Channels not in any privacy group" msgstr "Canaux n'étant dans aucun groupe d'accès" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "ajouter" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\à G\\hi" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Début :" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Fin :" - -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Cet évènement a été ajouté dans votre calendrier." - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Non spécifié" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Besoin d'une action" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Terminé" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "En cours" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Annulé" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Ce n'est pas une adresse de courriel valide" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Votre adresse de courriel est déjà inscrite sur ce site." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Une invitation est requise." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Votre invitation n'a pas pu être vérifiée." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Merci d'entrer les informations requises." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Impossible de stocker les informations liées au compte." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmation de l'inscription pour %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Demande d'inscription sur %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "votre mot de passe d'inscription" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Détails de l'inscription pour %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Compte approuvé." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Inscription révoquée pour %s" - -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Cliquez ici pour mettre à jour." - -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Cette action outrepasserait les limites prévues par votre forfait." - -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Cette action n'est pas disponible avec votre forfait." - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Ce canal est bloqué sur ce site." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Emplacement du canal introuvable." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "La réponse du canal distant était incomplète." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Le canal a été supprimé et n'existe plus." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocole désactivé." - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "La tentative d'accéder au canal a échoué." - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Ne peut pas se connecter à vous." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Élément introuvable." - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "Pas de fichier source." - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "Impossible de trouver le fichier à remplacer." - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "Impossible de trouver le fichier à corriger/mettre à jour" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Le fichier dépasse la taille limite de %d" - -#: ../../include/attach.php:688 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes." - -#: ../../include/attach.php:846 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Envoi du fichier impossible. Limite système ou action avortée." - -#: ../../include/attach.php:859 -msgid "Stored file could not be verified. Upload failed." -msgstr "Le fichier stocké n'a pu être vérifié. Echec de l'envoi." - -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "Chemin non disponible." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Chemin vide" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "doublon de chemin ou de fichier" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Chemin introuvable." - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir a échoué." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "l'écriture dans la base de données a échoué." - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "Chemin vide" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Image/photo" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contenu chiffré" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installer %s élément" - -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site." - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s a écrit %2$s qui suit %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Cliquer pour ouvrir/fermer" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Ce texte aura un rendu différent en fonction des utilisateurs" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 a écrit :" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Inconnu)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visible pour tout le monde sur internet." - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visible pour vous seulement." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visible pour tout le monde sur ce réseau." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visible aux utilisateurs authentifiés." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible pour tous sur %s." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Visible pour tous les contacts." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visible aux contacts approuvés." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visible pour certains contacts." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Groupe d'accès vide." - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Groupe d'accès : %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Contact non trouvé." - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "photo de profil" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Contenu imbriqué" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Imbrication désactivée" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Système" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Suggestions" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Voir plus..." - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Vous avez %1$.0f sur %2$.0f contacts autorisés." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Ajouter un nouveau contact" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Saisissez l'adresse du canal" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Exemples : pierre@exemple.com, https://exemple.com/sophie" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notes" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Retirer le terme" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tout" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archives" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Actualiser" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Paramètres du compte" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Paramètres du canal" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Fonctionnalités supplémentaires" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Paramètres des extensions/greffons" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Paramètres d'affichage" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exporter le canal" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Applications connectées" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Paramètres de canal VIP" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menu des messages privés" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vue combinée" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversations" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Messages reçus" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Messages envoyés" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Pas de message." - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Supprimer la conversation" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Outils Evènements" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exporter le calendrier" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importer un calendrier" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "" - -#: ../../include/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 "Salons favoris" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Salons suggérés" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "photo/image" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Cliquer pour voir plus" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Outils d'évaluation" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "M'évaluer" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Voir mes évaluations" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Membres du forum" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Tâches" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Documentation" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Information sur le site/projet" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Pour les membres" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Pour les administrateurs" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Pour les développeurs" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Analyser la file d'attente" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Mises à jour BDD" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Fonctionnalités des greffons" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "et" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "profil public" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s a changé %2$s en “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visiter %2$s de %1$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s a mis à jour %2$s, modifiant %3$s." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Pièces jointes :" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notification d'événement de $Projectname :" - #: ../../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,223 +9359,278 @@ msgctxt "calendar" msgid "All day" msgstr "Toute la journée" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitation disponible" -msgstr[1] "%d invitations disponibles" +#: ../../include/network.php:657 +msgid "view full size" +msgstr "voir en taille réelle" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Trouver des canaux" +#: ../../include/network.php:1885 +msgid "No Subject" +msgstr "Pas d'objet" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Saisir nom ou centre d'intérêt" +#: ../../include/network.php:2146 ../../include/network.php:2147 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Ajouter/Suivre" +#: ../../include/network.php:2148 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Guillaume Martin, Course à pieds" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Un profil au hasard" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Inviter des amis" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Exemple avancé : name=fred and country=iceland" - -#: ../../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/dir_fns.php:141 -msgid "Directory Options" -msgstr "Options d'annuaire" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Mode sûr" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Les forums publics uniquement" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Ce site uniquement" - -#: ../../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/acl_selectors.php:269 -msgid "Who can see this?" +#: ../../include/network.php:2149 +msgid "GNU-Social" msgstr "" -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "" +#: ../../include/network.php:2150 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/acl_selectors.php:271 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "" +#: ../../include/network.php:2152 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Montrer" +#: ../../include/network.php:2153 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Cacher" +#: ../../include/network.php:2154 +msgid "Zot" +msgstr "Zot" -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Autres réseaux et services de messagerie" +#: ../../include/network.php:2155 +msgid "LinkedIn" +msgstr "Linkedin" -#: ../../include/acl_selectors.php:309 +#: ../../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 "" -"Post permissions %s cannot be changed %s after a post is shared.
These" -" permissions set who is allowed to view the post." -msgstr "" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'image dépasse la taille limite de %lu octets" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Anniversaire" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "L'image est vide." -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Age :" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "Le stockage de l'image a échoué." -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-JJ ou MM-JJ" +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "une nouvelle photo" -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "jamais" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "à l'instant" - -#: ../../include/datetime.php:296 +#: ../../include/photos.php:299 #, 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" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s a publié %2$s pour %3$s" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "an" -msgstr[1] "ans" +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Ajouter des photos" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mois" -msgstr[1] "mois" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "semaine" -msgstr[1] "semaines" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "jour" -msgstr[1] "jours" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "heure" -msgstr[1] "heures" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minute" -msgstr[1] "minutes" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "seconde" -msgstr[1] "secondes" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Anniversaire de %1$s" - -#: ../../include/datetime.php:563 -#, 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 +#: ../../include/zot.php:699 msgid "Invalid data packet" msgstr "Paquet de données invalide" -#: ../../include/zot.php:713 +#: ../../include/zot.php:715 msgid "Unable to verify channel signature" msgstr "Impossible de vérifier la signature du canal" -#: ../../include/zot.php:2326 +#: ../../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:3703 +#: ../../include/zot.php:3712 msgid "invalid target signature" msgstr "signature de la cible invalide" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nouvelle page" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titre" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Peut voir les publications ordinaires sur mon canal." + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Peut voir le profil du canal par défaut." + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Peut voir mes contacts" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Peut voir mes fichiers et photos" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Peut voir mes pages web" + +#: ../../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/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Peuvent poster sur la page de mon canal (\"mur\")" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Peuvent commenter et/ou aimer mes publications" + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Peuvent m'envoyer des messages privés" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Peuvent aimer/ne pas aimer" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profils et autres excluant les publications/commentaires." + +#: ../../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/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avancé - utile pour les canaux de type \"forum/groupe\"" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Peut discuter avec moi (quand disponibie)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Peut charger des fichiers et des photos dans mon canal" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Peut modifier mes pages web" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Peut rediriger mes publications publiques vers des canaux dérivés" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Plutôt avancé - très utile dans les communautés ouvertes" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Peut administrer les ressources de mon canal" + +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes" + +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Réseau social" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Social - surtout public" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Social - restreint" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Social - privé" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Forum communautaire" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Forum - surtout public" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - restreint" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - privé" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Republication de flux" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Flux - surtout public" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Flux - restreint" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Utilisation spécifique" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Spécial - célébrité/promotion" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Spécial - dépôt partagé" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Mode expert/spécifique" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "et" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "profil public" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s a changé %2$s en “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Visiter %2$s de %1$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s a mis à jour %2$s, modifiant %3$s." + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Pièces jointes :" + +#: ../../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)" msgstr "Focus (par défaut pour Hubzilla)" @@ -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,6 +382,229 @@ App::$strings["System error. Post not saved."] = "Erreur système. Publication n App::$strings["Unable to obtain post information from database."] = "Impossible d'obtenir les informations de publication depuis la base de données."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Vous avez atteint votre limite de %1$.0f contributions \"racines\"."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Vous avez atteint votre limite de %1$.0f pages web."; +App::$strings["Layouts"] = "Mises-en-page"; +App::$strings["Comanche page description language help"] = "Aide sur le langage de description de page Comanche"; +App::$strings["Layout Description"] = "Description de la mise en page"; +App::$strings["Download PDL file"] = "Télécharger le fichier PDL"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Bienvenue sur %s"; +App::$strings["First Name"] = "Prénom"; +App::$strings["Last Name"] = "Nom de famille"; +App::$strings["Nickname"] = "Surnom"; +App::$strings["Full Name"] = "Nom complet"; +App::$strings["Email"] = "Courriel"; +App::$strings["Profile Photo"] = "Photo du Profil"; +App::$strings["Profile Photo 16px"] = "Photo de profil 16px"; +App::$strings["Profile Photo 32px"] = "Photo de profil 32px"; +App::$strings["Profile Photo 48px"] = "Photo de profil 48px"; +App::$strings["Profile Photo 64px"] = "Photo de profil 64px"; +App::$strings["Profile Photo 80px"] = "Photo de profil 80px"; +App::$strings["Profile Photo 128px"] = "Photo de profil 128px"; +App::$strings["Timezone"] = "Fuseau horaire"; +App::$strings["Homepage URL"] = "URL de mon site Internet :"; +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."; +App::$strings["Total invitation limit exceeded."] = "Limite du nombre total d'invitation dépassée."; +App::$strings["%s : Not a valid email address."] = "%s : adresse courriel invalide."; +App::$strings["Please join us on \$Projectname"] = "Rejoignez-nous sur \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitations dépassée. Merci de contacter l'administration de votre site."; +App::$strings["%s : Message delivery failed."] = "%s : Échec de distribution du message."; +App::$strings["%d message sent."] = array( + 0 => "%d message envoyé.", + 1 => "%d messages envoyés.", +); +App::$strings["You have no more invitations available"] = "Vous ne disposez plus d'aucune invitation"; +App::$strings["Send invitations"] = "Envoyer des invitations"; +App::$strings["Enter email addresses, one per line:"] = "Entrez les adresses de courriel, une par ligne :"; +App::$strings["Your message:"] = "Votre message :"; +App::$strings["Please join my community on \$Projectname."] = "Rejoignez ma communauté sur \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Vous devrez fournir le code suivant :"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Enregistrez-vous sur n'importe quel serveur \$Projectname (ils sont tous inter-connectés)"; +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"] = ""; +App::$strings["Please wait several minutes between consecutive operations."] = "Merci d'attendre plusieurs minutes entre opérations successives."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif."; +App::$strings["Hub not found."] = "Hub introuvable."; +App::$strings["Unable to lookup recipient."] = "Impossible de localiser le destinataire."; +App::$strings["Unable to communicate with requested channel."] = "Impossible de communiquer avec le canal demandé."; +App::$strings["Cannot verify requested channel."] = "Impossible de vérifier le canal demandé."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué."; +App::$strings["Messages"] = "Messages"; +App::$strings["Message recalled."] = "Message rappelé."; +App::$strings["Conversation removed."] = "Conversation supprimée."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expire le YYYY-MM-DD à HH:MM"; +App::$strings["Requested channel is not in this network"] = "Le canal demandé n'est pas sur ce réseau"; +App::$strings["Send Private Message"] = "Envoyer un message privé"; +App::$strings["To:"] = "À :"; +App::$strings["Subject:"] = "Objet :"; +App::$strings["Attach file"] = "Joindre un fichier"; +App::$strings["Send"] = "Envoyer"; +App::$strings["Set expiration date"] = "Définir la date d'expiration"; +App::$strings["Delete message"] = "Supprimer le message"; +App::$strings["Delivery report"] = "Rapport de distribution"; +App::$strings["Recall message"] = "Rappeler le message"; +App::$strings["Message has been recalled."] = "Le message a été rappelé."; +App::$strings["Delete Conversation"] = "Supprimer la conversation"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Aucune communication sécurisée n'est possible. Vous pourrez peut-être répondre depuis la page de profil de l'émetteur."; +App::$strings["Send Reply"] = "Envoyer la réponse"; +App::$strings["Your message for %s (%s):"] = "Votre message pour %s (%s) :"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Vous avez créé %1$.0f des %2$.0f canaux autorisés."; +App::$strings["Create a new channel"] = "Créer un nouveau canal"; +App::$strings["Channel Manager"] = "Gérer les canaux"; +App::$strings["Current Channel"] = "Canal actif"; +App::$strings["Switch to one of your channels by selecting it."] = "Pour changer de canal, sélectionnez-en un"; +App::$strings["Default Channel"] = "Canal par défaut"; +App::$strings["Make Default"] = "Définir comme défaut"; +App::$strings["%d new messages"] = "%d nouveaux messages"; +App::$strings["%d new introductions"] = "%d nouvelles présentations"; +App::$strings["Delegated Channel"] = ""; +App::$strings["No valid account found."] = "Aucun compte valide trouvé."; +App::$strings["Password reset request issued. Check your email."] = "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels."; +App::$strings["Site Member (%s)"] = "Membre du site (%s)"; +App::$strings["Password reset requested at %s"] = "Demande de réinitialisation du mot de passe sur %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué."; +App::$strings["Password Reset"] = "Réinitialiser le mot de passe"; +App::$strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé."; +App::$strings["Your new password is"] = "Votre nouveau mot de passe est"; +App::$strings["Save or copy your new password - and then"] = "Enregistrez ou copiez votre nouveau mot de passe, puis"; +App::$strings["click here to login"] = "cliquez ici pour vous connecter"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Votre mot de passe peut être changé depuis la page des Paramètres une fois connecté."; +App::$strings["Your password has changed at %s"] = "Votre mot de passe de %s a été changé"; +App::$strings["Forgot your Password?"] = "Mot de passe oublié ?"; +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"; +App::$strings["Search Results For:"] = "Résultats de recherche pour :"; +App::$strings["Privacy group is empty"] = "Groupe d'accès vide"; +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["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."; +App::$strings["Menu Item Permissions"] = "Permissions de l'entrée de menu"; +App::$strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)"; +App::$strings["Link Name"] = "Nom du lien"; +App::$strings["Link or Submenu Target"] = "Lien ou sous-menu cible"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu"; +App::$strings["Use magic-auth if available"] = "Utiliser l'authentification distante, quand disponible"; +App::$strings["Open link in new window"] = "Ouvrir le lien dans une nouvelle fenêtre"; +App::$strings["Order in list"] = "Ordre dans la liste"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Les nombres les plus élevés seront au bas de la liste"; +App::$strings["Submit and finish"] = "Vadiler et terminer"; +App::$strings["Submit and continue"] = "Valider et continuer"; +App::$strings["Menu:"] = "Menu :"; +App::$strings["Link Target"] = "Cible du lien"; +App::$strings["Edit menu"] = "Modifier le menu"; +App::$strings["Edit element"] = "Modifier l'entrée"; +App::$strings["Drop element"] = "Supprimer l'entrée"; +App::$strings["New element"] = "Nouvelle entrée"; +App::$strings["Edit this menu container"] = "Éditer ce bloc de menu"; +App::$strings["Add menu element"] = "Ajouter une entrée au menu"; +App::$strings["Delete this menu item"] = "Supprimer cette entrée du menu"; +App::$strings["Edit this menu item"] = "Modifier cette entrée du menu"; +App::$strings["Menu item not found."] = "Entrée de menu introuvable."; +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."; @@ -611,164 +673,122 @@ 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["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."; -App::$strings["Total invitation limit exceeded."] = "Limite du nombre total d'invitation dépassée."; -App::$strings["%s : Not a valid email address."] = "%s : adresse courriel invalide."; -App::$strings["Please join us on \$Projectname"] = "Rejoignez-nous sur \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitations dépassée. Merci de contacter l'administration de votre site."; -App::$strings["%s : Message delivery failed."] = "%s : Échec de distribution du message."; -App::$strings["%d message sent."] = array( - 0 => "%d message envoyé.", - 1 => "%d messages envoyés.", -); -App::$strings["You have no more invitations available"] = "Vous ne disposez plus d'aucune invitation"; -App::$strings["Send invitations"] = "Envoyer des invitations"; -App::$strings["Enter email addresses, one per line:"] = "Entrez les adresses de courriel, une par ligne :"; -App::$strings["Your message:"] = "Votre message :"; -App::$strings["Please join my community on \$Projectname."] = "Rejoignez ma communauté sur \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Vous devrez fournir le code suivant :"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Enregistrez-vous sur n'importe quel serveur \$Projectname (ils sont tous inter-connectés)"; -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["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["Primary"] = ""; -App::$strings["Drop"] = "Supprimer"; -App::$strings["Sync Now"] = ""; -App::$strings["Please wait several minutes between consecutive operations."] = "Merci d'attendre plusieurs minutes entre opérations successives."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif."; -App::$strings["Hub not found."] = "Hub introuvable."; -App::$strings["Unable to lookup recipient."] = "Impossible de localiser le destinataire."; -App::$strings["Unable to communicate with requested channel."] = "Impossible de communiquer avec le canal demandé."; -App::$strings["Cannot verify requested channel."] = "Impossible de vérifier le canal demandé."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué."; -App::$strings["Messages"] = "Messages"; -App::$strings["Message recalled."] = "Message rappelé."; -App::$strings["Conversation removed."] = "Conversation supprimée."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expire le YYYY-MM-DD à HH:MM"; -App::$strings["Requested channel is not in this network"] = "Le canal demandé n'est pas sur ce réseau"; -App::$strings["Send Private Message"] = "Envoyer un message privé"; -App::$strings["To:"] = "À :"; -App::$strings["Subject:"] = "Objet :"; -App::$strings["Attach file"] = "Joindre un fichier"; -App::$strings["Send"] = "Envoyer"; -App::$strings["Set expiration date"] = "Définir la date d'expiration"; -App::$strings["Delete message"] = "Supprimer le message"; -App::$strings["Delivery report"] = "Rapport de distribution"; -App::$strings["Recall message"] = "Rappeler le message"; -App::$strings["Message has been recalled."] = "Le message a été rappelé."; -App::$strings["Delete Conversation"] = "Supprimer la conversation"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Aucune communication sécurisée n'est possible. Vous pourrez peut-être répondre depuis la page de profil de l'émetteur."; -App::$strings["Send Reply"] = "Envoyer la réponse"; -App::$strings["Your message for %s (%s):"] = "Votre message pour %s (%s) :"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Vous avez créé %1$.0f des %2$.0f canaux autorisés."; -App::$strings["Create a new channel"] = "Créer un nouveau canal"; -App::$strings["Channel Manager"] = "Gérer les canaux"; -App::$strings["Current Channel"] = "Canal actif"; -App::$strings["Switch to one of your channels by selecting it."] = "Pour changer de canal, sélectionnez-en un"; -App::$strings["Default Channel"] = "Canal par défaut"; -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)"; -App::$strings["Password reset requested at %s"] = "Demande de réinitialisation du mot de passe sur %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué."; -App::$strings["Password Reset"] = "Réinitialiser le mot de passe"; -App::$strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé."; -App::$strings["Your new password is"] = "Votre nouveau mot de passe est"; -App::$strings["Save or copy your new password - and then"] = "Enregistrez ou copiez votre nouveau mot de passe, puis"; -App::$strings["click here to login"] = "cliquez ici pour vous connecter"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Votre mot de passe peut être changé depuis la page des Paramètres une fois connecté."; -App::$strings["Your password has changed at %s"] = "Votre mot de passe de %s a été changé"; -App::$strings["Forgot your Password?"] = "Mot de passe oublié ?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions."; -App::$strings["Email Address"] = "Adresse de courriel"; -App::$strings["Reset"] = "Réinitialiser"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s est %2\$s"; -App::$strings["Mood"] = "Humeur"; -App::$strings["Set your current mood and tell your friends"] = "Indiquez votre humeur du moment à vos amis"; -App::$strings["No such group"] = "Groupe introuvable"; -App::$strings["No such channel"] = "Canal introuvable"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Résultats de recherche pour :"; -App::$strings["Privacy group is empty"] = "Groupe d'accès vide"; -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."; -App::$strings["Menu Item Permissions"] = "Permissions de l'entrée de menu"; -App::$strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)"; -App::$strings["Link Name"] = "Nom du lien"; -App::$strings["Link or Submenu Target"] = "Lien ou sous-menu cible"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu"; -App::$strings["Use magic-auth if available"] = "Utiliser l'authentification distante, quand disponible"; -App::$strings["Open link in new window"] = "Ouvrir le lien dans une nouvelle fenêtre"; -App::$strings["Order in list"] = "Ordre dans la liste"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Les nombres les plus élevés seront au bas de la liste"; -App::$strings["Submit and finish"] = "Vadiler et terminer"; -App::$strings["Submit and continue"] = "Valider et continuer"; -App::$strings["Menu:"] = "Menu :"; -App::$strings["Link Target"] = "Cible du lien"; -App::$strings["Edit menu"] = "Modifier le menu"; -App::$strings["Edit element"] = "Modifier l'entrée"; -App::$strings["Drop element"] = "Supprimer l'entrée"; -App::$strings["New element"] = "Nouvelle entrée"; -App::$strings["Edit this menu container"] = "Éditer ce bloc de menu"; -App::$strings["Add menu element"] = "Ajouter une entrée au menu"; -App::$strings["Delete this menu item"] = "Supprimer cette entrée du menu"; -App::$strings["Edit this menu item"] = "Modifier cette entrée du menu"; -App::$strings["Menu item not found."] = "Entrée de menu introuvable."; -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["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"; @@ -2017,7 +2071,6 @@ 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"; @@ -2025,149 +2078,63 @@ App::$strings["Star Posts"] = "Pouvoir mettre en avant les publications"; App::$strings["Ability to mark special posts with a star indicator"] = "Pouvoir marquer certaines publications d'une étoile"; App::$strings["Tag Cloud"] = "Nuage de tags"; App::$strings["Provide a personal tag cloud on your channel page"] = "Afficher un nuage de vos tags sur votre canal"; +App::$strings["Embedded content"] = "Contenu imbriqué"; +App::$strings["Embedding disabled"] = "Imbrication désactivée"; +App::$strings["Who can see this?"] = ""; +App::$strings["Custom selection"] = ""; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = ""; +App::$strings["Show"] = "Montrer"; +App::$strings["Don't show"] = "Cacher"; +App::$strings["Other networks and post services"] = "Autres réseaux et services de messagerie"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
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["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["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["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,6 +264,229 @@ msgstr "Il profilo richiesto non è disponibile." msgid "Some blurb about what to do when you're new here" msgstr "Qualche suggerimento per i nuovi utenti su cosa fare" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Nome del block" + +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Block" + +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Titolo del block" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 +#: ../../include/page_widgets.php:44 +msgid "Created" +msgstr "Creato" + +#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 +#: ../../include/page_widgets.php:45 +msgid "Edited" +msgstr "Modificato" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 +#: ../../include/conversation.php:1208 +msgid "Share" +msgstr "Condividi" + +#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 +#: ../../include/page_widgets.php:39 +msgid "View" +msgstr "Guarda" + +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canale non trovato." + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permesso negato." + +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l j F" + +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Link al sito d'origine" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Modifica l'evento" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Crea un evento" + +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 +#: ../../Zotlabs/Module/Photos.php:949 +msgid "Previous" +msgstr "Precendente" + +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Successivo" + +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Esporta" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importa" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 +#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 +#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 +#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:842 +#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 +#: ../../include/widgets.php:769 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Salva" + +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Oggi" + +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Devi aver effettuato l'accesso per vedere questa pagina." + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "Post e commenti" + +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "Solo post" + +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chat non trovata" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Lascia la chat" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Elimina questa chat" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Non sono presente" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Sono online" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Aggiungi questa chat ai segnalibri" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 +#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 +#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1256 +msgid "Encrypt text" +msgstr "Cifratura del messaggio" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funzionalità disattivata." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nuova chat" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Nome chat" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Scadenza dei messaggi della chat (minuti)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 +#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:283 +msgid "Permissions" +msgstr "Permessi" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Le chat di %1$s" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "Nessuna chat disponibile" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" +msgstr "Crea nuova" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "Scadenza" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "min" + #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Assente" @@ -416,6 +495,65 @@ msgstr "Assente" msgid "Online" msgstr "Online" +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Elemento non valido." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "I miei segnalibri" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continua" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Canale premium - configurazione" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Abilita le restrizioni del canale premium" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canale premium - con restrizioni" + #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "Non è possibile accedere alle informazioni sul contatto." @@ -424,350 +562,317 @@ msgstr "Non è possibile accedere alle informazioni sul contatto." msgid "Could not locate selected profile." msgstr "Non riesco a trovare il profilo selezionato." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "Contatto aggiornato." -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../Zotlabs/Module/Connedit.php:229 msgid "Failed to update connection record." msgstr "Impossibile aggiornare le informazioni del contatto." -#: ../../Zotlabs/Module/Connedit.php:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "ha come nuovo contatto" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "No" msgstr "No" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "Yes" msgstr "Sì" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../Zotlabs/Module/Connedit.php:411 msgid "Could not access address book record." msgstr "Impossibile accedere alle informazioni della rubrica." -#: ../../Zotlabs/Module/Connedit.php:455 +#: ../../Zotlabs/Module/Connedit.php:425 msgid "Refresh failed - channel is currently unavailable." msgstr "Il canale non è disponibile - impossibile aggiornare." -#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 msgid "Unable to set address book parameters." msgstr "Impossibile impostare i parametri della rubrica." -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "Il contatto è stato rimosso." -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 msgid "View Profile" msgstr "Profilo" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:522 #, php-format msgid "View %s's profile" msgstr "Guarda il profilo di %s" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:526 msgid "Refresh Permissions" msgstr "Modifica i permessi" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:529 msgid "Fetch updated permissions" msgstr "Guarda e modifica i permessi assegnati" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Recent Activity" msgstr "Attività recenti" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:536 msgid "View recent posts and comments" msgstr "Leggi i post recenti e i commenti" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Sblocca" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Blocca" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../Zotlabs/Module/Connedit.php:543 msgid "Block (or Unblock) all communications with this connection" msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/Connedit.php:574 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "This connection is blocked!" msgstr "Questa connessione è tra quelle bloccate!" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 msgid "Unignore" msgstr "Non ignorare" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignora" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../Zotlabs/Module/Connedit.php:551 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/Connedit.php:582 +#: ../../Zotlabs/Module/Connedit.php:552 msgid "This connection is ignored!" msgstr "Questa connessione è tra quelle ignorate!" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Unarchive" msgstr "Non archiviare" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Archive" msgstr "Archivia" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../Zotlabs/Module/Connedit.php:559 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" -#: ../../Zotlabs/Module/Connedit.php:590 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "This connection is archived!" msgstr "Questa connessione è tra quelle archiviate!" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Unhide" msgstr "Non nascondere" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Hide" msgstr "Nascondi" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../Zotlabs/Module/Connedit.php:567 msgid "Hide or Unhide this connection from your other connections" msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "This connection is hidden!" msgstr "Questa connessione è tra quelle nascoste!" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Delete this connection" msgstr "Elimina questo contatto" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 msgid "Me" msgstr "Me" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 msgid "Family" msgstr "Famiglia" -#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 -#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 -#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 ../../include/selectors.php:123 -#: ../../include/widgets.php:495 +#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 +#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 +#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 +#: ../../include/widgets.php:495 ../../include/selectors.php:123 +#: ../../include/channel.php:389 ../../include/channel.php:390 +#: ../../include/channel.php:397 msgid "Friends" msgstr "Amici" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 msgid "Acquaintances" msgstr "Conoscenti" -#: ../../Zotlabs/Module/Connedit.php:624 +#: ../../Zotlabs/Module/Connedit.php:594 #: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 msgid "All" msgstr "Tutti" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Approve this connection" msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Connedit.php:685 +#: ../../Zotlabs/Module/Connedit.php:654 msgid "Accept connection to allow communication" msgstr "Entra in contatto per poter comunicare" -#: ../../Zotlabs/Module/Connedit.php:690 +#: ../../Zotlabs/Module/Connedit.php:659 msgid "Set Affinity" msgstr "Scegli l'affinità" -#: ../../Zotlabs/Module/Connedit.php:693 +#: ../../Zotlabs/Module/Connedit.php:662 msgid "Set Profile" msgstr "Scegli il profilo da mostrare" -#: ../../Zotlabs/Module/Connedit.php:696 +#: ../../Zotlabs/Module/Connedit.php:665 msgid "Set Affinity & Profile" msgstr "Affinità e profilo" -#: ../../Zotlabs/Module/Connedit.php:745 +#: ../../Zotlabs/Module/Connedit.php:698 msgid "none" msgstr "--" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 msgid "Connection Default Permissions" msgstr "Permessi predefiniti dei nuovi contatti" -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 #, php-format msgid "Connection: %s" msgstr "Contatto: %s" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Apply these permissions automatically" msgstr "Applica automaticamente questi permessi" -#: ../../Zotlabs/Module/Connedit.php:750 +#: ../../Zotlabs/Module/Connedit.php:703 msgid "Connection requests will be approved without your interaction" msgstr "Le richieste di entrare in contatto saranno approvate in automatico" -#: ../../Zotlabs/Module/Connedit.php:752 +#: ../../Zotlabs/Module/Connedit.php:705 msgid "This connection's primary address is" msgstr "Indirizzo primario di questo canale" -#: ../../Zotlabs/Module/Connedit.php:753 +#: ../../Zotlabs/Module/Connedit.php:706 msgid "Available locations:" msgstr "Indirizzi disponibili" -#: ../../Zotlabs/Module/Connedit.php:757 +#: ../../Zotlabs/Module/Connedit.php:710 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Connedit.php:711 msgid "Connection Tools" msgstr "Gestione dei contatti" -#: ../../Zotlabs/Module/Connedit.php:760 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "Slide to adjust your degree of friendship" msgstr "Trascina per restringere il grado di amicizia da mostrare" -#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 +#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Valutazioni" -#: ../../Zotlabs/Module/Connedit.php:762 +#: ../../Zotlabs/Module/Connedit.php:715 msgid "Slide to adjust your rating" msgstr "Trascina per cambiare la tua valutazione" -#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 +#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 msgid "Optionally explain your rating" msgstr "Commento facoltativo" -#: ../../Zotlabs/Module/Connedit.php:765 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Custom Filter" msgstr "Filtro personalizzato" -#: ../../Zotlabs/Module/Connedit.php:766 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Only import posts with this text" msgstr "Importa solo i post che contengono queste parole chiave" -#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto" -#: ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Connedit.php:720 msgid "Do not import posts with this text" msgstr "Non importare i post con queste parole chiave" -#: ../../Zotlabs/Module/Connedit.php:769 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "This information is public!" msgstr "Questa informazione è pubblica!" -#: ../../Zotlabs/Module/Connedit.php:774 +#: ../../Zotlabs/Module/Connedit.php:727 msgid "Connection Pending Approval" msgstr "Contatti in attesa di approvazione" -#: ../../Zotlabs/Module/Connedit.php:777 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "inherited" msgstr "derivato" -#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 -#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 -#: ../../Zotlabs/Module/Filestorage.php:161 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 -#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 -#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 -#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 -#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 -#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 -#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 -#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 -#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 -#: ../../Zotlabs/Module/Settings.php:943 -#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 -#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Salva" - -#: ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Connedit.php:732 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso." -#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Module/Connedit.php:734 msgid "Their Settings" msgstr "Permessi concessi a te" -#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:735 msgid "My Settings" msgstr "Permessi che concedo" -#: ../../Zotlabs/Module/Connedit.php:784 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Individual Permissions" msgstr "Permessi individuali" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "" "Some permissions may be inherited from your channel's 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,121 +888,17 @@ 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/Id.php:13 -msgid "First Name" -msgstr "Nome" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Cognome" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Nick" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nome e cognome" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 -msgid "Email" -msgstr "Email" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Foto del profilo" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Foto del profilo 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Foto del profilo 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Foto del profilo 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Foto del profilo 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Foto del profilo 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Foto del profilo 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Fuso orario" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Indirizzo home page" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Lingua" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Anno di nascita" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Mese di nascita" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Giorno di nascita" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Data di nascita" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Sesso" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Maschio" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Femmina" - -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canale aggiunto." - #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -917,12 +918,12 @@ msgstr "Stato:" msgid "Homepage: " msgstr "Homepage:" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 msgid "Age:" msgstr "Età:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 -#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/channel.php:1027 #: ../../include/bb2diaspora.php:507 msgid "Location:" msgstr "Luogo:" @@ -931,18 +932,18 @@ msgstr "Luogo:" msgid "Description:" msgstr "Descrizione:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 msgid "Hometown:" msgstr "Città dove vivo:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 msgid "About:" msgstr "Informazioni:" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 -#: ../../include/connections.php:78 ../../include/conversation.php:959 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/conversation.php:956 ../../include/channel.php:1012 msgid "Connect" msgstr "Aggiungi" @@ -1018,322 +1019,38 @@ msgstr "Prima i più vecchi" msgid "No entries (some entries may be hidden)." msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continua" +#: ../../Zotlabs/Module/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/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Abilita le restrizioni del canale premium" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canale premium - con restrizioni" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Le voci del calendario sono state importate." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Non sono state trovate voci del calendario." - -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Un evento non può terminare prima del suo inizio." - -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Impossibile creare un'anteprima." - -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Evento non trovato." - -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1924 ../../include/event.php:951 -msgid "event" -msgstr "l'evento" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Modifica il titolo dell'evento" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Titolo dell'evento" - -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obbligatorio" - -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Modifica la categoria" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Categoria" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Modifica data/ora di inizio" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Data e ora di inizio" - -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "La data e l'ora di fine non sono necessarie" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Modifica data/ora di fine" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Data e ora di fine" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "Adatta al fuso orario di chi legge" - -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante per eventi che avvengono online ma con un certo fuso orario." - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Modifica la descrizione" - -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descrizione" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Modifica il luogo" - -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Posizione geografica" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Condividi questo evento" - -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 -#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 -msgid "Preview" -msgstr "Anteprima" - -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Permessi dei tuoi contatti" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Opzioni avanzate" - -#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l j F" - -#: ../../Zotlabs/Module/Events.php:609 -msgid "Edit event" -msgstr "Modifica l'evento" - -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Elimina l'evento" - -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Link al sito d'origine" - -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "calendario" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Modifica l'evento" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Crea un evento" - -#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:947 -msgid "Previous" -msgstr "Precendente" - -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Successivo" - -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Esporta" - -#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Guarda" - -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "Mese" - -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "Settimana" - -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "Giorno" - -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Oggi" - -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "Evento eliminato" - -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "Impossibile eliminare l'evento" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "I miei segnalibri" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" - -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:81 msgid "Item not found" msgstr "Elemento non trovato" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "L'elemento non è modificabile" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Titolo (facoltativo)" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Modifica post" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modifica il block" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Foto" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Nessun canale." -#: ../../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/Common.php:43 +msgid "Common connections" +msgstr "Contatti in comune" -#: ../../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/Common.php:48 +msgid "No connections in common." +msgstr "Nessun contatto in comune." #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1361,7 +1078,7 @@ msgstr "Archiviati" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 +#: ../../include/conversation.php:1535 msgid "New" msgstr "Novità" @@ -1448,15 +1165,15 @@ msgstr "Ignora il contatto" msgid "Recent activity" msgstr "Attività recenti" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/nav.php:188 ../../include/text.php:855 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 +#: ../../include/text.php:875 ../../include/nav.php:186 msgid "Connections" msgstr "Contatti" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/acl_selectors.php:274 +#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 +#: ../../include/text.php:957 ../../include/nav.php:165 +#: ../../include/acl_selectors.php:276 msgid "Search" msgstr "Cerca" @@ -1469,7 +1186,7 @@ msgid "Connections search" msgstr "Ricerca tra i contatti" #: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Profile_photo.php:79 msgid "Image uploaded but image cropping failed." msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." @@ -1479,66 +1196,66 @@ msgid "Cover Photos" msgstr "Copertine del canale" #: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 +#: ../../Zotlabs/Module/Profile_photo.php:133 msgid "Image resize failed." msgstr "Il ridimensionamento dell'immagine è fallito." #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 msgid "Unable to process image" msgstr "Impossibile elaborare l'immagine" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 +#: ../../Zotlabs/Module/Profile_photo.php:217 msgid "Image upload failed." msgstr "Il caricamento dell'immagine è fallito." #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 +#: ../../Zotlabs/Module/Profile_photo.php:236 msgid "Unable to process image." msgstr "Impossibile elaborare l'immagine." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 msgid "female" msgstr "femmina" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 #, php-format msgid "%1$s updated her %2$s" msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 msgid "male" msgstr "maschio" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 #, php-format msgid "%1$s updated his %2$s" msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 #, php-format msgid "%1$s updated their %2$s" msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 msgid "cover photo" msgstr "Copertina del canale" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 +#: ../../Zotlabs/Module/Profile_photo.php:283 +#: ../../Zotlabs/Module/Profile_photo.php:324 msgid "Photo not available." msgstr "Foto non disponibile." #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:365 msgid "Upload File:" msgstr "Carica un file:" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 +#: ../../Zotlabs/Module/Profile_photo.php:366 msgid "Select a profile:" msgstr "Seleziona un profilo:" @@ -1547,69 +1264,200 @@ 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/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/Events.php:449 +msgid "Edit event title" +msgstr "Modifica il titolo dell'evento" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Titolo dell'evento" + +#: ../../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/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Categorie (separate da virgola)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Modifica la categoria" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Categoria" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Modifica data/ora di inizio" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Data e ora di inizio" + +#: ../../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/Events.php:458 +msgid "Edit finish date and time" +msgstr "Modifica data/ora di fine" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Data e ora di fine" + +#: ../../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/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/Events.php:462 +msgid "Edit Description" +msgstr "Modifica la descrizione" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descrizione" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Modifica il luogo" + +#: ../../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/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Condividi questo evento" + +#: ../../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/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Permessi dei tuoi contatti" + +#: ../../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" @@ -1619,184 +1467,112 @@ msgstr "Questo non è un directory server" msgid "This directory server requires an access token" msgstr "Questo directory server necessita di un token di autenticazione" -#: ../../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/Filer.php:52 +msgid "Save to Folder:" +msgstr "Salva nella cartella:" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chat non trovata" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- scegli -" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Lascia la chat" +#: ../../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/Chat.php:198 -msgid "Delete Room" -msgstr "Elimina questa chat" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Non sono presente" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Sono online" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Aggiungi questa chat ai segnalibri" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: ../../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/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/Chat.php:218 -msgid "Feature disabled." -msgstr "Funzionalità disattivata." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nuova chat" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Nome chat" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Scadenza dei messaggi della chat (minuti)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php: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/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/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -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/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 -msgid "channel sync processed" -msgstr "sincronizzazione del canale effettuata" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "in coda" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "inviato" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "accettato per la spedizione" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "aggiornato" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "aggiornamento ignorato" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permessi non sufficienti" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "Destinatario non trovato" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "messaggio richiamato dal mittente" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "ricevuto messaggio duplicato" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "messaggio recapitato" - -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:64 #, 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:78 +msgid "channel sync processed" +msgstr "sincronizzazione del canale effettuata" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Reinvia" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "in coda" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "inviato" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "accettato per la spedizione" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "aggiornato" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "aggiornamento ignorato" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "permessi non sufficienti" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "Destinatario non trovato" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "messaggio richiamato dal mittente" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "ricevuto messaggio duplicato" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "messaggio recapitato" + +#: ../../Zotlabs/Module/Editlayout.php:126 +#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 msgid "Layout Name" msgstr "Nome layout" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:130 msgid "Layout Description (Optional)" msgstr "Descrizione del layout (facoltativa)" -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editlayout.php:135 msgid "Edit Layout" msgstr "Modifica il layout" -#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:143 msgid "Page link" msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 msgid "Edit Webpage" msgstr "Modifica la pagina web" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Canale aggiunto." + +#: ../../Zotlabs/Module/Acl.php:227 +msgid "network" +msgstr "rete" + +#: ../../Zotlabs/Module/Acl.php:237 +msgid "RSS" +msgstr "RSS" + #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." msgstr "Gruppo di canali creato." @@ -1806,7 +1582,7 @@ msgid "Could not create privacy group." msgstr "Impossibile creare il gruppo di canali." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 +#: ../../include/items.php:3893 msgid "Privacy group not found." msgstr "Gruppo di canali non trovato." @@ -1850,57 +1626,31 @@ msgstr "Tutti i canali connessi" msgid "Click on a channel to add or remove." msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installata" +#: ../../Zotlabs/Module/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/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL icona" - -#: ../../Zotlabs/Module/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/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" #: ../../Zotlabs/Module/Help.php:26 msgid "Documentation Search" @@ -1912,8 +1662,8 @@ msgid "Help:" msgstr "Guida:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:161 +#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 +#: ../../include/nav.php:159 msgid "Help" msgstr "Guida" @@ -1921,124 +1671,335 @@ msgstr "Guida" msgid "$Projectname Documentation" msgstr "Guida di $Projectname" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "Permesso negato." + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "File non trovato." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "Modifica i permessi del file" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "Modifica i permessi" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "Includi tutti i file e le sottocartelle" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "Torna all'elenco dei file" + +#: ../../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: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:163 +msgid "Share this file" +msgstr "Condividi questo file" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "Mostra l'URL del file" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "Notifica ai contatti che hai caricato questo file" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "App" + #: ../../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/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/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layout non trovato." +#: ../../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/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nome del modulo:" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Guida al layout" +#: ../../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/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Condividi i contenuti su $Projectname da Firefox" +#: ../../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/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Nessun canale. Import fallito." -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "rete" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "L'importazione è terminata con successo." -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../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/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Importa un canale" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "File non trovato." +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "File da caricare" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio hub" -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" +#: ../../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/Filestorage.php:157 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio hub" -#: ../../Zotlabs/Module/Filestorage.php:159 -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/Import.php:543 +msgid "Your old login password" +msgstr "La password per il vecchio hub" -#: ../../Zotlabs/Module/Filestorage.php:160 -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/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/Filestorage.php:162 -msgid "Share this file" -msgstr "Condividi questo file" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Rendi questo hub il mio indirizzo primario" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" -msgstr "Mostra l'URL del file" +#: ../../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/Filestorage.php:164 -msgid "Notify your contacts about this file" -msgstr "Notifica ai contatti che hai caricato questo file" +#: ../../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/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "Il post vuoto è stato ignorato." + +#: ../../Zotlabs/Module/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." + +#: ../../Zotlabs/Module/Item.php: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/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 "You have reached your limit of %1$.0f top level posts." +msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." + +#: ../../Zotlabs/Module/Item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." + +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 msgid "Layouts" msgstr "Layout" -#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Layouts.php:183 msgid "Comanche page description language help" msgstr "Guida di Comanche Page Description Language" -#: ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Layouts.php:187 msgid "Layout Description" msgstr "Descrizione del layout" -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creato" - -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Modificato" - -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "Condividi" - -#: ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Layouts.php:192 msgid "Download PDL file" msgstr "Scarica il file PDL" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Nome" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Cognome" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Nick" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nome e cognome" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2151 ../../boot.php:1705 +msgid "Email" +msgstr "Email" + +#: ../../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/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:234 +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/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pagina web" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "block" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "layout" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" + +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s elemento installato" + +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Elementi con installazione fallita: %s" + #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Mi piace/Non mi piace" @@ -2074,65 +2035,1180 @@ msgstr "Canale non trovato." msgid "Previous action reversed." msgstr "Il comando precedente è stato annullato." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 +#: ../../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/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 +#: ../../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/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 "A %1$s piace %3$s di %2$s" -#: ../../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 "A %1$s non piace %3$s di %2$s" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../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/Like.php:425 +#: ../../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/Like.php:427 +#: ../../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/Like.php:429 +#: ../../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/Like.php:431 +#: ../../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/Like.php:433 +#: ../../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/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "Comando completato." -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "Grazie." +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Importazione completata" + +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importa i contenuti" + +#: ../../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/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Hai superato il numero massimo di inviti." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Unisciti a noi su $Projectname" + +#: ../../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/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio è fallita." + +#: ../../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/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Spedisci inviti" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Entra nella mia comunità su $Projectname." + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Dovrai fornire questo codice invito:" + +#: ../../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/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/Invite.php:142 +msgid "or visit" +msgstr "oppure visita" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Clicca su [Aggiungi]" + +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Le informazioni remote sulla privacy non sono disponibili." + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Visibile a:" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Indirizzo non trovato." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "La ricerca dell'indirizzo è fallita." + +#: ../../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/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronizzazione tra hub" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Nessun indirizzo trovato." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Modifica gli indirizzi del canale" + +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Indirizzo" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primario" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Elimina" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronizza ora" + +#: ../../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/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/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/Magic.php:71 +msgid "Hub not found." +msgstr "Hub non trovato." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." + +#: ../../Zotlabs/Module/Mail.php:78 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." + +#: ../../Zotlabs/Module/Mail.php:143 +msgid "Messages" +msgstr "Messaggi" + +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Messaggio revocato." + +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Scade il YYYY-MM-DD HH:MM" + +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "Il canale cercato non è in questa rete" + +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "A:" + +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Oggetto:" + +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Allega file" + +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Invia" + +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Data di scadenza" + +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "Elimina il messaggio" + +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Rapporto di trasmissione" + +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Revoca il messaggio" + +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." + +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Elimina la conversazione" + +#: ../../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/Mail.php:367 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Il tuo messaggio per %s (%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 "Hai creato %1$.0f dei %2$.0f canali permessi." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Gestione canali" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canale attuale" + +#: ../../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/Manage.php:168 +msgid "Default Channel" +msgstr "Canale predefinito" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Rendi predefinito" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nuovi messaggi" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuove richieste di entrare in contatto" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canale delegato" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Nessun account valido trovato." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Utente del sito (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "È stato richiesto di reimpostare password su %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Reimposta la password" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "La password è stata reimpostata come richiesto." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "La tua nuova password è" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "clicca qui per accedere" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "La tua password su %s è cambiata" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Indirizzo email" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reimposta" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nome del menu" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titolo del menu" + +#: ../../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/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetti i segnalibri" + +#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Salva e procedi" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menù" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Permetti segnalibri" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Elimina questo menù" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifica questo menù" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menù non trovato." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modifica menù" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi elementi di questo menù" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nome del menù" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titolo del menù" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Non trovato." + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s è %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Umore" + +#: ../../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/Match.php:26 +msgid "Profile Match" +msgstr "Profili corrispondenti" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "interessi personali:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Nessun risultato" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Impossibile trovare il gruppo di canali" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Canale sconosciuto" + +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "forum" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Cerca risultati con:" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Il gruppo di canali è vuoto" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Gruppo di canali:" + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Contatto non valido." + +#: ../../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/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Impossibile creare l'elemento." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Non è possibile aggiornare l'elemento del menù." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Impossibile aggiungere l'elemento al menù." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permessi del menu" + +#: ../../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/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nome link" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Azione del link o del sottomenu" + +#: ../../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/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/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Apri il link in una nuova finestra" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Ordine dell'elenco" + +#: ../../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/Mitem.php:161 +msgid "Submit and finish" +msgstr "Salva e termina" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Salva e continua" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menu:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Destinazione link" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Modifica il menù" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Modifica l'elemento" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Elimina l'elemento" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nuovo elemento" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Modifica il contenitore del menù" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Aggiungi un elemento al menù" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Elimina questo elemento del menù" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Modifica questo elemento del menù" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "L'elemento del menù non è stato trovato." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "L'elemento del menù è stato eliminato." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "L'elemento del menù non può essere eliminato." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Modifica l'elemento del menù" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Testo del link" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nome o titolo" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Tipo di canale e privacy" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Maggiori informazioni sui ruoli" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crea un canale" + +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." + +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "oppure importa un canale esistente da un altro server/hub." + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Rifiuta" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Segna come lette le notifiche di sistema" + +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." + +#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Foto del profilo" + +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Album non trovato." + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Elimina album" + +#: ../../Zotlabs/Module/Photos.php:153 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore rimuovili dall'Archivio file " + +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Elimina foto" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." + +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." + +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Carica foto" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Scegli il nome dell'album" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "o seleziona un album esistente (doppio click)" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Pubblica sulla bacheca" + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Titolo (facoltativo):" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Descrizione (facoltativa):" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "Non è stato possibile leggere il nome dell'album" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Foto dei contatti" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Prima i più recenti" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Guarda la foto" + +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Modifica album" + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." + +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Foto non disponibile" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Usa come copertina del canale" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Foto privata" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Rimuovi" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Modifica la foto" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Inserisci il nome del nuovo album" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "o seleziona uno esistente (doppio click)" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Didascalia" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Aggiungi tag" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Marca come 'per adulti'" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" + +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Attendere" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Questo sei tu" + +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commento" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Mi piace" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "Non mi piace" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "D'accordo" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Non d'accordo" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Astenuti" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Partecipano" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Non partecipano" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Forse partecipano" + +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1717 +msgid "View all" +msgstr "Vedi tutto" + +#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 +#: ../../include/channel.php:1158 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" + +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" + +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "Gestione delle foto" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "In questa foto:" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Mappa" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Mi piace" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Non mi piace" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Chiudi" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Guarda l'album" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Foto recenti" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[oggi]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "ha creato un evento" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Impossibile raggiungere il tuo hub." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Inviato!" + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Accesso fallito." + +#: ../../Zotlabs/Module/Page.php:133 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali" + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor di configurazione" + +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." + +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Layout aggiornato." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" + +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Layout non trovato." + +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nome del modulo:" + +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Guida al layout" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Poke" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Manda un poke" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Poke/Prod" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Manda un poke o altro a qualcuno" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi inviare al destinatario" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Rendi privato questo post" + +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "La chiamata all'URL restituisce questo errore: %1$s" + #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -2202,11 +3278,6 @@ msgstr "Home page" msgid "Interests" msgstr "Interessi" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Indirizzo" - #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Profilo aggiornato." @@ -2224,7 +3295,7 @@ msgid "View this profile" msgstr "Guarda questo profilo" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 +#: ../../include/channel.php:959 msgid "Edit visibility" msgstr "Cambia la visibilità" @@ -2236,7 +3307,7 @@ msgstr "Gestione del profilo" msgid "Change cover photo" msgstr "Cambia la copertina del canale" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 msgid "Change profile photo" msgstr "Cambia la foto del profilo" @@ -2256,8 +3327,8 @@ msgstr "Elimina questo profilo" msgid "Add profile things" msgstr "Aggiungi oggetti al profilo" -#: ../../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:1526 msgid "Personal" msgstr "Personali" @@ -2397,1097 +3468,119 @@ msgstr "Contatti e social network" msgid "My other channels" msgstr "I miei altri canali" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 msgid "Profile Image" msgstr "Immagine del profilo" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 +#: ../../include/channel.php:937 msgid "Edit Profiles" msgstr "Modifica i tuoi profili" -#: ../../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/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." - -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Impossibile importare i dati dal vecchio hub" - -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." - -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Nessun canale. Import fallito." - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "L'importazione è terminata con successo." - -#: ../../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/Import.php:547 -msgid "Import Channel" -msgstr "Importa un canale" - -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Profile_photo.php:179 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." +"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/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "File da caricare" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Carica la foto del profilo" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio hub" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../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/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Modifica la visibilità del profilo" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio hub" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profilo" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "La password per il vecchio hub" +#: ../../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/Import.php:554 +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visibile a" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Hub pubblici" + +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"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." +"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/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Rendi questo hub il mio indirizzo primario" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "URL del hub" -#: ../../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/Pubsites.php:31 +msgid "Access Type" +msgstr "Tipo di accesso" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "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/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Politica di registrazione" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Valutazioni" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Valuta" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Sito web:" + +#: ../../Zotlabs/Module/Rate.php:163 #, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Valutazione (visibile a tutti)" -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Il post vuoto è stato ignorato." +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" -#: ../../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/Ratings.php:73 +msgid "No ratings" +msgstr "Nessuna valutazione" -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "I post duplicati sono scartati." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Valutazione:" -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Post non salvato." +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Sito web:" -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "Impossibile caricare il post dal database." - -#: ../../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/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/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." - -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Foto del profilo" - -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album non trovato." - -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Elimina album" - -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione dall'Archivio file " - -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Elimina foto" - -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." - -#: ../../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/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." - -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Carica foto" - -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Scegli il nome dell'album" - -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o seleziona un album esistente (doppio click)" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Pubblica sulla bacheca" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Titolo (facoltativo):" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descrizione (facoltativa):" - -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "Non è stato possibile leggere il nome dell'album" - -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Foto dei contatti" - -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Prima i più recenti" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" - -#: ../../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/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Modifica album" - -#: ../../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/Photos.php:870 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Usa come copertina del canale" - -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Foto privata" - -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" - -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Rimuovi" - -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Modifica la foto" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Inserisci il nome del nuovo album" - -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Didascalia" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" - -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" - -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" - -#: ../../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/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Attendere" - -#: ../../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/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/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "D'accordo" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Non d'accordo" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Astenuti" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Partecipano" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Non partecipano" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Forse partecipano" - -#: ../../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/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/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/Photos.php:1233 -msgid "Photo Tools" -msgstr "Gestione foto" - -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "In questa foto:" - -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Mappa" - -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Mi piace" - -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Chiudi" - -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Guarda l'album" - -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visibile a:" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importazione completata" - -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importa i contenuti" - -#: ../../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/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Hai superato il numero massimo di inviti." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Unisciti a noi su $Projectname" - -#: ../../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/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio è fallita." - -#: ../../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/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Spedisci inviti" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Entra nella mia comunità su $Projectname." - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Dovrai fornire questo codice invito:" - -#: ../../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/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/Invite.php:142 -msgid "or visit" -msgstr "oppure visita" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Clicca su [Aggiungi]" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Indirizzo non trovato." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "La ricerca dell'indirizzo è fallita." - -#: ../../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/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronizzazione tra hub" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Nessun indirizzo trovato." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Modifica gli indirizzi del canale" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primario" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Elimina" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronizza ora" - -#: ../../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/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/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/Magic.php:71 -msgid "Hub not found." -msgstr "Hub non trovato." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." - -#: ../../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/Mail.php:135 -msgid "Messages" -msgstr "Messaggi" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Messaggio revocato." - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: ../../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/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Il canale cercato non è in questa rete" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "A:" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Oggetto:" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Allega file" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Invia" - -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Data di scadenza" - -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Rapporto di trasmissione" - -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Revoca il messaggio" - -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." - -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Elimina la conversazione" - -#: ../../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/Mail.php:359 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Il tuo messaggio per %s (%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 "Hai creato %1$.0f dei %2$.0f canali permessi." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Gestione canali" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canale attuale" - -#: ../../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/Manage.php:168 -msgid "Default Channel" -msgstr "Canale predefinito" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Rendi predefinito" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canale delegato" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nome del menu" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titolo del menu" - -#: ../../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/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetti i segnalibri" - -#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Salva e procedi" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menù" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Permetti segnalibri" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Elimina questo menù" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifica questo menù" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menù non trovato." - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifica menù" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nome del menù" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titolo del menù" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Non trovato." - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Nessun account valido trovato." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Utente del sito (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "È stato richiesto di reimpostare password su %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Reimposta la password" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "La password è stata reimpostata come richiesto." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "La tua nuova password è" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "clicca qui per accedere" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "La tua password su %s è cambiata" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Indirizzo email" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reimposta" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s è %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Umore" - -#: ../../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/Network.php:94 -msgid "No such group" -msgstr "Impossibile trovare il gruppo di canali" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Canale sconosciuto" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Cerca risultati con:" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "Il gruppo di canali è vuoto" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Gruppo di canali:" - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Contatto non valido." - -#: ../../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/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notifiche di sistema" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profili corrispondenti" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessi personali:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Nessun risultato" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Post e commenti" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo post" - -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Impossibile creare l'elemento." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Non è possibile aggiornare l'elemento del menù." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Impossibile aggiungere l'elemento al menù." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permessi del menu" - -#: ../../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/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nome link" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Azione del link o del sottomenu" - -#: ../../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/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/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Apri il link in una nuova finestra" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Ordine dell'elenco" - -#: ../../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/Mitem.php:161 -msgid "Submit and finish" -msgstr "Salva e termina" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Salva e continua" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menu:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Destinazione link" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Modifica il menù" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Modifica l'elemento" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Elimina l'elemento" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nuovo elemento" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Modifica il contenitore del menù" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Aggiungi un elemento al menù" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Elimina questo elemento del menù" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Modifica questo elemento del menù" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "L'elemento del menù non è stato trovato." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "L'elemento del menù è stato eliminato." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "L'elemento del menù non può essere eliminato." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Modifica l'elemento del menù" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Testo del link" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Descrizione:" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3527,7 +3620,7 @@ msgstr "Coda messaggi in uscita" #: ../../Zotlabs/Module/Admin.php:236 msgid "Your software should be updated" -msgstr "Il tuo software necessita di un aggiornamento" +msgstr "Il tuo software ha bisogno di essere aggiornato" #: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 #: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 @@ -3574,11 +3667,11 @@ msgstr "Versione del repository (dev)" msgid "Site settings updated." msgstr "Impostazioni del sito salvate correttamente." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 msgid "Default" msgstr "Predefinito" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 msgid "mobile" msgstr "mobile" @@ -3610,7 +3703,7 @@ msgstr "È un servizio gratuito" msgid "My site offers free accounts with optional paid upgrades" msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 msgid "Site" msgstr "Sito" @@ -3822,7 +3915,7 @@ msgstr "Abilita la guida contestuale" msgid "" "Display contextual help for the current page when the help button is " "pressed." -msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" +msgstr "Quando è premuto il bottone della guida mostra quella della pagina corrente" #: ../../Zotlabs/Module/Admin.php:525 msgid "Directory Server URL" @@ -3898,12 +3991,12 @@ msgid "0 for no expiration of imported content" msgstr "0 per non avere scadenza" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "Off" msgstr "Off" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "On" msgstr "On" @@ -3940,13 +4033,13 @@ msgstr "Server" msgid "" "By default, unfiltered HTML is allowed in embedded media. This is inherently" " insecure." -msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." +msgstr "" #: ../../Zotlabs/Module/Admin.php:749 msgid "" "The recommended setting is to only allow unfiltered HTML from the following " "sites:" -msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" +msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai siti seguenti:" #: ../../Zotlabs/Module/Admin.php:750 msgid "" @@ -3958,9 +4051,9 @@ msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be 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." +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:756 ../../include/widgets.php:1479 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 msgid "Security" msgstr "Sicurezza" @@ -3976,11 +4069,11 @@ msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a ch #: ../../Zotlabs/Module/Admin.php:759 msgid "Set \"Transport Security\" HTTP header" -msgstr "Imposta il \"Transport Security\" HTTP header" +msgstr "" #: ../../Zotlabs/Module/Admin.php:760 msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Imposta il \"Content Security Policy\" HTTP header" +msgstr "" #: ../../Zotlabs/Module/Admin.php:761 msgid "Allow communications only from these sites" @@ -4012,15 +4105,15 @@ msgstr "Blocca la comunicazione da questi canali" #: ../../Zotlabs/Module/Admin.php:765 msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." +msgstr "" #: ../../Zotlabs/Module/Admin.php:766 msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" +msgstr "" #: ../../Zotlabs/Module/Admin.php:766 msgid "One site per line. By default embedded content is filtered." -msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." +msgstr "" #: ../../Zotlabs/Module/Admin.php:767 msgid "Block embedded HTML from these domains" @@ -4128,7 +4221,7 @@ msgid "Account '%s' unblocked" msgstr "Rimosso il blocco verso '%s'" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1383 msgid "Accounts" msgstr "Account" @@ -4138,7 +4231,7 @@ msgstr "seleziona tutti" #: ../../Zotlabs/Module/Admin.php:1034 msgid "Registrations waiting for confirm" -msgstr "Registrazioni in attesa di conferma" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1035 msgid "Request date" @@ -4234,7 +4327,7 @@ msgstr "Il canale '%s' permette codice nei contenuti" msgid "Channel '%s' code disallowed" msgstr "Il canale '%s' non permette codice nei contenuti" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 msgid "Channels" msgstr "Canali" @@ -4254,7 +4347,7 @@ msgstr "Permetti codice" msgid "Disallow Code" msgstr "Non permettere codice" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 msgid "Channel" msgstr "Canale" @@ -4293,7 +4386,7 @@ msgid "Enable" msgstr "Attiva" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1387 msgid "Plugins" msgstr "Plugin" @@ -4302,8 +4395,8 @@ msgid "Toggle" msgstr "Attiva/disattiva" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Impostazioni" @@ -4337,7 +4430,7 @@ msgstr "Disabilitato - incompatibilità di versione" #: ../../Zotlabs/Module/Admin.php:1394 msgid "Enter the public git repository URL of the plugin repo." -msgstr "Inserisci lo URL del repository git dei plugin." +msgstr "" #: ../../Zotlabs/Module/Admin.php:1395 msgid "Plugin repo git URL" @@ -4359,13 +4452,13 @@ msgstr "Scarica il repository del plugin" msgid "Install new repo" msgstr "Installa un nuovo repository" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 msgid "Install" msgstr "Installa" #: ../../Zotlabs/Module/Admin.php:1427 msgid "Manage Repos" -msgstr "Gestisci i repository" +msgstr "Gestisci i repsitory" #: ../../Zotlabs/Module/Admin.php:1428 msgid "Installed Plugin Repositories" @@ -4375,8 +4468,8 @@ msgstr "Repository per i plugin installati" msgid "Install a New Plugin Repository" msgstr "Installa un nuovo repository per i plugin" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 msgid "Update" msgstr "Aggiorna" @@ -4393,7 +4486,7 @@ msgid "Screenshot" msgstr "Istantanea dello schermo" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1388 msgid "Themes" msgstr "Temi" @@ -4409,8 +4502,8 @@ msgstr "[Non supportato]" msgid "Log settings updated." msgstr "Impostazioni di log aggiornate." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 msgid "Logs" msgstr "Log" @@ -4430,7 +4523,7 @@ msgstr "File di log" msgid "" "Must be writable by web server. Relative to your top-level webserver " "directory." -msgstr "Relativo alla directory base del server web. Deve essere scrivibile." +msgstr "" #: ../../Zotlabs/Module/Admin.php:1742 msgid "Log level" @@ -4476,7 +4569,7 @@ msgstr "Impossibile trovare la definizione del campo" msgid "Edit Profile Field" msgstr "Modifica campo del profilo" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 msgid "Profile Fields" msgstr "Campi del profilo" @@ -4504,384 +4597,57 @@ msgstr "Campi personalizzati" msgid "Create Custom Field" msgstr "Aggiungi campo personalizzato" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nome o titolo" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installata" -#: ../../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/Appman.php:46 +msgid "Malformed app." +msgstr "L'app contiene errori" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Inserisci il codice" -#: ../../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/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modifica app" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Tipo di canale e privacy" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crea una app" -#: ../../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/Appman.php:115 +msgid "Name of app" +msgstr "Nome app" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crea un canale" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL icona" -#: ../../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/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" -#: ../../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/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "ID versione" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prezzo app" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[oggi]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "ha creato un evento" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Rifiuta" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Segna come lette le notifiche di sistema" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Poke" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Manda un poke" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Poke/Prod" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Manda un poke o altro a qualcuno" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Rendi privato questo post" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Impossibile raggiungere il tuo hub." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Inviato!" - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Accesso fallito." - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Modifica la visibilità del profilo" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profilo" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visibile a" - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali" - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor di configurazione" - -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." - -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "La chiamata all'URL restituisce questo errore: %1$s" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versione %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "App e componenti installati:" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Nessuna app o componente installato" - -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Questo è un hub di $Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. " - -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Tag: " - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Ultima acquisizione:" - -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Carico medio attuale:" - -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "In esecuzione sull'indirizzo web" - -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Visita hubzilla.org per maggiori informazioni su $Projectname." - -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Per segnalare bug e problemi: visita" - -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problematiche note su $projectname" - -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" - -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Amministratori del sito" - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente." - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Messaggio di errore ricevuto:" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Autenticazione fallita." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Accedi tramite il tuo hub" - -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" - -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Accedi" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Hub pubblici" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself 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/Pubsites.php:31 -msgid "Hub URL" -msgstr "URL del hub" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipo di accesso" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Politica di registrazione" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistiche" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Valutazioni" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Valuta" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente." - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nome del block" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Block" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titolo del block" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Sito web:" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Valutazione (visibile a tutti)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Nessuna valutazione" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Valutazione:" - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Sito web:" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Descrizione:" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "App" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Titolo (facoltativo)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modifica il block" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Nessun canale." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Contatti in comune" - -#: ../../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 +#: ../../Zotlabs/Module/Rmagic.php:44 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." +"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:58 -msgid "Export Content" -msgstr "Esporta i contenuti" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Messaggio di errore ricevuto:" -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento." +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Autenticazione fallita." -#: ../../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:88 +msgid "Remote Authentication" +msgstr "Accedi tramite il tuo hub" -#: ../../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: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: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/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/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 +#: ../../Zotlabs/Module/Settings.php:706 msgid "Remove this account including all its channels" msgstr "Elimina questo account e tutti i suoi canali" -#: ../../Zotlabs/Module/Settings.php:789 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access the private content." -msgstr "Usa questo modulo per creare credenziali di accesso temporanee per condividere oggetti con chi non è utente. Queste identità possono essere gestite nelle Access Control List e i visitatori possono usare le credenziali per accedere ai contenuti privati." - -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide 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" - -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "Con scadenza (aaaa-mm-gg)" - -#: ../../Zotlabs/Module/Settings.php:830 +#: ../../Zotlabs/Module/Settings.php:729 msgid "Additional Features" msgstr "Funzionalità opzionali" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Connector Settings" msgstr "Impostazioni del connettore" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../Zotlabs/Module/Settings.php:792 msgid "No special theme for mobile devices" msgstr "Nessun tema per dispositivi mobili" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:795 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Sperimentale)" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:837 msgid "Display Settings" msgstr "Aspetto" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:838 msgid "Theme Settings" msgstr "Impostazioni del tema" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:839 msgid "Custom Theme Settings" msgstr "Personalizzazione del tema" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:840 msgid "Content Settings" msgstr "Impostazioni dei contenuti" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:846 msgid "Display Theme:" msgstr "Tema per schermi medio grandi:" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:847 msgid "Mobile Theme:" msgstr "Tema per dispositivi mobili:" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "Preload images before rendering the page" msgstr "Anticipa il caricamento delle immagini prima del rendering della pagina" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo" -#: ../../Zotlabs/Module/Settings.php:950 +#: ../../Zotlabs/Module/Settings.php:849 msgid "Enable user zoom on mobile devices" msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Update browser every xx seconds" msgstr "Aggiorna il browser ogni x secondi" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimo 10 secondi, nessun limite massimo" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum number of conversations to load at any time:" msgstr "Massimo numero di conversazioni da mostrare ogni volta:" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum of 100 items" msgstr "Massimo 100" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:852 msgid "Show emoticons (smilies) as images" msgstr "Mostra le faccine (smilies) come immagini" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../Zotlabs/Module/Settings.php:853 msgid "Link post titles to source" msgstr "Il link del titolo di un post porta al sito originale" -#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:854 msgid "System Page Layout Editor - (advanced)" msgstr "Modifica i layout di sistema (avanzato)" -#: ../../Zotlabs/Module/Settings.php:958 +#: ../../Zotlabs/Module/Settings.php:857 msgid "Use blog/list mode on channel page" msgstr "Mostra il canale nella modalità blog" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 msgid "(comments displayed separately)" msgstr "(i commenti sono mostrati separatamente)" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:858 msgid "Use blog/list mode on grid page" msgstr "Mostra la tua rete in modalità blog" -#: ../../Zotlabs/Module/Settings.php:960 +#: ../../Zotlabs/Module/Settings.php:859 msgid "Channel page max height of content (in pixels)" msgstr "Altezza massima dei contenuti del canale (in pixel)" -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 msgid "click to expand content exceeding this height" msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:860 msgid "Grid page max height of content (in pixels)" msgstr "Altezza massima dei contenuti della tua rete (in pixel)" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:894 msgid "Nobody except yourself" msgstr "Nessuno tranne te" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:895 msgid "Only those you specifically allow" msgstr "Solo chi riceve il mio permesso" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:896 msgid "Approved connections" msgstr "Contatti approvati" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:897 msgid "Any connections" msgstr "Tutti i contatti" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:898 msgid "Anybody on this website" msgstr "Chiunque su questo hub" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:899 msgid "Anybody in this network" msgstr "Chiunque su questa rete" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:900 msgid "Anybody authenticated" msgstr "Chiunque abbia effettuato l'accesso" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:901 msgid "Anybody on the internet" msgstr "Chiunque su internet" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../Zotlabs/Module/Settings.php:976 msgid "Publish your default profile in the network directory" msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" -#: ../../Zotlabs/Module/Settings.php:1076 +#: ../../Zotlabs/Module/Settings.php:981 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Vuoi essere suggerito come amico ai nuovi membri?" -#: ../../Zotlabs/Module/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Your channel address is" msgstr "L'indirizzo del tuo canale è" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1032 msgid "Channel Settings" msgstr "Impostazioni del canale" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1039 msgid "Basic Settings" msgstr "Impostazioni di base" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 msgid "Full Name:" msgstr "Nome completo:" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1042 msgid "Your Timezone:" msgstr "Il tuo fuso orario:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Default Post Location:" msgstr "Località predefinita:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Geographical location to display on your posts" msgstr "La posizione geografica da mostrare sui tuoi post" -#: ../../Zotlabs/Module/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1044 msgid "Use Browser Location:" msgstr "Usa la località rilevata dal browser:" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "Adult Content" msgstr "Contenuto per adulti" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" -#: ../../Zotlabs/Module/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1048 msgid "Security and Privacy Settings" msgstr "Impostazioni di sicurezza e privacy" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../Zotlabs/Module/Settings.php:1051 msgid "Your permissions are already configured. Click to view/adjust" msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Hide my online presence" msgstr "Nascondi la mia presenza online" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Prevents displaying in your profile that you are online" msgstr "Non mostrare sul tuo profilo quando sei online" -#: ../../Zotlabs/Module/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Simple Privacy Settings:" msgstr "Impostazioni di privacy semplificate" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Settings.php:1056 msgid "" "Very Public - 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,6 +5930,184 @@ msgstr "Elimina tutti i file" msgid "Remove this file" msgstr "Elimina questo file" +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versione %s" + +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "App e componenti installati:" + +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Nessuna app o componente installato" + +#: ../../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/Siteinfo.php:68 +msgid "Tag: " +msgstr "Tag: " + +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Ultima acquisizione:" + +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Carico medio attuale:" + +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "In esecuzione sull'indirizzo web" + +#: ../../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/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Per segnalare bug e problemi: visita" + +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "Problematiche note su $projectname" + +#: ../../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/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Amministratori del sito" + +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Impossibile creare la sorgente. Nessun canale selezionato." + +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Sorgente creata." + +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Sorgente aggiornata." + +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" + +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:71 +msgid "Channel Sources" +msgstr "Sorgenti del canale" + +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Gestisci le sorgenti dei contenuti del tuo canale." + +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nuova sorgente" + +#: ../../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 "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Lascia vuoto per importare tutti i contenuti pubblici" + +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Nome del canale" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Sorgente non trovata." + +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Modifica la sorgente" + +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Elimina la sorgente" + +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Sorgente eliminata" + +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Impossibile rimuovere la sorgente." + +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" + +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s non segue più %3$s di %2$s" + +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." + +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignora/nascondi" + +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +msgid "post" +msgstr "il post" + +#: ../../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/Thing.php:114 msgid "Thing updated" msgstr "L'oggetto è stato aggiornato" @@ -6299,229 +6165,74 @@ msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" msgid "Add Thing to your Profile" msgstr "Aggiungi l'oggetto al tuo profilo" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Impossibile creare la sorgente. Nessun canale selezionato." +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Esporta il canale" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Sorgente creata." - -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Sorgente aggiornata." - -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" - -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 -msgid "Channel Sources" -msgstr "Sorgenti del canale" - -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Gestisci le sorgenti dei contenuti del tuo canale." - -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nuova sorgente" - -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." +"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/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Esporta i contenuti" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Lascia vuoto per importare tutti i contenuti pubblici" - -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Nome del canale" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Uexport.php:59 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)" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento." -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Sorgente non trovata." +#: ../../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/Sources.php:140 -msgid "Edit Source" -msgstr "Modifica la sorgente" +#: ../../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/Sources.php:141 -msgid "Delete Source" -msgstr "Elimina la sorgente" - -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Sorgente eliminata" - -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Impossibile rimuovere la sorgente." - -#: ../../Zotlabs/Module/Subthread.php:118 +#: ../../Zotlabs/Module/Uexport.php:63 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" - -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s non segue più %3$s di %2$s" - -#: ../../Zotlabs/Module/Suggest.php:39 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." +"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/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignora/nascondi" - -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "il post" - -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 -msgid "comment" -msgstr "il commento" - -#: ../../Zotlabs/Module/Tagger.php:100 +#: ../../Zotlabs/Module/Uexport.php:64 #, 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*.\"" +"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/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Confronto tra revisioni" +#: ../../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/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 +#: ../../Zotlabs/Module/Viewconnections.php:62 msgid "No connections." msgstr "Nessun contatto." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visita il profilo di %s [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:104 msgid "View Connections" msgstr "Elenco contatti" @@ -6529,23 +6240,22 @@ msgstr "Elenco contatti" msgid "Source of Item" msgstr "Sorgente" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autorizza la app" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Pagine web" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla app e inserisci questo codice di sicurezza:" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Azioni" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Titolo della pagina" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6555,6 +6265,92 @@ msgstr "Ricerca canale" msgid "Lookup xchan beginning with (or webbie): " msgstr "Cerca un canale (o un webbie) che inizia per:" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Amministrazione sito" + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "Bug Report" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "Vedi i segnalibri" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "Le mie aree chat" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Suggerisci canali" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Accedi" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Rete" + +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Bacheca del canale" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Eventi" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Elenchi pubblici dei canali" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Messaggi" + +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Diagnostica" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Suggerisci" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Canale casuale" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Invita" + +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Funzionalità" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Post" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Acquista" + #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Chat senza nome" @@ -6575,19 +6371,19 @@ msgstr "Chat non trovata." msgid "Room is full" msgstr "La chat è al completo" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 msgid "$Projectname Notification" msgstr "Notifica $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 msgid "Thank You," msgstr "Grazie," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format msgid "%s Administrator" msgstr "L'amministratore di %s" @@ -6780,97 +6576,11 @@ msgstr "Ha creato un nuovo post" msgid "commented on %s's post" msgstr "ha commentato il post di %s" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Amministrazione sito" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Bug Report" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Vedi i segnalibri" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Le mie aree chat" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Firefox Share" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnostica remota" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Suggerisci canali" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Accedi" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Rete" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Bacheca del canale" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Eventi" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Elenchi pubblici dei canali" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Messaggi" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Diagnostica" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Suggerisci" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Canale casuale" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Invita" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funzionalità" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Post" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Acquista" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 msgid "Private Message" msgstr "Messaggio privato" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 msgid "Select" msgstr "Scegli" @@ -6918,11 +6628,11 @@ msgstr "Attiva/disattiva preferito" msgid "starred" msgstr "preferito" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 msgid "Message signature validated" msgstr "Messaggio con firma verificata" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 msgid "Message signature incorrect" msgstr "Massaggio con firma non corretta" @@ -6978,17 +6688,17 @@ msgstr "Da bacheca a bacheca" msgid "via Wall-To-Wall:" msgstr "da bacheca a bacheca:" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 #, php-format msgid "from %s" msgstr "da %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 #, php-format msgid "last edited: %s" msgstr "ultima modifica: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 #, php-format msgid "Expires: %s" msgstr "Scadenza: %s" @@ -7006,27 +6716,26 @@ msgid "Mark all seen" msgstr "Marca tutto come letto" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mostra tutto" +msgid "[+] show all" +msgstr "[+] mostra tutto" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 msgid "Bold" msgstr "Grassetto" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 msgid "Italic" msgstr "Corsivo" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 msgid "Underline" msgstr "Sottolineato" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 msgid "Quote" msgstr "Citazione" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 msgid "Code" msgstr "Codice" @@ -7042,74 +6751,11 @@ msgstr "Collegamento" msgid "Video" msgstr "Video" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Visibile secondo le impostazioni predefinite" - -#: ../../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" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, 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" - -#: ../../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/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/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/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Impostazione predefinita di chi può vedere le tue pagine web" - #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Impossibile trovare il nome utente nel file da importare." -#: ../../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 "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." @@ -7118,291 +6764,6 @@ msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è falli msgid "Cannot locate DNS info for database server '%s'" msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'immagine supera il limite massimo di %lu bytes" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Impossibile salvare la foto." - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nuova foto" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha pubblicato %2$s su %3$s" - -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Album foto" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Esci" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Chiudi questa sessione" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Bacheca" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "I tuoi post e conversazioni" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Il tuo profilo" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Gestisci i tuoi profili" - -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Modifica il profilo" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Modifica il tuo profilo" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Le tue foto" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "I tuoi file" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Le tue chat" - -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Segnalibri" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "I tuoi segnalibri" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Le tue pagine web" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "La tua wiki" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Accedi" - -#: ../../include/nav.php:129 -#, 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" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Bacheca" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Crea un account" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Applicazioni, utilità, link, giochi" - -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Elenchi pubblici dei canali" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "La tua rete" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Segna come lette le notifiche della tua rete" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Bacheca del canale" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Segna come lette le notifiche del canale" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Avvisi" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notifiche" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Messaggi privati" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Guarda tutti i messaggi privati" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Segna come letti tutti i messaggi privati" - -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "In arrivo" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Inviati" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Calendario" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Guarda tutti gli eventi" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Marca come letti tutti gli eventi" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Gestisci i tuoi canali" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Impostazioni dell'account e del canale" - -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Amministrazione" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Installazione e configurazione del sito" - -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Caricamento in corso..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@nome, #tag, ?guida, contenuto" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Attendere..." - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "guarda nelle dimensioni reali" - -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Amministratore" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Nessun titolo" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nuova pagina web" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titolo" - #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -7441,159 +6802,952 @@ 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/channel.php:67 -msgid "Empty name" -msgstr "Nome vuoto" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Inizio:" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nome troppo lungo" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Fine:" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Account senza identificativo" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Questo evento è stato aggiunto al tuo calendario" -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Non specificato" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Necessita di un intervento" -#: ../../include/channel.php:212 +#: ../../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 "" -"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." +"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/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'importazione è fallita." -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Profilo predefinito" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Sconosciuto)" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Visibile a chiunque su internet." -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Visibile solo a te." -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Visibile a tutti su questa rete." -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Sesso:" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Visibile a chiunque sia autenticato." -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Stato:" - -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Home page:" - -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Online adesso" - -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Mi piace questo canale" - -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Compleanno:" - -#: ../../include/channel.php:1232 +#: ../../include/items.php:1144 #, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +msgid "Visible to anybody on %s." +msgstr "Visibile a tutti su %s." -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Visibile a tutti coloro che ti seguono." -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Tag:" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Visibile ai contatti approvati." -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Orientamento politico:" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Visibile ad alcuni contatti scelti." -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religione:" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "Gruppo di canali vuoto." -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppo di canali: %s" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Mi piace:" +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Contatto non trovato." -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Non mi piace:" +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "foto del profilo" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Devi scegliere un destinatario." -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "I miei altri canali:" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[nessun titolo]" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Gusti musicali:" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Impossibile determinare il mittente." -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Non è stato possibile verificare il post." -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Televisione:" +#: ../../include/text.php:428 +msgid "prev" +msgstr "prec" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" +#: ../../include/text.php:430 +msgid "first" +msgstr "inizio" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Amore:" +#: ../../include/text.php:459 +msgid "last" +msgstr "fine" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Lavoro:" +#: ../../include/text.php:462 +msgid "next" +msgstr "succ" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Scuola:" +#: ../../include/text.php:472 +msgid "older" +msgstr "più recenti" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Mi piace" +#: ../../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/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "ha mandato un poke" + +#: ../../include/text.php:1039 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "ha effettuato un ping" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "spintone" + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "ha ricevuto uno spintone" + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "schiaffo" + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "ha ricevuto un finger" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "rifiuto" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "felice" + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "calmo" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "stanco" + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "vivace" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "arrabbiato" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "stupito" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "confuso" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "attento" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "amaro" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "allegro" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "vivace" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "seccato" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "ansioso" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "irritabile" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "turbato" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustrato" + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "in depressione" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivato" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "rilassato" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "sorpreso" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "lunedì" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "martedì" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "mercoledì" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "giovedì" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "venerdì" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "sabato" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "domenica" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "gennaio" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "febbraio" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "marzo" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "aprile" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "Mag" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "giugno" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "luglio" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "agosto" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "settembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "ottobre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "novembre" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "dicembre" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Allegato non riconoscuto" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "sconosciuta" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "rimuovi la categoria" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "rimuovi dal file" + +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "predefinito" + +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Layout della pagina" + +#: ../../include/text.php:1761 +msgid "You can create your own with the layouts tool" +msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" + +#: ../../include/text.php:1803 +msgid "Page content type" +msgstr "Tipo di contenuto della pagina" + +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "l'attività" + +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Strumenti di design" + +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Pagine" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nuova app" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggerimenti" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Altro..." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Aggiungi un contatto" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Indirizzo del canale" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Per esempio: bob@example.com, https://example.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Note" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Rimuovi termine" + +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "aggiungi" + +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Cartelle salvate" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tutto" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archivi" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Aggiorna" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Il tuo account" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Impostazioni del canale" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Funzionalità opzionali" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Componenti aggiuntivi" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Aspetto" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestione repliche" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Esporta il canale" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "App connesse" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Canale premium - impostazioni" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Menu messaggi privati" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Vista combinata" + +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "In arrivo" + +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Inviati" + +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversazioni" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Ricevuti" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Inviati" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Nessun messaggio." + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Elimina la conversazione" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Menu eventi" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Eventi del giorno" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Eventi della settimana" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Eventi del mese" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Gestione eventi" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Esporta calendario" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importa calendario" + +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Chat" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Riepilogo" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Partecipanti" + +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Chat nei segnalibri" + +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Chat suggerite" + +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/immagine" + +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Clicca per mostrare tutto" + +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Valutazione" + +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Valutami" + +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Vedi le valutazioni ricevute" + +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Forum" + +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Attività" + +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Guida" + +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Informazioni sul sito/progetto" + +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Per gli utenti" + +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Per gli amministratori" + +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Per sviluppatori" + +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "Richieste in attesa di conferma" + +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Coda di attesa" + +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Aggiornamenti al DB" + +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Amministrazione" + +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Plugin" + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." + +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocollo disabilitato." + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "I segnalibri di %1$s" + +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Diario pubblico" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 +#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 +#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 +#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 +#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 +#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 +#: ../../include/bbcode.php:883 +msgid "Image/photo" +msgstr "Immagine" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Contenuto cifrato" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installa l'elemento %s:" + +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." + +#: ../../include/bbcode.php:254 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s ha scritto %2$s %3$s" + +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Ad altri questo testo potrebbe apparire in modo differente" + +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Visibilità negli elenchi pubblici" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modalità SafeSearch" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo forum pubblici" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo in questo sito" + +#: ../../include/security.php:383 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." + +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Esci" + +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Chiudi questa sessione" + +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Bacheca" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "I tuoi post e conversazioni" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Il tuo profilo" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Gestisci i tuoi profili" + +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Modifica il profilo" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Modifica il tuo profilo" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Le tue foto" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "I tuoi file" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Le tue chat" + +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Segnalibri" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "I tuoi segnalibri" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Le tue pagine web" + +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Accedi" + +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - clicca per uscire" + +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Accedi dal tuo hub" + +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Clicca per farti riconoscere dal tuo hub principale" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Bacheca" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Crea un account" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Applicazioni, utilità, link, giochi" + +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" + +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Elenchi pubblici dei canali" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "La tua rete" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Segna come lette le notifiche della tua rete" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Bacheca del canale" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Segna come lette le notifiche del canale" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Avvisi" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notifiche" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Messaggi privati" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Guarda tutti i messaggi privati" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Segna come letti tutti i messaggi privati" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Calendario" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Guarda tutti gli eventi" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Marca come letti tutti gli eventi" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Gestisci i tuoi canali" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Impostazioni dell'account e del canale" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Installazione e configurazione del sito" + +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Caricamento in corso..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@nome, #tag, ?guida, contenuto" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Attendere..." #: ../../include/connections.php:95 msgid "New window" @@ -7608,6 +7762,52 @@ msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" msgid "User '%s' deleted" msgstr "Utente '%s' eliminato" +#: ../../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/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Ricerca canali" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Scrivi un nome o un interesse" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Aggiungi" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Per esempio: Mario Rossi, Pesca" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Profilo casuale" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Invita amici" + +#: ../../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/contact_widgets.php:127 +msgid "show more" +msgstr "mostra tutto" + #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7618,269 +7818,258 @@ msgstr "%1$s adesso è connesso con %2$s" msgid "%1$s poked %2$s" msgstr "%1$s ha mandato un poke a %2$s" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "ha mandato un poke" - -#: ../../include/conversation.php:694 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "Vedi il profilo di %s @ %s" -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Categorie:" -#: ../../include/conversation.php:714 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Classificato come:" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "Vedi nel contesto" -#: ../../include/conversation.php:850 +#: ../../include/conversation.php:847 msgid "remove" msgstr "rimuovi" -#: ../../include/conversation.php:855 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Elimina gli oggetti selezionati" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Vedi il sorgente" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Segui la discussione" -#: ../../include/conversation.php:953 +#: ../../include/conversation.php:950 msgid "Unfollow Thread" msgstr "Non seguire la discussione" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:955 msgid "Activity/Posts" msgstr "Attività e Post" -#: ../../include/conversation.php:960 +#: ../../include/conversation.php:957 msgid "Edit Connection" msgstr "Modifica il contatto" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:958 msgid "Message" msgstr "Messaggio" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "Piace a %s." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "Non piace a %s." -#: ../../include/conversation.php:1082 +#: ../../include/conversation.php:1079 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "" msgstr[1] "Piace a %2$d persone." -#: ../../include/conversation.php:1084 +#: ../../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/conversation.php:1090 +#: ../../include/conversation.php:1087 msgid "and" msgstr "e" -#: ../../include/conversation.php:1093 +#: ../../include/conversation.php:1090 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] "e altre %d persone" -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "Piace a %s." -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "Non piace a %s." -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "La tua località" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Rimuovi la località data dal browser" -#: ../../include/conversation.php:1182 +#: ../../include/conversation.php:1177 msgid "Tag term:" msgstr "Tag:" -#: ../../include/conversation.php:1183 +#: ../../include/conversation.php:1178 msgid "Where are you right now?" msgstr "Dove sei ora?" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1210 msgid "Page link name" msgstr "Nome del link alla pagina" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:1213 msgid "Post as" msgstr "Pubblica come " -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1223 msgid "Toggle voting" msgstr "Abilita/disabilita il voto" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../include/conversation.php:1269 +#: ../../include/conversation.php:1254 msgid "Set publish date" msgstr "Data di uscita programmata" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "Scopri" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Contenuti pubblici importati" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Commenti recenti" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Per data del commento" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Post recenti" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Per data di creazione" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1529 msgid "Posts that mention or involve you" msgstr "Post che ti riguardano" -#: ../../include/conversation.php:1553 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Elenco attività - per data" -#: ../../include/conversation.php:1559 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Preferiti" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Post preferiti" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Post marcati come spam" -#: ../../include/conversation.php:1629 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Post e messaggi di stato" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1623 msgid "About" msgstr "Informazioni" -#: ../../include/conversation.php:1641 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Dettagli del profilo" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Album foto" + +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Archivio file" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Chat" - -#: ../../include/conversation.php:1693 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Segnalibri salvati" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Gestisci le pagine web" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Partecipa" msgstr[1] "Partecipano" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Non partecipa" msgstr[1] "Non partecipano" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso" msgstr[1] "Indecisi" -#: ../../include/conversation.php:1777 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "D'accordo" msgstr[1] "D'accordo" -#: ../../include/conversation.php:1780 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Non d'accordo" msgstr[1] "Non d'accordo" -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Astenuto" msgstr[1] "Astenuti" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." - -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." - #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Frequentemente" @@ -7945,6 +8134,12 @@ msgstr "Neutro" msgid "Non-specific" msgstr "Non specificato" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "Altro" + #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Indeciso" @@ -8121,366 +8316,361 @@ msgstr "Chi se ne frega" msgid "Ask me" msgstr "Chiedimelo" -#: ../../include/bookmarks.php:35 +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Visibile secondo le impostazioni predefinite" + +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Solo io" + +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Pubblico" + +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Tutti sulla rete $Projectname" + +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "%1$s's bookmarks" -msgstr "I segnalibri di %1$s" +msgid "Any account on %s" +msgstr "Tutti gli account su %s" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "ospite:" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Chiunque tra i miei contatti" -#: ../../include/security.php:427 +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Solo chi riceve il mio permesso" + +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Chiunque sia autenticato (inclusi visitatori di altre reti)" + +#: ../../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/PermissionDescription.php:161 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." +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" -#: ../../include/text.php:404 -msgid "prev" -msgstr "prec" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" -#: ../../include/text.php:406 -msgid "first" -msgstr "inizio" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "" -#: ../../include/text.php:435 -msgid "last" -msgstr "fine" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" -#: ../../include/text.php:438 -msgid "next" -msgstr "succ" +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "" -#: ../../include/text.php:448 -msgid "older" -msgstr "più recenti" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Email non valida" -#: ../../include/text.php:450 -msgid "newer" -msgstr "più nuovi" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Il dominio della tua email attualmente non è permesso su questo sito" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Nessun contatto" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." -#: ../../include/text.php:868 +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "È necessario un invito." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." + +#: ../../include/account.php:249 #, php-format -msgid "View all %s connections" -msgstr "Mostra tutti i %s contatti" +msgid "Registration confirmation for %s" +msgstr "Registrazione di %s confermata" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" + +#: ../../include/account.php: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" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Account approvato." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" + +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Registrazione verificata. Adesso puoi effettuare login." + +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: ../../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:497 +msgid "No source file." +msgstr "Nessun file di origine." + +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "Il file da sostituire non è stato trovato" + +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "Il file da aggiornare non è stato trovato" + +#: ../../include/attach.php:672 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" + +#: ../../include/attach.php:686 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." + +#: ../../include/attach.php:842 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." + +#: ../../include/attach.php:855 +msgid "Stored file could not be verified. Upload failed." +msgstr "Il file non può essere verificato. Caricamento fallito." + +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Percorso non disponibile." + +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Il percorso del file è vuoto" + +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "il file o il percorso del file è duplicato" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Percorso del file non trovato." + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "mkdir fallito." + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "scrittura su database fallita." + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "La posizione è vuota" + +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "poke" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Nome vuoto" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "ping" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Nome troppo lungo" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "ha effettuato un ping" +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Account senza identificativo" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "spintone" +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Il nome dell'account è obbligatorio." -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "ha ricevuto uno spintone" +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Nome utente riservato. Per favore scegline un altro." -#: ../../include/text.php:1021 -msgid "slap" -msgstr "schiaffo" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ha ricevuto uno schiaffo" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "ha ricevuto un finger" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "rifiuto" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "ha ricevuto un rifiuto" - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "felice" - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "calmo" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "stanco" - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "vivace" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "arrabbiato" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "stupito" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "confuso" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "attento" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amaro" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "allegro" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "vivace" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "seccato" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "ansioso" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "irritabile" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "turbato" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrato" - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "in depressione" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivato" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "rilassato" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorpreso" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "lunedì" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "martedì" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "mercoledì" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "giovedì" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "venerdì" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "sabato" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "domenica" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "gennaio" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "febbraio" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "marzo" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "aprile" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "Mag" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "giugno" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "luglio" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "agosto" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "settembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "ottobre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "novembre" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "dicembre" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Allegato non riconoscuto" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "sconosciuta" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "rimuovi la categoria" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "rimuovi dal file" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "predefinito" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Layout della pagina" - -#: ../../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/text.php:1784 -msgid "Page content type" -msgstr "Tipo di contenuto della pagina" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Seleziona una lingua diversa" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "l'attività" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Strumenti di design" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Pagine" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Uscita effettuata." - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Autenticazione fallita" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Può vedere i miei contenuti e i post normali" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Può vedere le mie pagine web" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Può scrivere sulla bacheca del mio canale" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Può aggiungere \"mi piace\" a tutto il resto" - -#: ../../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/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/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Può aprire una chat con me (se disponibile)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Può modificare il mio archivio file e foto" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Può modificare le mie pagine web" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Può amministrare i contenuti del mio canale" - -#: ../../include/permissions.php:46 +#: ../../include/channel.php:211 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" +"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/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 "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" + +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Tag:" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Orientamento politico:" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religione:" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Interessi e hobby:" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Mi piace:" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "Non mi piace:" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Contatti e social network:" + +#: ../../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" @@ -8527,257 +8717,378 @@ msgid "Provide managed web pages on your channel" msgstr "Attiva la creazione di pagine web sul tuo canale" #: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "Fornisce una wiki per il tuo canale" - -#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Nascondi le valutazioni" -#: ../../include/features.php:56 +#: ../../include/features.php:55 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Nascondi i bottoni delle valutazioni sul tuo canale e sul profilo. Nota: le persone potranno comunque esprimere una valutazione altrove." -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Private Notes" msgstr "Note private" -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "Scegli il canale attivo dal menu" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Scegli il canale attivo direttamente dal menu di navigazione" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "Posizione geografica" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche." -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Access Controlled Chatrooms" msgstr "Chat ad accesso riservato" -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Provide chatrooms and chat services with access control." msgstr "Il servizio di chat con accesso riservato" -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "Smart Birthdays" msgstr "Compleanni intelligenti" -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "Modalità esperto" -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "Premium Channel" msgstr "Canale premium" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" -#: ../../include/features.php:68 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "Modalità di scrittura post" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Large Photos" msgstr "Foto grandi" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)" -#: ../../include/features.php:72 +#: ../../include/features.php:71 msgid "Automatically import channel content from other channels or feeds" msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "Even More Encryption" msgstr "Cifratura addizionale" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Enable Voting Tools" msgstr "Permetti i post con votazione" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Provide a class of post which others can vote on" msgstr "Rende possibile la creazione di post in cui sarà possibile votare" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Pubblicazione ritardata" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Allow posts to be published at a later date" msgstr "Per scegliere una data e un'ora a cui far uscire i post" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Impedisci post e commenti duplicati" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima." -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Filtraggio dei contenuti" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Ricerca per data" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Per selezionare i post in un intervallo tra date" -#: ../../include/features.php:84 ../../include/group.php:311 +#: ../../include/features.php:83 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Gruppi di canali" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Abilita i gruppi di canali" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Ricerche salvate" - -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Salva i termini delle ricerche per poterle ripetere" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Attività personale" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Contenuti nuovi" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Enable tab to display all new Network activity" msgstr "Abilita il link per visualizzare solo i nuovi contenuti" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Affinity Tool" msgstr "Filtro per affinità" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Filter stream activity by depth of relationships" msgstr "Permette di selezionare i contenuti in base al livello di amicizia" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Connection Filtering" msgstr "Filtro sui contatti" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filtra i post che ricevi con parole chiave" -#: ../../include/features.php:90 +#: ../../include/features.php:89 msgid "Show channel suggestions" msgstr "Mostra alcuni canali che potrebbero interessarti" -#: ../../include/features.php:95 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "Gestione post e commenti" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Community Tagging" msgstr "Tag della comunità" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "Permetti l'aggiunta di tag su post già esistenti" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "Categorie dei post" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "Abilita le categorie per i tuoi post" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Emoji Reactions" -msgstr "Reazioni emoji" +msgstr "" + +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "" #: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Permetti le reazioni emoji ai post" - -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Cartelle salvate" - -#: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "Abilita la raccolta dei tuoi articoli in cartelle" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "Non mi piace" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "Post con stella" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Ability to mark special posts with a star indicator" msgstr "Mostra la stella per segnare i post preferiti" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Tag Cloud" msgstr "Nuvola di tag" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Provide a personal tag cloud on your channel page" msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Contenuti incorporati" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Disabilita la creazione di contenuti incorporati" + +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "Chi può vederlo?" + +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "Selezione personalizzata" + +#: ../../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/acl_selectors.php:274 +msgid "Show" +msgstr "Mostra" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Non mostrare" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Invio ad altre reti o a siti esterni" + +#: ../../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/auth.php:105 +msgid "Logged out." +msgstr "Uscita effettuata." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Autenticazione fallita" + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Compleanno" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Età:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-GG oppure MM-GG" + +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "mai" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "meno di un secondo fa" + +#: ../../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/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "anno" +msgstr[1] "anni" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mese" +msgstr[1] "mesi" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "settimana" +msgstr[1] "settimane" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "giorno" +msgstr[1] "giorni" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "ora" +msgstr[1] "ore" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minuti" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "secondo" +msgstr[1] "secondi" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Compleanno di %1$s" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Buon compleanno %1$s" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -8805,583 +9116,21 @@ msgstr "Crea un gruppo di canali" msgid "Channels not in any privacy group" msgstr "Canali che non sono in nessun gruppo" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "aggiungi" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Inizio:" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Fine:" - -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Questo evento è stato aggiunto al tuo calendario" - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Non specificato" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Necessita di un intervento" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Completato" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "In corso" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Annullato" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Email non valida" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Il dominio della tua email attualmente non è permesso su questo sito" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "È necessario un invito." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrazione di %s confermata" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "la password di registrazione" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Account approvato." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" - -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione supera i limiti del tuo abbonamento." - -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Il canale è bloccato per questo sito." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Manca l'indirizzo del canale." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "La risposta dal canale non è completa." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Il canale è stato rimosso e non esiste più." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocollo disabilitato." - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Elemento non trovato." - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "Nessun file di origine." - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "Il file da sostituire non è stato trovato" - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "Il file da aggiornare non è stato trovato" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" - -#: ../../include/attach.php:688 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." - -#: ../../include/attach.php:846 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." - -#: ../../include/attach.php:859 -msgid "Stored file could not be verified. Upload failed." -msgstr "Il file non può essere verificato. Caricamento fallito." - -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "Percorso non disponibile." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Il percorso del file è vuoto" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "il file o il percorso del file è duplicato" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Percorso del file non trovato." - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir fallito." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "scrittura su database fallita." - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "La posizione è vuota" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Immagine" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contenuto cifrato" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installa l'elemento %s:" - -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s ha scritto %2$s %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Ad altri questo testo potrebbe apparire in modo differente" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Sconosciuto)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visibile a chiunque su internet." - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visibile solo a te." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visibile a tutti su questa rete." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visibile a chiunque sia autenticato." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visibile a tutti su %s." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Visibile a tutti coloro che ti seguono." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visibile ai contatti approvati." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visibile ad alcuni contatti scelti." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Gruppo di canali vuoto." - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppo di canali: %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Contatto non trovato." - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "foto del profilo" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Contenuti incorporati" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Disabilita la creazione di contenuti incorporati" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nuova app" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Suggerimenti" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Altro..." - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Aggiungi un contatto" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Indirizzo del canale" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Per esempio: bob@example.com, https://example.com/barbara" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Note" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Rimuovi termine" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tutto" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archivi" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Aggiorna" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Il tuo account" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Impostazioni del canale" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Funzionalità opzionali" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Componenti aggiuntivi" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Aspetto" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestione repliche" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Esporta il canale" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "App connesse" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Canale premium - impostazioni" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menu messaggi privati" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vista combinata" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversazioni" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Ricevuti" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Inviati" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Nessun messaggio." - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Gestione eventi" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Esporta calendario" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importa calendario" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Riepilogo" - -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Partecipanti" - -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Elenco wiki" - -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Pagine wiki" - -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Chat nei segnalibri" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Chat suggerite" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/immagine" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Clicca per mostrare tutto" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Valutazione" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Valutami" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Vedi le valutazioni ricevute" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Forum" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Attività" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Guida" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Informazioni sul sito/progetto" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Per gli utenti" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Per gli amministratori" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Per sviluppatori" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Richieste in attesa di conferma" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Coda di attesa" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Aggiornamenti al DB" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Plugin" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "e" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "profilo pubblico" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Guarda %2$s di %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/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Allegati:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notifica evento $Projectname:" - #: ../../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,223 +9360,278 @@ msgctxt "calendar" msgid "All day" msgstr "Tutto il giorno" -#: ../../include/contact_widgets.php:11 +#: ../../include/network.php:657 +msgid "view full size" +msgstr "guarda nelle dimensioni reali" + +#: ../../include/network.php:1885 +msgid "No Subject" +msgstr "Nessun titolo" + +#: ../../include/network.php:2146 ../../include/network.php:2147 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2148 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2149 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:2150 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2152 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2153 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2154 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:2155 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2156 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2157 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/photos.php:110 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'immagine supera il limite massimo di %lu bytes" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Ricerca canali" +#: ../../include/photos.php:117 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Scrivi un nome o un interesse" +#: ../../include/photos.php:255 +msgid "Photo storage failed." +msgstr "Impossibile salvare la foto." -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Aggiungi" +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "una nuova foto" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Per esempio: Mario Rossi, Pesca" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Profilo casuale" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Invita amici" - -#: ../../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 +#: ../../include/photos.php:299 #, 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" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha pubblicato %2$s su %3$s" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostra tutto" +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Carica nuove foto" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Visibilità negli elenchi pubblici" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modalità SafeSearch" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo forum pubblici" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo in questo sito" - -#: ../../include/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/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "Chi può vederlo?" - -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Selezione personalizzata" - -#: ../../include/acl_selectors.php:271 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"." - -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Mostra" - -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Non mostrare" - -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Invio ad altre reti o a siti esterni" - -#: ../../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/datetime.php:135 -msgid "Birthday" -msgstr "Compleanno" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Età:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG oppure MM-GG" - -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: ../../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/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "anno" -msgstr[1] "anni" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mese" -msgstr[1] "mesi" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "settimana" -msgstr[1] "settimane" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "giorno" -msgstr[1] "giorni" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "ora" -msgstr[1] "ore" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minuti" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "secondo" -msgstr[1] "secondi" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Compleanno di %1$s" - -#: ../../include/datetime.php:563 -#, 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 +#: ../../include/zot.php:699 msgid "Invalid data packet" msgstr "Dati ricevuti non validi" -#: ../../include/zot.php:713 +#: ../../include/zot.php:715 msgid "Unable to verify channel signature" msgstr "Impossibile verificare la firma elettronica del canale" -#: ../../include/zot.php:2326 +#: ../../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:3703 +#: ../../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/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Può vedere il profilo predefinito del canale" + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Può vedere i miei contatti" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Può vedere il mio archivio file e foto" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Può vedere le mie pagine web" + +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "È tra i canali che seguo" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Può scrivere sulla bacheca del mio canale" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Può commentare o aggiungere \"mi piace\" ai miei post" + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Può inviarmi messaggi privati" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Può aggiungere \"mi piace\" a tutto il resto" + +#: ../../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/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/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Può aprire una chat con me (se disponibile)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Può modificare il mio archivio file e foto" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Può modificare le mie pagine web" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Può usare i miei post pubblici per creare canali derivati" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Può amministrare i contenuti del mio canale" + +#: ../../include/permissions.php:46 +msgid "" +"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/permissions.php:877 +msgid "Social Networking" +msgstr "Social network" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Social - Prevalentemente pubblico" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Social - Con restrizioni" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Social - Privato" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Forum di discussione" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Social - Prevalentemente pubblico" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - Con restrizioni" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - Privato" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Aggregatore di feed esterni" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Feed - Prevalentemente pubblico" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Feed - Con restrizioni" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Per finalità speciali" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Speciale - Pagina per fan" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Speciale - Repository di gruppo" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Personalizzazione per esperti" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "e" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "profilo pubblico" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Guarda %2$s di %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/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)" msgstr "Focus (predefinito)" @@ -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,11 +382,234 @@ 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["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."; +App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; +App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; +App::$strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita."; +App::$strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", +); +App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +App::$strings["Send invitations"] = "Spedisci inviti"; +App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +App::$strings["Your message:"] = "Il tuo messaggio:"; +App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; +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"; +App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; +App::$strings["Hub not found."] = "Hub non trovato."; +App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; +App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; +App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; +App::$strings["Messages"] = "Messaggi"; +App::$strings["Message recalled."] = "Messaggio revocato."; +App::$strings["Conversation removed."] = "Conversazione rimossa."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; +App::$strings["Send Private Message"] = "Invia un messaggio privato"; +App::$strings["To:"] = "A:"; +App::$strings["Subject:"] = "Oggetto:"; +App::$strings["Attach file"] = "Allega file"; +App::$strings["Send"] = "Invia"; +App::$strings["Set expiration date"] = "Data di scadenza"; +App::$strings["Delete message"] = "Elimina il messaggio"; +App::$strings["Delivery report"] = "Rapporto di trasmissione"; +App::$strings["Recall message"] = "Revoca il messaggio"; +App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; +App::$strings["Delete Conversation"] = "Elimina la conversazione"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; +App::$strings["Send Reply"] = "Invia la risposta"; +App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; +App::$strings["Create a new channel"] = "Crea un nuovo canale"; +App::$strings["Channel Manager"] = "Gestione canali"; +App::$strings["Current Channel"] = "Canale attuale"; +App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; +App::$strings["Default Channel"] = "Canale predefinito"; +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["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)"; +App::$strings["Password reset requested at %s"] = "È stato richiesto di reimpostare password su %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata."; +App::$strings["Password Reset"] = "Reimposta la password"; +App::$strings["Your password has been reset as requested."] = "La password è stata reimpostata come richiesto."; +App::$strings["Your new password is"] = "La tua nuova password è"; +App::$strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; +App::$strings["click here to login"] = "clicca qui per accedere"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; +App::$strings["Your password has changed at %s"] = "La tua password su %s è cambiata"; +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"; +App::$strings["Search Results For:"] = "Cerca risultati con:"; +App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; +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["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ù."; +App::$strings["Menu Item Permissions"] = "Permessi del menu"; +App::$strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; +App::$strings["Link Name"] = "Nome link"; +App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; +App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; +App::$strings["Open link in new window"] = "Apri il link in una nuova finestra"; +App::$strings["Order in list"] = "Ordine dell'elenco"; +App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; +App::$strings["Submit and finish"] = "Salva e termina"; +App::$strings["Submit and continue"] = "Salva e continua"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Destinazione link"; +App::$strings["Edit menu"] = "Modifica il menù"; +App::$strings["Edit element"] = "Modifica l'elemento"; +App::$strings["Drop element"] = "Elimina l'elemento"; +App::$strings["New element"] = "Nuovo elemento"; +App::$strings["Edit this menu container"] = "Modifica il contenitore del menù"; +App::$strings["Add menu element"] = "Aggiungi un elemento al menù"; +App::$strings["Delete this menu item"] = "Elimina questo elemento del menù"; +App::$strings["Edit this menu item"] = "Modifica questo elemento del menù"; +App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; +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 effettua la rimozione dall'Archivio file "; +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."; @@ -603,7 +665,7 @@ App::$strings["__ctx:noun__ Dislike"] = array( 0 => "Non mi piace", 1 => "Non mi piace", ); -App::$strings["Photo Tools"] = "Gestione foto"; +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"; @@ -611,164 +673,122 @@ 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["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."; -App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; -App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; -App::$strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita."; -App::$strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -App::$strings["Send invitations"] = "Spedisci inviti"; -App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -App::$strings["Your message:"] = "Il tuo messaggio:"; -App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; -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["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["Primary"] = "Primario"; -App::$strings["Drop"] = "Elimina"; -App::$strings["Sync Now"] = "Sincronizza ora"; -App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; -App::$strings["Hub not found."] = "Hub non trovato."; -App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; -App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; -App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; -App::$strings["Messages"] = "Messaggi"; -App::$strings["Message recalled."] = "Messaggio revocato."; -App::$strings["Conversation removed."] = "Conversazione rimossa."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; -App::$strings["Send Private Message"] = "Invia un messaggio privato"; -App::$strings["To:"] = "A:"; -App::$strings["Subject:"] = "Oggetto:"; -App::$strings["Attach file"] = "Allega file"; -App::$strings["Send"] = "Invia"; -App::$strings["Set expiration date"] = "Data di scadenza"; -App::$strings["Delete message"] = "Elimina il messaggio"; -App::$strings["Delivery report"] = "Rapporto di trasmissione"; -App::$strings["Recall message"] = "Revoca il messaggio"; -App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; -App::$strings["Delete Conversation"] = "Elimina la conversazione"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; -App::$strings["Send Reply"] = "Invia la risposta"; -App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; -App::$strings["Create a new channel"] = "Crea un nuovo canale"; -App::$strings["Channel Manager"] = "Gestione canali"; -App::$strings["Current Channel"] = "Canale attuale"; -App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; -App::$strings["Default Channel"] = "Canale predefinito"; -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)"; -App::$strings["Password reset requested at %s"] = "È stato richiesto di reimpostare password su %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata."; -App::$strings["Password Reset"] = "Reimposta la password"; -App::$strings["Your password has been reset as requested."] = "La password è stata reimpostata come richiesto."; -App::$strings["Your new password is"] = "La tua nuova password è"; -App::$strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; -App::$strings["click here to login"] = "clicca qui per accedere"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; -App::$strings["Your password has changed at %s"] = "La tua password su %s è cambiata"; -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["__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["No such group"] = "Impossibile trovare il gruppo di canali"; -App::$strings["No such channel"] = "Canale sconosciuto"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Cerca risultati con:"; -App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; -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ù."; -App::$strings["Menu Item Permissions"] = "Permessi del menu"; -App::$strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -App::$strings["Link Name"] = "Nome link"; -App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; -App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; -App::$strings["Open link in new window"] = "Apri il link in una nuova finestra"; -App::$strings["Order in list"] = "Ordine dell'elenco"; -App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; -App::$strings["Submit and finish"] = "Salva e termina"; -App::$strings["Submit and continue"] = "Salva e continua"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Destinazione link"; -App::$strings["Edit menu"] = "Modifica il menù"; -App::$strings["Edit element"] = "Modifica l'elemento"; -App::$strings["Drop element"] = "Elimina l'elemento"; -App::$strings["New element"] = "Nuovo elemento"; -App::$strings["Edit this menu container"] = "Modifica il contenitore del menù"; -App::$strings["Add menu element"] = "Aggiungi un elemento al menù"; -App::$strings["Delete this menu item"] = "Elimina questo elemento del menù"; -App::$strings["Edit this menu item"] = "Modifica questo elemento del menù"; -App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; -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["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,21 +1631,385 @@ 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["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"; @@ -1965,7 +2021,6 @@ 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,7 +2054,6 @@ 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"; @@ -2015,9 +2069,8 @@ 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["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"; @@ -2025,149 +2078,63 @@ 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["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["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["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["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,6 +262,229 @@ msgstr "Forespurt profil er ikke tilgjengelig." msgid "Some blurb about what to do when you're new here" msgstr "En standardtekst om hva du bør gjøre som ny her" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Byggeklossens navn" + +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Byggeklosser" + +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Byggeklossens tittel" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 +#: ../../include/page_widgets.php:44 +msgid "Created" +msgstr "Laget" + +#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 +#: ../../include/page_widgets.php:45 +msgid "Edited" +msgstr "Endret" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 +#: ../../include/conversation.php:1208 +msgid "Share" +msgstr "Del" + +#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 +#: ../../include/page_widgets.php:39 +msgid "View" +msgstr "Vis" + +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Kanalen ble ikke funnet." + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Tillatelse avvist." + +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l, F j" + +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Lenke til kilde" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Endre hendelse" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Lag hendelse" + +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 +#: ../../Zotlabs/Module/Photos.php:949 +msgid "Previous" +msgstr "Forrige" + +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 +msgid "Next" +msgstr "Neste" + +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Eksport" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importer" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Import.php:550 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 +#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 +#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 +#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 +#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 +#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 +#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:842 +#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 +#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 +#: ../../include/widgets.php:769 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Send" + +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Idag" + +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Du må være innloegget for å se denne siden." + +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Rommet ble ikke funnet" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Forlat rom" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Jeg er borte akkurat nå" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Jeg er online" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Bokmerk dette rommet" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 +#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 +msgid "Please enter a link URL:" +msgstr "Vennligst skriv inn en lenke URL:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 +#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 +#: ../../include/conversation.php:1256 +msgid "Encrypt text" +msgstr "Krypter tekst" + +#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 +msgid "Insert web link" +msgstr "Sett inn web-lenke" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nytt chatrom" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Chat utgår (antall minutter)" + +#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 +#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:283 +msgid "Permissions" +msgstr "Tillatelser" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$s sine chatrom" + +#: ../../Zotlabs/Module/Chat.php:251 +msgid "No chatrooms available" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Create New" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Expiration" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:256 +msgid "min" +msgstr "" + #: ../../Zotlabs/Module/Chatsvc.php:117 msgid "Away" msgstr "Borte" @@ -414,6 +493,65 @@ msgstr "Borte" msgid "Online" msgstr "Online" +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Ugyldig element." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Bokmerke lagt til" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mine bokmerker" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Mine forbindelsers bokmerker" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Fortsett" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Premiumkanal-oppsett" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Slå på restriksjoner for forbindelse med premiumkanal" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potensielle forbindelser vil da se følgende tekst før de går videre:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Begrenset kanal eller premiumkanal" + #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "Fikk ikke tilgang til kontaktinformasjonen." @@ -422,350 +560,317 @@ msgstr "Fikk ikke tilgang til kontaktinformasjonen." msgid "Could not locate selected profile." msgstr "Fant ikke valgt profil." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "Forbindelsen er oppdatert." -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../Zotlabs/Module/Connedit.php:229 msgid "Failed to update connection record." msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen." -#: ../../Zotlabs/Module/Connedit.php:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "er nå forbundet til" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "No" msgstr "Nei" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "Yes" msgstr "Ja" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../Zotlabs/Module/Connedit.php:411 msgid "Could not access address book record." msgstr "Fikk ikke tilgang til informasjonen i adresseboken." -#: ../../Zotlabs/Module/Connedit.php:455 +#: ../../Zotlabs/Module/Connedit.php:425 msgid "Refresh failed - channel is currently unavailable." msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig." -#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 msgid "Unable to set address book parameters." msgstr "Ikke i stand til å angi parametre for adresseboken." -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "Forbindelsen har blitt fjernet." -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 msgid "View Profile" msgstr "Vis profil" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:522 #, php-format msgid "View %s's profile" msgstr "Vis %s sin profil" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:526 msgid "Refresh Permissions" msgstr "Oppfrisk tillatelser" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:529 msgid "Fetch updated permissions" msgstr "Hent oppdaterte tillatelser" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Recent Activity" msgstr "Nylig aktivitet" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:536 msgid "View recent posts and comments" msgstr "Vis nylige innlegg og kommentarer" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Ikke blokker lenger" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Blokker" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../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:574 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "This connection is blocked!" msgstr "Denne forbindelsen er blokkert!" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 msgid "Unignore" msgstr "Ikke ignorer lenger" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignorer" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../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:582 +#: ../../Zotlabs/Module/Connedit.php:552 msgid "This connection is ignored!" msgstr "Denne forbindelsen er ignorert!" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Unarchive" msgstr "Ikke arkiver lenger" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Archive" msgstr "Arkiver" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../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:590 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "This connection is archived!" msgstr "Denne forbindelsen er arkivert!" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Unhide" msgstr "Ikke skjul lenger" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../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,121 +886,17 @@ 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/Id.php:13 -msgid "First Name" -msgstr "Fornavn" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Etternavn" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Kallenavn" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Fullt navn" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 -msgid "Email" -msgstr "E-post" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Profilbilde" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profilbilde 16px" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profilbilde 32px" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profilbilde 48px" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profilbilde 64px" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profilbilde 80px" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profilbilde 128px" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Tidssone" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Hjemmeside URL" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Språk" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Fødselsår" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Fødselsmåne" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Fødselsdag" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Fødselsdato" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Kjønn" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Mannlig" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Kvinnelig" - -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanal lagt til." - #: ../../Zotlabs/Module/Directory.php:243 #, php-format msgid "%d rating" @@ -915,12 +916,12 @@ msgstr "Status:" 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,322 +1017,38 @@ 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/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Slå på restriksjoner for forbindelse med premiumkanal" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potensielle forbindelser vil da se følgende tekst før de går videre:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Begrenset kanal eller premiumkanal" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Kalenderhendelsene er importert." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Ingen kalenderhendelser funnet." - -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Hendelsen kan ikke slutte før den starter." - -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Klarer ikke å lage forhåndsvisning." - -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Hendelsestittel og starttidspunkt er påkrevd." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Hendelsen ble ikke funnet." - -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1924 ../../include/event.php:951 -msgid "event" -msgstr "hendelse" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Endre tittel på hendelse" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Tittel på hendelse" - -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Påkrevd" - -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparert liste)" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Endre kategori" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Kategori" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Endre startdato og tidspunkt" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Startdato og tidspunkt" - -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "Sluttdato og tidspunkt er ikke kjent eller ikke relevant" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Edit finish date and time" -msgstr "Endre sluttdato og tidspunkt" - -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Sluttdato og tidspunkt" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "Juster i forhold til tilskuerens tidssone" - -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager." - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Endre beskrivelse" - -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Beskrivelse" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Location" -msgstr "Endre plassering" - -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Plassering" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Del denne hendelsen" - -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 -#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 -msgid "Preview" -msgstr "Forhåndsvisning" - -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Tillatelser - innstillinger" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Avanserte alternativer" - -#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l, F j" - -#: ../../Zotlabs/Module/Events.php:609 -msgid "Edit event" -msgstr "Endre hendelse" - -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Slett hendelse" - -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Lenke til kilde" - -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "kalender" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Endre hendelse" - -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Lag hendelse" - -#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:947 -msgid "Previous" -msgstr "Forrige" - -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Neste" - -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Eksport" - -#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Vis" - -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Idag" - -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "Hendelse slettet" - -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "Mislyktes med å slette hendelse" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Bokmerke lagt til" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mine bokmerker" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Mine forbindelsers bokmerker" - -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 #: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:81 msgid "Item not found" msgstr "Elementet ble ikke funnet." -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Elementet kan ikke endres" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Tittel (valgfri)" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Endre innlegg" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Endre byggekloss" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Bilder" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Ingen kanal." -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 -#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 -#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 -#: ../../include/conversation.php:1274 -msgid "Cancel" -msgstr "Avbryt" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Felles forbindelser" -#: ../../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/Common.php:48 +msgid "No connections in common." +msgstr "Ingen forbindelser felles." #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1359,7 +1076,7 @@ msgstr "Arkivert" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 +#: ../../include/conversation.php:1535 msgid "New" msgstr "Nye" @@ -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,69 +1262,200 @@ 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/Events.php:254 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 +#: ../../include/text.php:1943 ../../include/conversation.php:123 +msgid "event" +msgstr "hendelse" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Endre tittel på hendelse" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Tittel på hendelse" + +#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Påkrevd" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Kategorier (kommaseparert liste)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Endre kategori" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Kategori" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Endre startdato og tidspunkt" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Startdato og tidspunkt" + +#: ../../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/Events.php:458 +msgid "Edit finish date and time" +msgstr "Endre sluttdato og tidspunkt" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Sluttdato og tidspunkt" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "Juster i forhold til tilskuerens tidssone" + +#: ../../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/Events.php:462 +msgid "Edit Description" +msgstr "Endre beskrivelse" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Beskrivelse" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "Endre plassering" + +#: ../../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/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "Del denne hendelsen" + +#: ../../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/Events.php:471 ../../include/conversation.php:1232 +msgid "Permission settings" +msgstr "Tillatelser - innstillinger" + +#: ../../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" @@ -1617,184 +1465,112 @@ msgstr "Dette nettstedet er ikke en katalogtjener" msgid "This directory server requires an access token" msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)" -#: ../../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/Filer.php:52 +msgid "Save to Folder:" +msgstr "Lagre til mappe:" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Rommet ble ikke funnet" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- velg -" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Forlat rom" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Lagre" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Slett rom" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Jeg er borte akkurat nå" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Jeg er online" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Bokmerk dette rommet" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php: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/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/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/Chat.php:218 -msgid "Feature disabled." -msgstr "Funksjonen er avskrudd." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nytt chatrom" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Navn på chatrom" - -#: ../../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: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/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 "Ingen tilgjengelige chatrom" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Lag ny" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Utløper" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" - -#: ../../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 -msgid "channel sync processed" -msgstr "Kanalsynkronisering er behandlet" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "lagt i kø" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "lagt inn" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "akseptert for levering" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "oppdatert" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "oppdatering ignorert" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "tillatelse avvist" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "mottaker ble ikke funnet" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "melding tilbakekalt" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "duplikat av melding mottatt" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "melding mottatt" - -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:64 #, 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:78 +msgid "channel sync processed" +msgstr "Kanalsynkronisering er behandlet" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "lagt i kø" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "lagt inn" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "akseptert for levering" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "oppdatert" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "oppdatering ignorert" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "tillatelse avvist" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "mottaker ble ikke funnet" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "melding tilbakekalt" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "duplikat av melding mottatt" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "melding mottatt" + +#: ../../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,57 +1624,31 @@ 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/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Plassering (URL) til app" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "Bildeikon URL" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x80 pixler - valgfritt" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Kategorier (valgfri, kommaseparert liste)" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versjons-ID" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Pris på app" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Plassering (URL) for å kjøpe app" +#: ../../Zotlabs/Module/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/Help.php:26 msgid "Documentation Search" @@ -1910,8 +1660,8 @@ 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,124 +1669,335 @@ msgstr "Hjelp" msgid "$Projectname Documentation" msgstr "$Projectname dokumentasjon" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "Tillatelse avvist." + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "Filen ble ikke funnet." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "Endre filtillatelser" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "Angi/endre tillatelser" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "Inkluder alle filer og undermapper" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "Gå tilbake til filoversikten" + +#: ../../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: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:163 +msgid "Share this file" +msgstr "Del denne filen" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "Vis URLen til denne filen" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "Varsle dine kontakter om denne filen" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Apper" + #: ../../Zotlabs/Module/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/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Din tjenesteplan tillater bare %d kanaler." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Endre beskrivelsen av systemsiden" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Ingenting å importere." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layouten ble ikke funnet." +#: ../../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/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulnavn:" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Importert fil er tom." -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Layout-hjelp" +#: ../../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/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Del innhold fra Firefox til $Projectname" +#: ../../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/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Skru på Firefox $Projectname tilbyderen" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Ingen kanal. Import mislyktes." -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "nettverk" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import ferdig." -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../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/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Tillatelse avvist." +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Importer kanal" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "Filen ble ikke funnet." +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil." -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Endre filtillatelser" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Fil som skal lastes opp" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" -msgstr "Angi/endre tillatelser" +#: ../../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/Filestorage.php:156 -msgid "Include all files and sub folders" -msgstr "Inkluder alle filer og undermapper" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Din gamle identitetsadresse (xyz@example.com)" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Return to file list" -msgstr "Gå tilbake til filoversikten" +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Din gamle innloggings e-postadresse" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopier og lim inn denne koden for å legge til filen i et innlegg" +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "Ditt gamle innloggingspassord" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopier og lim inn denne URL-en for å lenke til filen fra en webside" +#: ../../Zotlabs/Module/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/Filestorage.php:162 -msgid "Share this file" -msgstr "Del denne filen" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Gjør dette nettstedet til min primære plassering" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" -msgstr "Vis URLen til denne filen" +#: ../../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/Filestorage.php:164 -msgid "Notify your contacts about this file" -msgstr "Varsle dine kontakter om denne filen" +#: ../../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/Layouts.php:183 ../../include/text.php:2240 +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "Ikke i stand til å finne opprinnelig innlegg." + +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "Tomt innlegg forkastet." + +#: ../../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/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/Item.php:1248 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du har nådd din grense på %1$.0f startinnlegg." + +#: ../../Zotlabs/Module/Item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du har nådd din grense på %1$.0f websider." + +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 msgid "Layouts" msgstr "Layout" -#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Layouts.php:183 msgid "Comanche page description language help" msgstr "Hjelp med Comanche sidebeskrivelsesspråk" -#: ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Layouts.php:187 msgid "Layout Description" msgstr "Layout-beskrivelse" -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Laget" - -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Endret" - -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "Del" - -#: ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Layouts.php:192 msgid "Download PDL file" msgstr "Last ned PDL-fil" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Velkommen til %s" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Fornavn" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Etternavn" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Kallenavn" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Fullt navn" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2151 ../../boot.php:1705 +msgid "Email" +msgstr "E-post" + +#: ../../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/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:234 +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/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "nettside" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "byggekloss" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "layout" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "meny" + +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s element installert" + +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Installasjon av %s-element mislyktes" + #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Liker/Liker ikke" @@ -2072,782 +2033,74 @@ msgstr "Kanalen er utilgjengelig." msgid "Previous action reversed." msgstr "Forrige handling er omgjort." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 +#: ../../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/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "status" -#: ../../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 "%1$s liker %2$s sin %3$s" -#: ../../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 "%1$s liker ikke %2$s sin %3$s" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../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/Like.php:425 +#: ../../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/Like.php:427 +#: ../../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/Like.php:429 +#: ../../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/Like.php:431 +#: ../../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/Like.php:433 +#: ../../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/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "Handling ferdig." -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "Tusen takk." -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Profilen ble ikke funnet." - -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profilen er slettet." - -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profil-" - -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Ny profil opprettet." - -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Profilen er utilgjengelig for klonen." - -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Profilen er utilgjengelig for eksport." - -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Profilnavn er påkrevd." - -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Sivilstand" - -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Romantisk partner" - -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Liker" - -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Liker ikke" - -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Arbeid/sysselsetting" - -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religion" - -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Politiske synspunkter" - -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Seksuelle preferanser" - -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Hjemmeside" - -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interesser" - -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" - -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profilen er oppdatert." - -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Skjul listen med forbindelser fra besøkende som ser denne profilen" - -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Endre profildetaljer" - -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Vis denne profilen" - -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 -msgid "Edit visibility" -msgstr "Endre synlighet" - -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Profilverktøy" - -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Endre forsidebilde" - -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 -msgid "Change profile photo" -msgstr "Endre profilbilde" - -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Lag en ny profil ved å bruke disse innstillingene" - -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Klon denne profilen" - -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Slett denne profilen" - -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Legg til profilting" - -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Personlig" - -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Forhold" - -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Forskjellig" - -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importer profil fra fil" - -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Eksporter profil til fil" - -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Ditt kjønn" - -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Sivilstand" - -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Seksuelle preferanser" - -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Profilnavn" - -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Dette er din standardprofil." - -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Ditt fulle navn" - -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Tittel/beskrivelse" - -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Gateadresse" - -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Sted/by" - -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Region/fylke" - -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "Postnummer/ZIP-kode" - -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "Land" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Hvem (hvis det er aktuelt)" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com" - -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "Siden (dato)" - -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Fortell oss om deg selv" - -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Hjemby" - -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Politiske synspunkter" - -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Religiøse synspunkter" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Nøkkelord bruk i katalogoppføringer" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Eksempel: fisking fotografering programvare" - -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Musikkinteresser" - -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Bøker, litteratur" - -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "TV/fjernsyn" - -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film/dans/kultur/underholdning" - -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobbier/Interesser" - -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Kjærlighet/romantikk" - -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Skole/utdanning" - -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Kontaktinformasjon og sosiale nettverk" - -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Mine andre kanaler" - -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 -msgid "Profile Image" -msgstr "Profilbilde" - -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 -msgid "Edit Profiles" -msgstr "Endre profiler" - -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Din tjenesteplan tillater bare %d kanaler." - -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Ingenting å importere." - -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Ikke i stand til å laste ned data fra gammel tjener" - -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Importert fil er tom." - -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Advarsel: databaseversjoner avviker med %1$d oppdateringer." - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Klonet kanal ble ikke funnet. Import mislyktes." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Ingen kanal. Import mislyktes." - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import ferdig." - -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Du må være innlogget for å bruke denne funksjonen." - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importer kanal" - -#: ../../Zotlabs/Module/Import.php:548 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil." - -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Fil som skal lastes opp" - -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en" - -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Din gamle identitetsadresse (xyz@example.com)" - -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Din gamle innloggings e-postadresse" - -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Ditt gamle innloggingspassord" - -#: ../../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/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Gjør dette nettstedet til min primære plassering" - -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importer eksisterende innlegg om mulig (eksperimentelt - begrenset av tilgjengelig minne)" - -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Denne prosessen kan ta flere minutter å fullføre. Vennligst send inn dette skjemaet bare en gang og la siden være åpen inntil den er ferdig." - -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Velkommen til %s" - -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Ikke i stand til å finne opprinnelig innlegg." - -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Tomt innlegg forkastet." - -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "Kjørbar innholdstype er ikke tillat for denne kanalen." - -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Duplikat av innlegg forhindret." - -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Systemfeil. Innlegg ble ikke lagret." - -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "Ikke i stand til å få tak i informasjon om innlegg fra databasen." - -#: ../../Zotlabs/Module/Item.php: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/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Informasjon om sideeier kunne ikke hentes." - -#: ../../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/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Albumet ble ikke funnet." - -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Slett album" - -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Flere lagringsmapper finnes med dette albumnavnet, men i ulike mapper. Vennligst fjern den ønskede mappen eller mappene med filbehandleren." - -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Slett bilde" - -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Ingen bilder valgt" - -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Tilgang til dette elementet er begrenset." - -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt." - -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB lagringsplass til bilder er brukt." - -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Last opp bilder" - -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Skriv et albumnavn" - -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "eller velg et eksisterende album (dobbeltklikk)" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Lag et statusinnlegg for denne opplastingen" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Bildetekst (valgfritt):" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Beskrivelse (valgfritt):" - -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "Albumnavnet kunne ikke dekodes" - -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Kontaktbilder" - -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Vis nyeste først" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Vis eldste først" - -#: ../../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/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Endre album" - -#: ../../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/Photos.php:870 -msgid "Photo not available" -msgstr "Bilde er utilgjengelig" - -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Bruk som profilbilde" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Bruk som forsidebilde" - -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Privat bilde" - -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Vis i full størrelse" - -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Fjern" - -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Endre bilde" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Roter med klokka (mot høyre)" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Roter mot klokka (venstre)" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Skriv et nytt albumnavn" - -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "eller velg et eksisterende album (dobbeltklikk)" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Overskrift" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Legg til merkelapp" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" - -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Flag som voksent i albumvisning" - -#: ../../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/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/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Vennligst vent" - -#: ../../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/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Kommentar" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Liker" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Liker ikke" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "Enig" - -#: ../../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/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Deltar ikke" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Deltar kanskje" - -#: ../../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/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/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/Photos.php:1233 -msgid "Photo Tools" -msgstr "Fotoverktøy" - -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "I dette bildet:" - -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Kart" - -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Liker" - -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Liker ikke" - -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Lukk" - -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Vis album" - -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Nye bilder" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Ekstern personverninformasjon er ikke tilgjengelig." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Synlig for:" - -#: ../../Zotlabs/Module/Import_items.php:104 +#: ../../Zotlabs/Module/Import_items.php:102 msgid "Import completed" msgstr "Import ferdig" -#: ../../Zotlabs/Module/Import_items.php:119 +#: ../../Zotlabs/Module/Import_items.php:117 msgid "Import Items" msgstr "Importer elementer" -#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Import_items.php:118 msgid "" "Use this form to import existing posts and content from an export file." msgstr "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil." @@ -2893,7 +2146,7 @@ msgstr "Send invitasjoner" msgid "Enter email addresses, one per line:" msgstr "Skriv e-postadresser, en per linje:" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 msgid "Your message:" msgstr "Din melding:" @@ -2922,6 +2175,14 @@ msgstr "eller besøke" msgid "3. Click [Connect]" msgstr "3. Klikk [Forbindelse]" +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Ekstern personverninformasjon er ikke tilgjengelig." + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Synlig for:" + #: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 msgid "Location not found." msgstr "Plassering er ikke funnet." @@ -2948,9 +2209,14 @@ msgstr "Ingen plasseringer ble funnet." msgid "Manage Channel Locations" msgstr "Håndter kanalplasseringer" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Adresse" + #: ../../Zotlabs/Module/Locs.php:119 msgid "Primary" -msgstr "Hoved" +msgstr "" #: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 msgid "Drop" @@ -2958,7 +2224,7 @@ msgstr "Slett" #: ../../Zotlabs/Module/Locs.php:122 msgid "Sync Now" -msgstr "Synkroniser nå" +msgstr "" #: ../../Zotlabs/Module/Locs.php:123 msgid "Please wait several minutes between consecutive operations." @@ -2990,87 +2256,87 @@ msgstr "Ikke i stand til å kommunisere med forespurt kanal." msgid "Cannot verify requested channel." msgstr "Kan ikke bekrefte forespurt kanal." -#: ../../Zotlabs/Module/Mail.php:70 +#: ../../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/Mail.php:135 +#: ../../Zotlabs/Module/Mail.php:143 msgid "Messages" msgstr "Meldinger" -#: ../../Zotlabs/Module/Mail.php:170 +#: ../../Zotlabs/Module/Mail.php:178 msgid "Message recalled." msgstr "Innlegg tilbakekalt." -#: ../../Zotlabs/Module/Mail.php:183 +#: ../../Zotlabs/Module/Mail.php:191 msgid "Conversation removed." msgstr "Samtale fjernet." -#: ../../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 "Utløper YYYY-MM-DD HH:MM" -#: ../../Zotlabs/Module/Mail.php:226 +#: ../../Zotlabs/Module/Mail.php:234 msgid "Requested channel is not in this network" msgstr "Forespurt kanal er ikke tilgjengelig i dette nettverket." -#: ../../Zotlabs/Module/Mail.php:234 +#: ../../Zotlabs/Module/Mail.php:242 msgid "Send Private Message" msgstr "Send privat melding" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 msgid "To:" msgstr "Til:" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 msgid "Subject:" msgstr "Emne:" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 msgid "Attach file" msgstr "Legg ved fil" -#: ../../Zotlabs/Module/Mail.php:245 +#: ../../Zotlabs/Module/Mail.php:253 msgid "Send" msgstr "Send" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 msgid "Set expiration date" msgstr "Angi utløpsdato" -#: ../../Zotlabs/Module/Mail.php:332 +#: ../../Zotlabs/Module/Mail.php:340 msgid "Delete message" msgstr "Slett melding" -#: ../../Zotlabs/Module/Mail.php:333 +#: ../../Zotlabs/Module/Mail.php:341 msgid "Delivery report" msgstr "Leveringsrapport" -#: ../../Zotlabs/Module/Mail.php:334 +#: ../../Zotlabs/Module/Mail.php:342 msgid "Recall message" msgstr "Tilbakekall innlegg" -#: ../../Zotlabs/Module/Mail.php:336 +#: ../../Zotlabs/Module/Mail.php:344 msgid "Message has been recalled." msgstr "Innlegget har blitt tilbakekalt." -#: ../../Zotlabs/Module/Mail.php:353 +#: ../../Zotlabs/Module/Mail.php:361 msgid "Delete Conversation" msgstr "Slett samtale" -#: ../../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 "Ingen sikret kommunikasjon tilgjengelig. Du kan muligens greie å svare via senderens profilside." -#: ../../Zotlabs/Module/Mail.php:359 +#: ../../Zotlabs/Module/Mail.php:367 msgid "Send Reply" msgstr "Send svar" -#: ../../Zotlabs/Module/Mail.php:364 +#: ../../Zotlabs/Module/Mail.php:372 #, php-format msgid "Your message for %s (%s):" msgstr "Din melding til %s (%s):" @@ -3085,8 +2351,8 @@ msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler." msgid "Create a new channel" msgstr "Lag en ny kanal" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 msgid "Channel Manager" msgstr "Kanalstyring" @@ -3118,7 +2384,80 @@ msgstr "%d nye introduksjoner" #: ../../Zotlabs/Module/Manage.php:175 msgid "Delegated Channel" -msgstr "Delegert kanal" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Ingen gyldig konto funnet." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Nettstedsmedlem (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Forespurt om å tilbakestille passord hos %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Tilbakestill passord" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Ditt passord har blitt tilbakestilt som forespurt." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Ditt nye passord er" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Lagre eller kopier ditt nye passord, og deretter kan du" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "klikke her for å logge inn" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging." + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Ditt passord er endret hos %s" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Glemt passord ditt?" + +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner." + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-postadresse" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Tilbakestill" #: ../../Zotlabs/Module/Menu.php:49 msgid "Unable to update menu." @@ -3156,7 +2495,7 @@ msgstr "Menyen kan brukes til å lagre lagrede bokmerker" msgid "Submit and proceed" msgstr "Send inn og fortsett" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 msgid "Menus" msgstr "Menyer" @@ -3217,86 +2556,13 @@ msgstr "Tillat bokmerker" msgid "Not found." msgstr "Ikke funnet." -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Ingen gyldig konto funnet." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Nettstedsmedlem (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Forespurt om å tilbakestille passord hos %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Tilbakestill passord" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Ditt passord har blitt tilbakestilt som forespurt." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Ditt nye passord er" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Lagre eller kopier ditt nye passord, og deretter kan du" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "klikke her for å logge inn" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Ditt passord er endret hos %s" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Glemt passord ditt?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-postadresse" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Tilbakestill" - #: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 #, php-format msgctxt "mood" msgid "%1$s is %2$s" msgstr "%1$s er %2$s" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 msgid "Mood" msgstr "Stemning" @@ -3304,44 +2570,6 @@ msgstr "Stemning" msgid "Set your current mood and tell your friends" msgstr "Angi ditt nåværende humør og fortell dine venner" -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Gruppen finnes ikke" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Ingen slik kanal" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Søkeresultat for:" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "Personverngruppen er tom" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Personverngruppe:" - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Ugyldig forbindelse." - -#: ../../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/Match.php:26 msgid "Profile Match" msgstr "Profiltreff" @@ -3358,17 +2586,43 @@ msgstr "er interessert i:" msgid "No matches" msgstr "Ingen treff" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Innlegg og kommentarer" +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Gruppen finnes ikke" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Bare innlegg" +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Ingen slik kanal" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "forum" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Søkeresultat for:" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Personverngruppen er tom" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Personverngruppe:" + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Ugyldig forbindelse." + +#: ../../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/Mitem.php:52 msgid "Unable to create element." @@ -3387,7 +2641,7 @@ msgid "Menu Item Permissions" msgstr "Menyelement Tillatelser" #: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 +#: ../../Zotlabs/Module/Settings.php:1068 msgid "(click to open/close)" msgstr "(klikk for å åpne/lukke)" @@ -3487,6 +2741,845 @@ msgstr "Endre menyelement" msgid "Link text" msgstr "Lenketekst" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Navn eller overskrift" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Velg et kort kallenavn" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Kanalrolle og personvern" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Velg en kanalrolle for ditt personvernbehov." + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Les mer om roller" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Lag kanal" + +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser." + +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "eller importer en eksisterende kanal fra et annet sted." + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ugyldig forespørselsidentifikator." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Forkast" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Merk alle systemvarsler som sett" + +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "Informasjon om sideeier kunne ikke hentes." + +#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Profilbilder" + +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Albumet ble ikke funnet." + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Slett album" + +#: ../../Zotlabs/Module/Photos.php:153 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Slett bilde" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Ingen bilder valgt" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "Tilgang til dette elementet er begrenset." + +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt." + +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB lagringsplass til bilder er brukt." + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Last opp bilder" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Skriv et albumnavn" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "eller velg et eksisterende album (dobbeltklikk)" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Lag et statusinnlegg for denne opplastingen" + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Bildetekst (valgfritt):" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Beskrivelse (valgfritt):" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "Albumnavnet kunne ikke dekodes" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Kontaktbilder" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Vis nyeste først" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Vis eldste først" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Vis foto" + +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Endre album" + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Tillatelse avvist. Tilgang til dette elementet kan være begrenset." + +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "Bilde er utilgjengelig" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Bruk som profilbilde" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Privat bilde" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Vis i full størrelse" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Fjern" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Endre bilde" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Roter med klokka (mot høyre)" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Roter mot klokka (venstre)" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Skriv et nytt albumnavn" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "eller velg et eksisterende album (dobbeltklikk)" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Overskrift" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Legg til merkelapp" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Flag som voksent i albumvisning" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Jeg liker dette (skru av og på)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Jeg liker ikke dette (skru av og på)" + +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Vennligst vent" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "Dette er deg" + +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Kommentar" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Liker" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "Liker ikke" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "Enig" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "Uenig" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Avstår" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Deltar" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "Deltar ikke" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Deltar kanskje" + +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1717 +msgid "View all" +msgstr "Vis alle" + +#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 +#: ../../include/channel.php:1158 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Liker" +msgstr[1] "Liker" + +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1744 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Liker ikke" +msgstr[1] "Liker ikke" + +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "I dette bildet:" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Kart" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "Liker" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "Liker ikke" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Lukk" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Vis album" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Nye bilder" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "sendte deg en privat melding" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "la til din kanal" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[idag]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "la ut en hendelse" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Ikke i stand til å finne hubben din." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Innlegg vellykket." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protokollfeil. Ingen ID ble returnert." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Innlogging mislyktes." + +#: ../../Zotlabs/Module/Page.php:133 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Konfigurasjonsbehandler" + +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig." + +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Layout er oppdatert." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Endre beskrivelsen av systemsiden" + +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Layouten ble ikke funnet." + +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Modulnavn:" + +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Layout-hjelp" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Prikk" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Dult noen" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Prikke/oppildne" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Dult, prikk eller gjør andre ting med noen" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Mottaker" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Velg hva du ønsker å gjøre med mottakeren" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Gjør dette innlegget privat" + +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Henting av URL gir følgende feil: %1$s" + +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." +msgstr "Profilen ble ikke funnet." + +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profilen er slettet." + +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profil-" + +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Ny profil opprettet." + +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Profilen er utilgjengelig for klonen." + +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Profilen er utilgjengelig for eksport." + +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Profilnavn er påkrevd." + +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Sivilstand" + +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Romantisk partner" + +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Liker" + +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Liker ikke" + +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Arbeid/sysselsetting" + +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religion" + +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Politiske synspunkter" + +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Seksuelle preferanser" + +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Hjemmeside" + +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interesser" + +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profilen er oppdatert." + +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Endre profildetaljer" + +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Vis denne profilen" + +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:959 +msgid "Edit visibility" +msgstr "Endre synlighet" + +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +msgid "Change profile photo" +msgstr "Endre profilbilde" + +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Lag en ny profil ved å bruke disse innstillingene" + +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Klon denne profilen" + +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Slett denne profilen" + +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Legg til profilting" + +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 +msgid "Personal" +msgstr "Personlig" + +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Forskjellig" + +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importer profil fra fil" + +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Eksporter profil til fil" + +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Dette er din standardprofil." + +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com" + +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Eksempel: fisking fotografering programvare" + +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Musikkinteresser" + +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Bøker, litteratur" + +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "TV/fjernsyn" + +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobbier/Interesser" + +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Mine andre kanaler" + +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +msgid "Profile Image" +msgstr "Profilbilde" + +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 +#: ../../include/channel.php:937 +msgid "Edit Profiles" +msgstr "Endre profiler" + +#: ../../Zotlabs/Module/Profile_photo.php:179 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart." + +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Last opp profilbilde:" + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ugyldig profil-identifikator." + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Endre profilsynlighet" + +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profil" + +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klikk på en kontakt for å legge til eller fjerne." + +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Synlig for" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Offentlige huber" + +#: ../../Zotlabs/Module/Pubsites.php:25 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Nettstedene på listen tillater offentlig registrering i $Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger." + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Nettstedets URL" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Tilgangstype" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Retningslinjer for registrering" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Vurderinger" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Vurder" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Nettsted:" + +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)" + +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Vurdering (denne informasjonen er offentlig)" + +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)" + +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Ingen vurderinger" + +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Vurdering:" + +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Nettsted:" + +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Beskrivelse:" + #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." msgstr "Temainnstillinger er oppdatert." @@ -3525,7 +3618,7 @@ msgstr "Meldingskøer" #: ../../Zotlabs/Module/Admin.php:236 msgid "Your software should be updated" -msgstr "Programvaren din bør oppdateres" +msgstr "" #: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 #: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 @@ -3562,21 +3655,21 @@ msgstr "Versjon" #: ../../Zotlabs/Module/Admin.php:250 msgid "Repository version (master)" -msgstr "Depotversjon (master)" +msgstr "" #: ../../Zotlabs/Module/Admin.php:251 msgid "Repository version (dev)" -msgstr "Depotversjon (dev)" +msgstr "" #: ../../Zotlabs/Module/Admin.php:373 msgid "Site settings updated." msgstr "Nettstedsinnstillinger er oppdatert." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 msgid "Default" msgstr "Standard" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 msgid "mobile" msgstr "mobil" @@ -3608,7 +3701,7 @@ msgstr "Mitt nettsted har kun gratis tilgang" msgid "My site offers free accounts with optional paid upgrades" msgstr "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 msgid "Site" msgstr "Nettsted" @@ -3804,7 +3897,7 @@ msgstr "Importer og gi tilgang til offentlig innhold trukket inn fra andre netts #: ../../Zotlabs/Module/Admin.php:522 msgid "Login on Homepage" -msgstr "Logg inn på hjemmesiden" +msgstr "" #: ../../Zotlabs/Module/Admin.php:522 msgid "" @@ -3814,13 +3907,13 @@ msgstr "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke no #: ../../Zotlabs/Module/Admin.php:523 msgid "Enable context help" -msgstr "Skru på kontekstsensitiv hjelp" +msgstr "" #: ../../Zotlabs/Module/Admin.php:523 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." +msgstr "" #: ../../Zotlabs/Module/Admin.php:525 msgid "Directory Server URL" @@ -3896,12 +3989,12 @@ msgid "0 for no expiration of imported content" msgstr "0 dersom importert innhold ikke skal utgå" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "Off" msgstr "Av" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "On" msgstr "På" @@ -3938,27 +4031,27 @@ msgstr "Tjener" 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." +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:" +msgstr "" #: ../../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/
" +msgstr "" #: ../../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." +msgstr "" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 msgid "Security" msgstr "Sikkerhet" @@ -3974,11 +4067,11 @@ msgstr "Kryss av for å blokkere tilgang til alle personlige sider som ellers vi #: ../../Zotlabs/Module/Admin.php:759 msgid "Set \"Transport Security\" HTTP header" -msgstr "Sett HTTP header \"Transport Security\"" +msgstr "" #: ../../Zotlabs/Module/Admin.php:760 msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Sett HTTP header \"Content Security Policy\"" +msgstr "" #: ../../Zotlabs/Module/Admin.php:761 msgid "Allow communications only from these sites" @@ -4010,15 +4103,15 @@ msgstr "Blokker kommunikasjon fra disse kanalene" #: ../../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." +msgstr "" #: ../../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" +msgstr "" #: ../../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." +msgstr "" #: ../../Zotlabs/Module/Admin.php:767 msgid "Block embedded HTML from these domains" @@ -4126,7 +4219,7 @@ msgid "Account '%s' unblocked" msgstr "Kontoen '%s' er ikke blokkert lenger" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1383 msgid "Accounts" msgstr "Kontoer" @@ -4136,7 +4229,7 @@ msgstr "velg alle" #: ../../Zotlabs/Module/Admin.php:1034 msgid "Registrations waiting for confirm" -msgstr "Registreringer venter på bekreftelse" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1035 msgid "Request date" @@ -4232,7 +4325,7 @@ msgstr "Kanal '%s' kode tillatt" msgid "Channel '%s' code disallowed" msgstr "Kanal '%s' kode ikke tillatt" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 msgid "Channels" msgstr "Kanaler" @@ -4252,7 +4345,7 @@ msgstr "Tillat kode" msgid "Disallow Code" msgstr "Ikke tillat kode" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 msgid "Channel" msgstr "Kanal" @@ -4291,7 +4384,7 @@ msgid "Enable" msgstr "Skru på" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1387 msgid "Plugins" msgstr "Tilleggsfunksjoner" @@ -4300,8 +4393,8 @@ msgid "Toggle" msgstr "Skru av og på" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Innstillinger" @@ -4335,52 +4428,52 @@ msgstr "Skrudd av - versjonsinkompatibilitet" #: ../../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." +msgstr "" #: ../../Zotlabs/Module/Admin.php:1395 msgid "Plugin repo git URL" -msgstr "Git-URL-en til tillegget" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1396 msgid "Custom repo name" -msgstr "Tilpasset depotnavn" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1396 msgid "(optional)" -msgstr "(valgfritt)" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1397 msgid "Download Plugin Repo" -msgstr "Last ned depotet til tillegget" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1404 msgid "Install new repo" -msgstr "Installer nytt depot" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 msgid "Install" msgstr "Installer" #: ../../Zotlabs/Module/Admin.php:1427 msgid "Manage Repos" -msgstr "Håndter depoter" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1428 msgid "Installed Plugin Repositories" -msgstr "Installerede tilleggsdepoter" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1429 msgid "Install a New Plugin Repository" -msgstr "Installer et nytt tillleggsdepot" +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:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 msgid "Update" msgstr "Oppdater" #: ../../Zotlabs/Module/Admin.php:1436 msgid "Switch branch" -msgstr "Bytt gren" +msgstr "" #: ../../Zotlabs/Module/Admin.php:1550 msgid "No themes found." @@ -4391,7 +4484,7 @@ msgid "Screenshot" msgstr "Skjermbilde" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1388 msgid "Themes" msgstr "Temaer" @@ -4407,8 +4500,8 @@ msgstr "[Ingen støtte]" msgid "Log settings updated." msgstr "Logginnstillinger er oppdatert." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 msgid "Logs" msgstr "Logger" @@ -4428,7 +4521,7 @@ msgstr "Loggfil" 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." +msgstr "" #: ../../Zotlabs/Module/Admin.php:1742 msgid "Log level" @@ -4474,412 +4567,85 @@ msgstr "Feltdefinisjonen ble ikke funnet" msgid "Edit Profile Field" msgstr "Endre profilfelt" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 msgid "Profile Fields" -msgstr "Profilfelter" +msgstr "" #: ../../Zotlabs/Module/Admin.php:2107 msgid "Basic Profile Fields" -msgstr "Grunnleggende profilfelter" +msgstr "" #: ../../Zotlabs/Module/Admin.php:2108 msgid "Advanced Profile Fields" -msgstr "Avanserte profilfelter" +msgstr "" #: ../../Zotlabs/Module/Admin.php:2108 msgid "(In addition to basic fields)" -msgstr "(i tillegg til grunnleggende felter)" +msgstr "" #: ../../Zotlabs/Module/Admin.php:2110 msgid "All available fields" -msgstr "Alle tilgjengelige felter" +msgstr "" #: ../../Zotlabs/Module/Admin.php:2111 msgid "Custom Fields" -msgstr "Tilpassede felter" +msgstr "" #: ../../Zotlabs/Module/Admin.php:2115 msgid "Create Custom Field" -msgstr "Lag tilpasset felt" +msgstr "" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Navn eller overskrift" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installert." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Feil oppsett for app-en." -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Velg et kort kallenavn" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Innbyggingskode" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Endre app" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanalrolle og personvern" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Lag app" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Velg en kanalrolle for ditt personvernbehov." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Navn på app" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Les mer om roller" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Plassering (URL) til app" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Lag kanal" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Bildeikon URL" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x80 pixler - valgfritt" -#: ../../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/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "sendte deg en privat melding" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versjons-ID" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "la til din kanal" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Pris på app" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[idag]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "la ut en hendelse" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ugyldig forespørselsidentifikator." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Forkast" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Merk alle systemvarsler som sett" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Prikk" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Dult noen" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Prikke/oppildne" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Dult, prikk eller gjør andre ting med noen" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Mottaker" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Velg hva du ønsker å gjøre med mottakeren" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Gjør dette innlegget privat" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Ikke i stand til å finne hubben din." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Innlegg vellykket." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protokollfeil. Ingen ID ble returnert." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Innlogging mislyktes." - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ugyldig profil-identifikator." - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Endre profilsynlighet" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profil" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klikk på en kontakt for å legge til eller fjerne." - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Synlig for" - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Konfigurasjonsbehandler" - -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig." - -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Henting av URL gir følgende feil: %1$s" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versjon %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Installerte tilleggsfunksjoner/tillegg/apper:" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Ingen installerte tilleggsfunksjoner/tillegg/apper" - -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dette er en $Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern." - -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Merkelapp:" - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Siste innhenting i bakgrunnen:" - -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Gjeldende belastningsgjennomsnitt:" - -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Kjører på webplasseringen" - -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Vennligst besøk hubzilla.org for å lære mer om $Projectname." - -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Feilmeldinger og feilretting: vennligst besøk" - -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "$projectname problemer" - -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Forslag, ros og så videre - vennligst e-post \"redmatrix\" hos librelist - punktum com" - -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Nettstedsadministratorer" - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig." - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Feilmeldingen var:" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Autentisering mislyktes." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Fjernautentisering" - -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)" - -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Autentiser" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Offentlige huber" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Nettstedene på listen tillater offentlig registrering i $Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger." - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Nettstedets URL" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tilgangstype" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Retningslinjer for registrering" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistikk" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Programvare" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Vurderinger" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Vurder" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart." - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Last opp profilbilde:" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Byggeklossens navn" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Byggeklosser" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Byggeklossens tittel" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Nettsted:" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Vurdering (denne informasjonen er offentlig)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Ingen vurderinger" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Vurdering:" - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Nettsted:" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Beskrivelse:" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Apper" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Tittel (valgfri)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Endre byggekloss" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Ingen kanal." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Felles forbindelser" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Ingen forbindelser felles." +#: ../../Zotlabs/Module/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 +#: ../../Zotlabs/Module/Rmagic.php:44 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." +"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:58 -msgid "Export Content" -msgstr "Eksporter innhold" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Feilmeldingen var:" -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner." +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Autentisering mislyktes." -#: ../../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:88 +msgid "Remote Authentication" +msgstr "Fjernautentisering" -#: ../../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:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)" -#: ../../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/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/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,6 +5928,184 @@ msgstr "Fjern alle filer" msgid "Remove this file" msgstr "Fjern denne filen" +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versjon %s" + +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Installerte tilleggsfunksjoner/tillegg/apper:" + +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Ingen installerte tilleggsfunksjoner/tillegg/apper" + +#: ../../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/Siteinfo.php:68 +msgid "Tag: " +msgstr "Merkelapp:" + +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Siste innhenting i bakgrunnen:" + +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Gjeldende belastningsgjennomsnitt:" + +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Kjører på webplasseringen" + +#: ../../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/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Feilmeldinger og feilretting: vennligst besøk" + +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "$projectname problemer" + +#: ../../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/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Nettstedsadministratorer" + +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Mislyktes med å lage kilde. Ingen kanal er valgt." + +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Kilden er laget." + +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Kilden er oppdatert." + +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" + +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:71 +msgid "Channel Sources" +msgstr "Kanalkilder" + +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Håndtere eksterne innholdskilder til din kanal." + +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Ny kilde" + +#: ../../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 alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger." + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Bare importer innhold med disse ordene (ett ord per linje)" + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "La stå tomt for å importere alt offentlig innhold" + +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Kanalnavn" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Kilden ble ikke funnet." + +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Endre kilde" + +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Slett kilde" + +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Kilden er fjernet" + +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Ikke i stand til å fjerne kilde." + +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s følger %2$s sin %3$s" + +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s stopped å følge %2$s sin %3$s" + +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer." + +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignorer/Skjul" + +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 +msgid "post" +msgstr "innlegg" + +#: ../../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/Thing.php:114 msgid "Thing updated" msgstr "Tingen er oppdatert" @@ -6297,229 +6163,74 @@ msgstr "URL til bilde av ting (valgfritt)" msgid "Add Thing to your Profile" msgstr "Legg til ting i din profil" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Mislyktes med å lage kilde. Ingen kanal er valgt." +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Eksporter kanal" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Kilden er laget." - -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Kilden er oppdatert." - -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" - -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 -msgid "Channel Sources" -msgstr "Kanalkilder" - -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Håndtere eksterne innholdskilder til din kanal." - -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Ny kilde" - -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger." +"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/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Bare importer innhold med disse ordene (ett ord per linje)" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Eksporter innhold" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "La stå tomt for å importere alt offentlig innhold" - -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Kanalnavn" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Uexport.php:59 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)" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner." -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Kilden ble ikke funnet." +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Eksporter dine innlegg fra et bestemt år" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Endre kilde" +#: ../../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/Sources.php:141 -msgid "Delete Source" -msgstr "Slett kilde" - -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Kilden er fjernet" - -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Ikke i stand til å fjerne kilde." - -#: ../../Zotlabs/Module/Subthread.php:118 +#: ../../Zotlabs/Module/Uexport.php:63 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s følger %2$s sin %3$s" - -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s stopped å følge %2$s sin %3$s" - -#: ../../Zotlabs/Module/Suggest.php:39 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer." +"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/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignorer/Skjul" - -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "innlegg" - -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 -msgid "comment" -msgstr "kommentar" - -#: ../../Zotlabs/Module/Tagger.php:100 +#: ../../Zotlabs/Module/Uexport.php:64 #, 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 "" +"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/Wiki.php:164 -msgid "Revision Comparison" -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 "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/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 +#: ../../Zotlabs/Module/Viewconnections.php:62 msgid "No connections." msgstr "Ingen forbindelser." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "Besøk %s sin profil [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:104 msgid "View Connections" msgstr "Vis forbindelser" @@ -6527,23 +6238,22 @@ msgstr "Vis forbindelser" 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/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Websider" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:" +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Handlinger" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Vennligst logg inn for å fortsette." +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Sidelenke" -#: ../../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/Webpages.php:197 +msgid "Page Title" +msgstr "Sidetittel" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6553,6 +6263,92 @@ msgstr "Xchan oppslag" msgid "Lookup xchan beginning with (or webbie): " msgstr "Slå opp xchan som begynner med (eller webbie):" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Nettstedsadministrator" + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Foreslå kanaler" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Logg inn" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Nett" + +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Kanalhjem" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Hendelser" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Katalog" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Melding" + +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Undersøk" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Forreslå" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Tilfeldig kanal" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Inviter" + +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Funksjoner" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Innlegg" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Kjøp" + #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Mangler romnavn" @@ -6573,19 +6369,19 @@ msgstr "Rommet ble ikke funnet." msgid "Room is full" msgstr "Rommet er fullt" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 msgid "$Projectname Notification" msgstr "$Projectname varsling" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 msgid "Thank You," msgstr "Tusen takk," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format msgid "%s Administrator" msgstr "%s administrator" @@ -6778,97 +6574,11 @@ msgstr "laget et nytt innlegg" msgid "commented on %s's post" msgstr "kommenterte på %s sitt innlegg" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Nettstedsadministrator" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Feilmelding" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Vis bokmerker" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Mine chatrom" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Firefox-deling" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Fjerndiagnostisering" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Foreslå kanaler" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Logg inn" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Nett" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Kanalhjem" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Hendelser" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Katalog" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Melding" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Undersøk" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Forreslå" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Tilfeldig kanal" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Inviter" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funksjoner" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Innlegg" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Kjøp" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 msgid "Private Message" msgstr "Privat melding" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 msgid "Select" msgstr "Velg" @@ -6916,11 +6626,11 @@ msgstr "Skru av og på stjernestatus" msgid "starred" msgstr "stjernemerket" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 msgid "Message signature validated" msgstr "Innleggets signatur er bekreftet" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 msgid "Message signature incorrect" msgstr "Innleggets signatur er feil" @@ -6976,17 +6686,17 @@ msgstr "vegg-til-vegg" msgid "via Wall-To-Wall:" msgstr "via vegg-til-vegg:" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 #, php-format msgid "from %s" msgstr "fra %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 #, php-format msgid "last edited: %s" msgstr "sist endret: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 #, php-format msgid "Expires: %s" msgstr "Utløper: %s" @@ -7004,27 +6714,26 @@ msgid "Mark all seen" msgstr "Merk alle som sett" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "" +msgid "[+] show all" +msgstr "[+] Vis alle" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 msgid "Bold" msgstr "Uthevet" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 msgid "Italic" msgstr "Kursiv" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 msgid "Underline" msgstr "Understreket" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 msgid "Quote" msgstr "Sitat" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 msgid "Code" msgstr "Kode" @@ -7040,74 +6749,11 @@ msgstr "Sett inn lenke" 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" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, 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." - -#: ../../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/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/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/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dette er din standardinnstilling for besøkende til dine websider" - #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Ingen brukernavn ble funnet i importfilen." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +#: ../../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." @@ -7116,291 +6762,6 @@ msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes." msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan ikke finne DNS-informasjon om databasetjener '%s'" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Bildefilen er tom." - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Bildelagring mislyktes." - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "et nytt bilde" - -#: ../../include/photos.php:303 -#, 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 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Fotoalbum" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Last opp nye bilder" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Logg ut" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Avslutt denne økten" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Hjem" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Dine innlegg og samtaler" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Din profilside" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Håndter/endre profiler" - -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Endre profil" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Endre din profil" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Dine bilder" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Dine filer" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Dine chatterom" - -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Bokmerker" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Dine bokmerker" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Dine websider" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Logg på" - -#: ../../include/nav.php:129 -#, 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" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Hjemmeside" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Lag en konto" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Hjelp og dokumentasjon" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Programmer, verktøy, lenker, spill" - -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold" - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Kanalkatalog" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Ditt nett" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Marker alle nettvarsler som sett" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Kanalhjem" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Merk alle kanalvarsler som sett" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Varsel" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Varsler" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Se alle varsler" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Privat post" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Se alle private meldinger" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Merk alle private meldinger som sett" - -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Innboks" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Utboks" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Ny melding" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Kalender" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Se alle hendelser" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Merk alle hendelser som sett" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Håndter dine kanaler" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Konto-/kanal-innstillinger" - -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Administrator" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Nettstedsoppsett og -konfigurasjon" - -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Laster..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@navn, #merkelapp, ?dokumentasjon, innhold" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Vennligst vent..." - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "vis full størrelse" - -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrator" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Uten emne" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Ny side" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Tittel" - #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -7439,159 +6800,952 @@ msgstr "liker" msgid "dislikes" msgstr "misliker" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen" +#: ../../include/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/channel.php:67 -msgid "Empty name" -msgstr "Mangler navn" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Starter:" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Navnet er for langt" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Slutter:" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Ingen kontoidentifikator" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Denne hendelsen er lagt til i din kalender." -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Kallenavn er påkrevd." +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Ikke spesifisert" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Reservert kallenavn. Vennligst velg et annet." +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Trenger handling" -#: ../../include/channel.php:212 +#: ../../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 "" -"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." +"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/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Klarer ikke å hente den lagede identiteten" +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "Kanalkloning mislyktes. Import mislyktes." -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Standardprofil" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Ukjent)" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Forespurt kanal er ikke tilgjengelig." +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Synlig for enhver på Internett." -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Lag ny profil" +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Synlig bare for deg." -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Synlig for alle" +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Synlig for enhver i dette nettverket." -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Kjønn:" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Synlig for enhver som er autentisert." -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Status:" - -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Hjemmeside:" - -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Online nå" - -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Lik denne kanalen" - -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Fødselsdag:" - -#: ../../include/channel.php:1232 +#: ../../include/items.php:1144 #, php-format -msgid "for %1$d %2$s" -msgstr "for %1$d %2$s" +msgid "Visible to anybody on %s." +msgstr "Synlig for alle på %s." -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Seksuell preferanse:" +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Synlig for alle forbindelser." -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Merkelapper:" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Synlig for godkjente forbindelser." -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Politiske synspunkter:" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Synlig for spesifikke forbindelser." -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "Personverngruppen er tom." -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Hobbyer/interesser:" +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Personverngruppe: %s" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Liker:" +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Forbindelsen ble ikke funnet." -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Misliker:" +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "profilbilde" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformasjon og sosiale nettverk:" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Ingen mottaker angitt." -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Mine andre kanaler:" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[ikke noe emne]" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Musikkinteresse:" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kan ikke avgjøre avsender." -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Bøker, litteratur:" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Lagret innlegg kunne ikke bekreftes." -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "TV:" +#: ../../include/text.php:428 +msgid "prev" +msgstr "forrige" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/kultur/underholdning:" +#: ../../include/text.php:430 +msgid "first" +msgstr "første" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Kjærlighet/romantikk:" +#: ../../include/text.php:459 +msgid "last" +msgstr "siste" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Arbeid/sysselsetting:" +#: ../../include/text.php:462 +msgid "next" +msgstr "neste" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Skole/utdannelse:" +#: ../../include/text.php:472 +msgid "older" +msgstr "eldre" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Lik denne tingen" +#: ../../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/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "prikk" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "prikket" + +#: ../../include/text.php:1039 +msgid "ping" +msgstr "varsle" + +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "varslet" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "oppildne" + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "oppildnet" + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "daske" + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "dasket" + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "fingre" + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "fingret" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "tilbakevise" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "tilbakeviste" + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "glad" + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "trist" + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "dempet" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "trøtt" + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "oppkvikket" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "sint" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "lamslått" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "forundret" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "interessert" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "bitter" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "munter" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "levende" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "irritert" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "nervøs" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "gretten" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "foruroliget" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "frustrert" + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "lei seg" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "motivert" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "avslappet" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "overrasket" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "mandag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "tirsdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "onsdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "torsdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "fredag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "lørdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "søndag" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "januar" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "februar" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "mars" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "mai" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "august" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "desember" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Ukjent vedlegg" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "ukjent" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "fjern kategori" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "fjern fra fil" + +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "standard" + +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Sidens layout" + +#: ../../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/text.php:1803 +msgid "Page content type" +msgstr "Sidens innholdstype" + +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Velg et annet språk" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "aktivitet" + +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Designverktøy" + +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Sider" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "System" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Forslag" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Se mer..." + +#: ../../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/widgets.php:181 +msgid "Add New Connection" +msgstr "Legg til ny forbindelse" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Skriv kanaladressen" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Merknader" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Fjern begrep" + +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Lagrede søk" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "legg til" + +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Lagrede mapper" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Alt" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Arkiv" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Forny" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Kontoinnstillinger" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Kanalinnstillinger" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Tilleggsfunksjoner" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Funksjons-/Tilleggsinnstillinger" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Visningsinnstillinger" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Eksporter kanal" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Tilkoblede app-er" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Premiumkanal-innstillinger" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Meny for privat post" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Kombinert visning" + +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Innboks" + +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Utboks" + +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Ny melding" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Samtaler" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Mottatte meldinger" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Sendte meldinger" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Ingen meldinger." + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Slett samtale" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Meny for hendelser" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Dag" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Uke" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Måned" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Kalenderverktøy" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Eksporter kalender" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importer kalender" + +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Chatrom" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "" + +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Bokmerkede chatrom" + +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Foreslåtte chatrom" + +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/bilde" + +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "" + +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Vurderingsverktøy" + +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Vurder meg" + +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Vis vurderinger" + +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Forum" + +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Oppgaver" + +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Dokumentasjon" + +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Prosjekt-/Nettstedsinformasjon" + +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "For medlemmer" + +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "For administratorer" + +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "For utviklere" + +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Inspiser kø" + +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Databaseoppdateringer" + +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Administrator" + +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Tilleggsfunksjoner" + +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Kanalen er blokkert på dette nettstedet." + +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Kanalplassering mangler." + +#: ../../include/follow.php:81 +msgid "Response from remote channel was incomplete." +msgstr "Svaret fra den andre kanalen var ikke komplett." + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Kanalen er slettet og finnes ikke lenger." + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protokollen er avskrudd." + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "Kanaloppdagelse mislyktes." + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Kan ikke lage forbindelse med deg selv." + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$s sine bokmerker" + +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Offentlig tidslinje" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 +#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 +#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 +#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 +#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 +#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 +#: ../../include/bbcode.php:883 +msgid "Image/photo" +msgstr "Bilde/fotografi" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Kryptert innhold" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installer %s element:" + +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet." + +#: ../../include/bbcode.php:254 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s skrev følgende %2$s %3$s" + +#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Klikk for å åpne/lukke" + +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" + +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 skrev:" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Kataloginnstillinger" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Trygt modus" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Bare offentlige forum" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Kun dette nettstedet" + +#: ../../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/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Logg ut" + +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Avslutt denne økten" + +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Hjem" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Dine innlegg og samtaler" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Din profilside" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Håndter/endre profiler" + +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Endre profil" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Endre din profil" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Dine bilder" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Dine filer" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Dine chatterom" + +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Bokmerker" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Dine bokmerker" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Dine websider" + +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Logg på" + +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klikk for å logge ut" + +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Fjernautentisering" + +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Klikk for å godkjennes mot din hjemme-hub" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Hjemmeside" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Lag en konto" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Hjelp og dokumentasjon" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Programmer, verktøy, lenker, spill" + +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Søk nettstedet for @navn, #merkelapp, ?dokumentasjon, innhold" + +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "Kanalkatalog" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Ditt nett" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Marker alle nettvarsler som sett" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Kanalhjem" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Merk alle kanalvarsler som sett" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Varsel" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Varsler" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Se alle varsler" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Privat post" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Se alle private meldinger" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Merk alle private meldinger som sett" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Kalender" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Se alle hendelser" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Merk alle hendelser som sett" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Håndter dine kanaler" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Konto-/kanal-innstillinger" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Nettstedsoppsett og -konfigurasjon" + +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Laster..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@navn, #merkelapp, ?dokumentasjon, innhold" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Vennligst vent..." #: ../../include/connections.php:95 msgid "New window" @@ -7606,6 +7760,52 @@ msgstr "Åpne det valgte stedet i et annet vindu eller nettleser-fane" msgid "User '%s' deleted" msgstr "Brukeren '%s' er slettet" +#: ../../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/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Finn kanaler" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Skriv navn eller interesse" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Forbindelse/Følg" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Eksempler: Ola Nordmann, fisking" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Tilfeldig profil" + +#: ../../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/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/contact_widgets.php:127 +msgid "show more" +msgstr "vis mer" + #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7616,269 +7816,258 @@ msgstr "%1$s er nå forbundet med %2$s" msgid "%1$s poked %2$s" msgstr "%1$s prikket %2$s" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "prikket" - -#: ../../include/conversation.php:694 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "Vis %s sin profile @ %s" -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Kategorier:" -#: ../../include/conversation.php:714 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Sortert under:" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "Vis i sammenheng" -#: ../../include/conversation.php:850 +#: ../../include/conversation.php:847 msgid "remove" msgstr "fjern" -#: ../../include/conversation.php:855 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Slett valgte elementer" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Vis kilde" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Følg tråd" -#: ../../include/conversation.php:953 +#: ../../include/conversation.php:950 msgid "Unfollow Thread" msgstr "Ikke følg tråd" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:955 msgid "Activity/Posts" msgstr "Aktivitet/Innlegg" -#: ../../include/conversation.php:960 +#: ../../include/conversation.php:957 msgid "Edit Connection" msgstr "Endre forbindelse" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:958 msgid "Message" msgstr "Melding" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "%s liker dette." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "%s liker ikke dette." -#: ../../include/conversation.php:1082 +#: ../../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/conversation.php:1084 +#: ../../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/conversation.php:1090 +#: ../../include/conversation.php:1087 msgid "and" msgstr "og" -#: ../../include/conversation.php:1093 +#: ../../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/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "%s liker dette." -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "%s liker ikke dette." -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "Angi din plassering" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Fjern nettleserplassering" -#: ../../include/conversation.php:1182 +#: ../../include/conversation.php:1177 msgid "Tag term:" msgstr "Merkelapp:" -#: ../../include/conversation.php:1183 +#: ../../include/conversation.php:1178 msgid "Where are you right now?" msgstr "Hvor er du akkurat nå?" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1210 msgid "Page link name" msgstr "Sidens lenkenavn" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:1213 msgid "Post as" msgstr "Lag innlegg som" -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1223 msgid "Toggle voting" msgstr "Skru av eller på stemming" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Kategorier (valgfri, kommaseparert liste)" -#: ../../include/conversation.php:1269 +#: ../../include/conversation.php:1254 msgid "Set publish date" msgstr "Angi publiseringsdato" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "Oppdage" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Importerte offentlige strømmer" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Kommentert" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Sorter etter kommentert dato" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Lagt inn" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Sorter etter innleggsdato" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1529 msgid "Posts that mention or involve you" msgstr "Innlegg som nevner eller involverer deg" -#: ../../include/conversation.php:1553 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Aktivitetsstrøm - etter dato" -#: ../../include/conversation.php:1559 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Stjerne" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Favorittinnlegg" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Søppel" -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Innlegg merket som SØPPEL" -#: ../../include/conversation.php:1629 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Statusmeldinger og -innlegg" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1623 msgid "About" msgstr "Om" -#: ../../include/conversation.php:1641 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Profildetaljer" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Fotoalbum" + +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Filer og lagring" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Chatrom" - -#: ../../include/conversation.php:1693 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Lagrede bokmerker" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Håndtere websider" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Deltar" msgstr[1] "Deltar" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Deltar ikke" msgstr[1] "Deltar ikke" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Ikke bestemt" msgstr[1] "Ikke bestemt" -#: ../../include/conversation.php:1777 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "Enig" msgstr[1] "Enige" -#: ../../include/conversation.php:1780 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Uenig" msgstr[1] "Uenige" -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Avstår" msgstr[1] "Avstår" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes." - -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Kanalkloning mislyktes. Import mislyktes." - #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Ofte" @@ -7943,6 +8132,12 @@ msgstr "Intetkjønn" msgid "Non-specific" msgstr "Ubestemt" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:881 +msgid "Other" +msgstr "Annen" + #: ../../include/selectors.php:49 msgid "Undecided" msgstr "Ubestemt" @@ -8119,366 +8314,361 @@ msgstr "Bryr meg ikke" msgid "Ask me" msgstr "Spør meg" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$s sine bokmerker" +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Synlig for ditt standard publikum" -#: ../../include/security.php:109 -msgid "guest:" +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" 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." -msgstr "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn." +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Offentlig" -#: ../../include/text.php:404 -msgid "prev" -msgstr "forrige" +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "" -#: ../../include/text.php:406 -msgid "first" -msgstr "første" - -#: ../../include/text.php:435 -msgid "last" -msgstr "siste" - -#: ../../include/text.php:438 -msgid "next" -msgstr "neste" - -#: ../../include/text.php:448 -msgid "older" -msgstr "eldre" - -#: ../../include/text.php:450 -msgid "newer" -msgstr "nyere" - -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Ingen forbindelser" - -#: ../../include/text.php:868 +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "View all %s connections" -msgstr "Vis alle %s forbindelser" +msgid "Any account on %s" +msgstr "" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "prikk" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "varsle" +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "varslet" +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "oppildne" +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "oppildnet" - -#: ../../include/text.php:1021 -msgid "slap" -msgstr "daske" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "dasket" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "fingre" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "fingret" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "tilbakevise" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "tilbakeviste" - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "glad" - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "trist" - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "dempet" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "trøtt" - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "oppkvikket" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "sint" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "lamslått" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "forundret" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "interessert" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "bitter" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "munter" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "levende" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "irritert" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "nervøs" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "gretten" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "foruroliget" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrert" - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "lei seg" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivert" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "avslappet" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "overrasket" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "mandag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "tirsdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "onsdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "torsdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "fredag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "lørdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "søndag" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "januar" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "februar" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "mars" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "mai" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "august" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "desember" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Ukjent vedlegg" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "ukjent" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "fjern kategori" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "fjern fra fil" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "standard" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Sidens layout" - -#: ../../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/text.php:1784 -msgid "Page content type" -msgstr "Sidens innholdstype" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Velg et annet språk" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "aktivitet" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Designverktøy" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Sider" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Logget ut." - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Mislykket autentisering" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan se min normale strøm og innlegg" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kan se mine websider" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan lage innlegg på min kanalside (\"vegg\")" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kan like/ikke like forskjellige greier" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profiler og andre ting enn innlegg/kommentarer" - -#: ../../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/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avansert - nyttig for å lage forumkanaler for grupper" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)" - -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kan skrive til mitt lager for filer og bilder" - -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kan endre mine websider" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Litt avansert - svært nyttig i åpne fellesskap" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kan administrere mine kanalressurser" - -#: ../../include/permissions.php:46 +#: ../../include/PermissionDescription.php:161 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Ekstremt avansert. La dette være med mindre du vet hva du gjør" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" + +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" + +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "" + +#: ../../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" +msgstr "Ikke en gyldig e-postadresse" + +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet" + +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Din e-postadresse er allerede registrert på dette nettstedet." + +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "En invitasjon er påkrevd." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Invitasjon kunne ikke bekreftes." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Vennligst skriv inn nødvendig informasjon." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Mislyktes med å lagre kontoinformasjon." + +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registreringsbekreftelse for %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Registreringsforespørsel hos %s" + +#: ../../include/account.php: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" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Registreringsdetaljer for %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Konto godkjent." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrering trukket tilbake for %s" + +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Konto bekreftet. Vennligst logg inn." + +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Klikk her for å oppgradere." + +#: ../../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/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:497 +msgid "No source file." +msgstr "Ingen kildefil." + +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "Kan ikke finne filen som skal byttes ut" + +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "Finner ikke filen som skal revideres/oppdateres" + +#: ../../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: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: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:855 +msgid "Stored file could not be verified. Upload failed." +msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes." + +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Stien er ikke tilgjengelig." + +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Tomt sti-navn" + +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "duplikat av filnavn eller sti" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Stien ble ikke funnet." + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "mkdir mislyktes." + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "databaselagring mislyktes." + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "Tom sti" + +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen" + +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Mangler navn" + +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Navnet er for langt" + +#: ../../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 "" +"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/channel.php:1192 +#, php-format +msgid "for %1$d %2$s" +msgstr "for %1$d %2$s" + +#: ../../include/channel.php:1195 +msgid "Sexual Preference:" +msgstr "Seksuell preferanse:" + +#: ../../include/channel.php:1201 +msgid "Tags:" +msgstr "Merkelapper:" + +#: ../../include/channel.php:1203 +msgid "Political Views:" +msgstr "Politiske synspunkter:" + +#: ../../include/channel.php:1205 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/channel.php:1209 +msgid "Hobbies/Interests:" +msgstr "Hobbyer/interesser:" + +#: ../../include/channel.php:1211 +msgid "Likes:" +msgstr "Liker:" + +#: ../../include/channel.php:1213 +msgid "Dislikes:" +msgstr "Misliker:" + +#: ../../include/channel.php:1215 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformasjon og sosiale nettverk:" + +#: ../../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" @@ -8525,257 +8715,378 @@ msgid "Provide managed web pages on your channel" msgstr "Tilby kontrollerte web-sider på din kanal" #: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "" - -#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Skjul vurdering" -#: ../../include/features.php:56 +#: ../../include/features.php:55 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Skjul vurderingsknappene for din kanal og profilsider. Merknad: folk kan fortsatt vurdere deg et annet sted." -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Private Notes" msgstr "Private merknader" -#: ../../include/features.php:57 +#: ../../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:58 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "Navigasjon kanalvalg" -#: ../../include/features.php:58 +#: ../../include/features.php:57 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Endre kanaler direkte fra navigasjonsmenyen" -#: ../../include/features.php:59 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "Bildeplassering" -#: ../../include/features.php:59 +#: ../../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:60 +#: ../../include/features.php:59 msgid "Access Controlled Chatrooms" -msgstr "Tilgangsstyrte chatrom" +msgstr "" + +#: ../../include/features.php:59 +msgid "Provide chatrooms and chat services with access control." +msgstr "" #: ../../include/features.php:60 -msgid "Provide chatrooms and chat services with access control." -msgstr "Tilby chatrom og chattjenester med tilgangskontroll." - -#: ../../include/features.php:61 msgid "Smart Birthdays" -msgstr "Smarte fødselsdager" +msgstr "" -#: ../../include/features.php:61 +#: ../../include/features.php:60 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." +msgstr "" -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "Ekspertmodus" -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "Premium Channel" msgstr "Premiumkanal" -#: ../../include/features.php:63 +#: ../../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/features.php:68 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "Funksjoner for å lage innlegg" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Large Photos" msgstr "Store bilder" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Inkluder store (1024px) småbilder i innlegg. Hvis denne ikke er påskrudd, bruk små (640px) småbilder." -#: ../../include/features.php:72 +#: ../../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/features.php:73 +#: ../../include/features.php:72 msgid "Even More Encryption" msgstr "Enda mer kryptering" -#: ../../include/features.php:73 +#: ../../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/features.php:74 +#: ../../include/features.php:73 msgid "Enable Voting Tools" msgstr "Skru på verktøy for å stemme" -#: ../../include/features.php:74 +#: ../../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/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Tidfest publisering" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Allow posts to be published at a later date" msgstr "Tillat innlegg å bli publisert på et senere tidspunkt" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Forhindre duplikat av innlegg/kommentarer" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Forhindre innlegg med identisk innhold fra å bli publisert hvis det er mindre enn to minutter mellom innsendingene." -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Nettverk- og strømfiltrering" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Søk etter dato" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Mulighet for å velge innlegg etter datoområde" -#: ../../include/features.php:84 ../../include/group.php:311 +#: ../../include/features.php:83 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Personverngrupper" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Skru på håndtering og valg av personverngrupper" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Lagrede søk" - -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Lagre søkeuttrykk for senere bruk" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Nettverk personlig fane" -#: ../../include/features.php:86 +#: ../../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/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Nettverk Ny fane" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Enable tab to display all new Network activity" msgstr "Skru på fane for å vise all ny nettverksaktivitet" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Affinity Tool" msgstr "Nærhetsverktøy" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Filter stream activity by depth of relationships" msgstr "Filtrer strømaktiviteten etter releasjonsdybde" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Connection Filtering" msgstr "Filtrer forbindelser" -#: ../../include/features.php:89 +#: ../../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/features.php:90 +#: ../../include/features.php:89 msgid "Show channel suggestions" msgstr "Vis kanalforslag" -#: ../../include/features.php:95 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "Innlegg-/Kommentar-verktøy" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Community Tagging" msgstr "Felleskapsmerkelapper" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "Mulighet til å merke eksisterende meldinger" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "Innleggskategorier" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "Legg kategorier til dine innlegg" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Emoji Reactions" -msgstr "Emoji-reaksjoner" +msgstr "" + +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "" #: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Legg til muligheten for emoji-reaksjoner på innlegg" - -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Lagrede mapper" - -#: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "Mulighet til å sortere innlegg i mapper" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "Mislik innlegg" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "Mulighet til å mislike innlegg/kommentarer" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "Stjerneinnlegg" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Ability to mark special posts with a star indicator" msgstr "Mulighet til å merke spesielle innlegg med en stjerne" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Tag Cloud" msgstr "Merkelappsky" -#: ../../include/features.php:102 +#: ../../include/features.php:101 msgid "Provide a personal tag cloud on your channel page" msgstr "Tilby en personlig merkelappsky på din kanalside" +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "Innebygget innhold" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Innbygging avskrudd" + +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "" + +#: ../../include/acl_selectors.php:272 +msgid "Custom selection" +msgstr "" + +#: ../../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/acl_selectors.php:274 +msgid "Show" +msgstr "Vis" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Ikke vis" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Andre nettverk og innleggstjenester" + +#: ../../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/auth.php:105 +msgid "Logged out." +msgstr "Logget ut." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Mislykket autentisering" + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Alder:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD eller MM-DD" + +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "aldri" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "for mindre enn ett sekund siden" + +#: ../../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/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "år" +msgstr[1] "år" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "måned" +msgstr[1] "måneder" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "uke" +msgstr[1] "uker" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dager" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "time" +msgstr[1] "timer" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minutt" +msgstr[1] "minutter" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "sekund" +msgstr[1] "sekunder" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$s sin fødselsdag" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gratulerer med dagen, %1$s !" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -8803,583 +9114,21 @@ msgstr "Legg til personverngruppe" msgid "Channels not in any privacy group" msgstr "Kanaler uten personverngruppe" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "legg til" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Starter:" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Slutter:" - -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Denne hendelsen er lagt til i din kalender." - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Ikke spesifisert" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Trenger handling" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Ferdig" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "Igang" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Avbrutt" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Ikke en gyldig e-postadresse" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Ditt e-postdomene er ikke blant de som er tillatt på dette stedet" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Din e-postadresse er allerede registrert på dette nettstedet." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "En invitasjon er påkrevd." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Invitasjon kunne ikke bekreftes." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Vennligst skriv inn nødvendig informasjon." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Mislyktes med å lagre kontoinformasjon." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registreringsbekreftelse for %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registreringsforespørsel hos %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "ditt registreringspassord" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registreringsdetaljer for %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Konto godkjent." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrering trukket tilbake for %s" - -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Klikk her for å oppgradere." - -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Denne handlingen går utenfor grensene satt i din abonnementsplan." - -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Denne handlingen er ikke tilgjengelig i din abonnementsplan." - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Kanalen er blokkert på dette nettstedet." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Kanalplassering mangler." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "Svaret fra den andre kanalen var ikke komplett." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Kanalen er slettet og finnes ikke lenger." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protokollen er avskrudd." - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "Kanaloppdagelse mislyktes." - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Kan ikke lage forbindelse med deg selv." - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Elementet ble ikke funnet." - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "Ingen kildefil." - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "Kan ikke finne filen som skal byttes ut" - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "Finner ikke filen som skal revideres/oppdateres" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Filens størrelse overgår grensen på %d" - -#: ../../include/attach.php:688 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Du har nådd din lagringsgrense for vedlegg på %1$.0f Mbytes." - -#: ../../include/attach.php:846 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt." - -#: ../../include/attach.php:859 -msgid "Stored file could not be verified. Upload failed." -msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes." - -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "Stien er ikke tilgjengelig." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Tomt sti-navn" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "duplikat av filnavn eller sti" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Stien ble ikke funnet." - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir mislyktes." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "databaselagring mislyktes." - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "Tom sti" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Bilde/fotografi" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Kryptert innhold" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installer %s element:" - -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet." - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s skrev følgende %2$s %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Klikk for å åpne/lukke" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "avsløring" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 skrev:" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Ukjent)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Synlig for enhver på Internett." - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Synlig bare for deg." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Synlig for enhver i dette nettverket." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Synlig for enhver som er autentisert." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Synlig for alle på %s." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Synlig for alle forbindelser." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Synlig for godkjente forbindelser." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Synlig for spesifikke forbindelser." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Personverngruppen er tom." - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Personverngruppe: %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Forbindelsen ble ikke funnet." - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "profilbilde" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Innebygget innhold" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Innbygging avskrudd" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Ny app" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Forslag" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Se mer..." - -#: ../../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/widgets.php:181 -msgid "Add New Connection" -msgstr "Legg til ny forbindelse" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Skriv kanaladressen" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Merknader" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Fjern begrep" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alt" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Arkiv" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Forny" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Kontoinnstillinger" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanalinnstillinger" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Tilleggsfunksjoner" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Funksjons-/Tilleggsinnstillinger" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Visningsinnstillinger" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Håndter plasseringer" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Eksporter kanal" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Tilkoblede app-er" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Premiumkanal-innstillinger" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Meny for privat post" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Kombinert visning" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Samtaler" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Mottatte meldinger" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Sendte meldinger" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Ingen meldinger." - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Slett samtale" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Kalenderverktøy" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Eksporter kalender" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importer kalender" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Overblikk" - -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Chatmedlemmer" - -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "" - -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "" - -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Bokmerkede chatrom" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Foreslåtte chatrom" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/bilde" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Klikk for å vise mer" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Vurderingsverktøy" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Vurder meg" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Vis vurderinger" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Forum" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Oppgaver" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Dokumentasjon" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Prosjekt-/Nettstedsinformasjon" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "For medlemmer" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "For administratorer" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "For utviklere" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Medlemsregistreringer venter på bekreftelse" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Inspiser kø" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Databaseoppdateringer" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Tilleggsfunksjoner" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "og" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "offentlig profil" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s endret %2$s til “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besøk %1$s sitt %2$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s har oppdatert %2$s, endret %3$s." - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Vedlegg:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "$Projectname hendelsesvarsling:" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Slett dette elementet?" #: ../../include/js_strings.php:8 -#, 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,223 +9358,278 @@ 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/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Forbindelse/Følg" +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "et nytt bilde" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Eksempler: Ola Nordmann, fisking" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Tilfeldig profil" - -#: ../../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/contact_widgets.php:122 +#: ../../include/photos.php:299 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d forbindelse felles" -msgstr[1] "%d forbindelser felles" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s la inn %2$s til %3$s" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "vis mer" +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Last opp nye bilder" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Kataloginnstillinger" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Trygt modus" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Bare offentlige forum" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Kun dette nettstedet" - -#: ../../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/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "Hvem kan se dette?" - -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Tilpasset utvalg" - -#: ../../include/acl_selectors.php:271 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Velg \"Vis\" for å tillate visning. \"Ikke vis\" lar deg overstyre og avgrense omfanget av \"Vis\"." - -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Vis" - -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Ikke vis" - -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Andre nettverk og innleggstjenester" - -#: ../../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/datetime.php:135 -msgid "Birthday" -msgstr "Fødselsdag" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Alder:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD eller MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "aldri" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "for mindre enn ett sekund siden" - -#: ../../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/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "år" -msgstr[1] "år" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "måned" -msgstr[1] "måneder" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "uke" -msgstr[1] "uker" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dager" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "time" -msgstr[1] "timer" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minutt" -msgstr[1] "minutter" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "sekund" -msgstr[1] "sekunder" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$s sin fødselsdag" - -#: ../../include/datetime.php:563 -#, 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 +#: ../../include/zot.php:699 msgid "Invalid data packet" msgstr "Ugyldig datapakke" -#: ../../include/zot.php:713 +#: ../../include/zot.php:715 msgid "Unable to verify channel signature" msgstr "Ikke i stand til å sjekke kanalsignaturen" -#: ../../include/zot.php:2326 +#: ../../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:3703 +#: ../../include/zot.php:3712 msgid "invalid target signature" msgstr "Målets signatur er ugyldig" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Ny side" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Tittel" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kan se min normale strøm og innlegg" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kan se min standard kanalprofil" + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kan se mine forbindelser" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kan se mine filer og bilder" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kan se mine websider" + +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kan sende meg deres kanalstrøm og innlegg" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan lage innlegg på min kanalside (\"vegg\")" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Kan kommentere på eller like mine innlegg" + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kan sende meg private meldinger" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kan like/ikke like forskjellige greier" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profiler og andre ting enn innlegg/kommentarer" + +#: ../../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/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avansert - nyttig for å lage forumkanaler for grupper" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kan skrive til mitt lager for filer og bilder" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kan endre mine websider" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kan bruke mine offentlige innlegg som kanalkilde i egne kanaler" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Litt avansert - svært nyttig i åpne fellesskap" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kan administrere mine kanalressurser" + +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Ekstremt avansert. La dette være med mindre du vet hva du gjør" + +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Sosialt nettverk" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Sosial - ganske offentlig" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Sosial - begrenset" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Sosial - privat" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Forum for fellesskap" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Forum - ganske offentlig" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - begrenset" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - privat" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Republisering av strømmet innhold" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Strøm - ganske offentlig" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Strøm - begrenset" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Spesiell bruk" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Spesiell - kjendis/talerstol" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Spesiell - gruppelager" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Tilpasset/Ekspertmodus" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "og" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "offentlig profil" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s endret %2$s til “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besøk %1$s sitt %2$s" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s har oppdatert %2$s, endret %3$s." + +#: ../../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)" msgstr "Focus (Hubzilla standardtema)" @@ -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,6 +592,203 @@ App::$strings["Menu item deleted."] = "Menyelement slettet."; App::$strings["Menu item could not be deleted."] = "Menyelement kunne ikke bli slettet."; App::$strings["Edit Menu Element"] = "Endre menyelement"; App::$strings["Link text"] = "Lenketekst"; +App::$strings["Name or caption"] = "Navn eller overskrift"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""; +App::$strings["Choose a short nickname"] = "Velg et kort kallenavn"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s"; +App::$strings["Channel role and privacy"] = "Kanalrolle og personvern"; +App::$strings["Select a channel role with your privacy requirements."] = "Velg en kanalrolle for ditt personvernbehov."; +App::$strings["Read more about roles"] = "Les mer om roller"; +App::$strings["Create Channel"] = "Lag kanal"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser."; +App::$strings["or import an existing channel from another location."] = "eller importer en eksisterende kanal fra et annet sted."; +App::$strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; +App::$strings["Discard"] = "Forkast"; +App::$strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett"; +App::$strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes."; +App::$strings["Profile Photos"] = "Profilbilder"; +App::$strings["Album not found."] = "Albumet ble ikke funnet."; +App::$strings["Delete Album"] = "Slett album"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = ""; +App::$strings["Delete Photo"] = "Slett bilde"; +App::$strings["No photos selected"] = "Ingen bilder valgt"; +App::$strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt."; +App::$strings["Upload Photos"] = "Last opp bilder"; +App::$strings["Enter an album name"] = "Skriv et albumnavn"; +App::$strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; +App::$strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen"; +App::$strings["Caption (optional):"] = "Bildetekst (valgfritt):"; +App::$strings["Description (optional):"] = "Beskrivelse (valgfritt):"; +App::$strings["Album name could not be decoded"] = "Albumnavnet kunne ikke dekodes"; +App::$strings["Contact Photos"] = "Kontaktbilder"; +App::$strings["Show Newest First"] = "Vis nyeste først"; +App::$strings["Show Oldest First"] = "Vis eldste først"; +App::$strings["View Photo"] = "Vis foto"; +App::$strings["Edit Album"] = "Endre album"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan være begrenset."; +App::$strings["Photo not available"] = "Bilde er utilgjengelig"; +App::$strings["Use as profile photo"] = "Bruk som profilbilde"; +App::$strings["Use as cover photo"] = ""; +App::$strings["Private Photo"] = "Privat bilde"; +App::$strings["View Full Size"] = "Vis i full størrelse"; +App::$strings["Remove"] = "Fjern"; +App::$strings["Edit photo"] = "Endre bilde"; +App::$strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)"; +App::$strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; +App::$strings["Enter a new album name"] = "Skriv et nytt albumnavn"; +App::$strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; +App::$strings["Caption"] = "Overskrift"; +App::$strings["Add a Tag"] = "Legg til merkelapp"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "Flag som voksent i albumvisning"; +App::$strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)"; +App::$strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)"; +App::$strings["Please wait"] = "Vennligst vent"; +App::$strings["This is you"] = "Dette er deg"; +App::$strings["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"; @@ -778,7 +798,7 @@ App::$strings["# Channels"] = "# Kanaler"; App::$strings["# primary"] = "# hoved"; App::$strings["# clones"] = "# kloner"; App::$strings["Message queues"] = "Meldingskøer"; -App::$strings["Your software should be updated"] = "Programvaren din bør oppdateres"; +App::$strings["Your software should be updated"] = ""; App::$strings["Administration"] = "Administrasjon"; App::$strings["Summary"] = "Sammendrag"; App::$strings["Registered accounts"] = "Registrerte kontoer"; @@ -786,8 +806,8 @@ App::$strings["Pending registrations"] = "Ventende registreringer"; App::$strings["Registered channels"] = "Registrerte kanaler"; App::$strings["Active plugins"] = "Aktive tilleggsfunksjoner"; App::$strings["Version"] = "Versjon"; -App::$strings["Repository version (master)"] = "Depotversjon (master)"; -App::$strings["Repository version (dev)"] = "Depotversjon (dev)"; +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"; @@ -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,196 +1531,34 @@ 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["Message"] = "Melding"; -App::$strings["%s likes this."] = "%s liker dette."; -App::$strings["%s doesn't like this."] = "%s liker ikke dette."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d person liker dette.", - 1 => "%2\$d personer liker dette.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d person liker ikke dette.", - 1 => "%2\$d personer liker ikke dette.", -); -App::$strings["and"] = "og"; -App::$strings[", and %d other people"] = array( - 0 => ", og %d annen person", - 1 => ", og %d andre personer", -); -App::$strings["%s like this."] = "%s liker dette."; -App::$strings["%s don't like this."] = "%s liker ikke dette."; -App::$strings["Set your location"] = "Angi din plassering"; -App::$strings["Clear browser location"] = "Fjern nettleserplassering"; -App::$strings["Tag term:"] = "Merkelapp:"; -App::$strings["Where are you right now?"] = "Hvor er du akkurat nå?"; -App::$strings["Page link name"] = "Sidens lenkenavn"; -App::$strings["Post as"] = "Lag innlegg som"; -App::$strings["Toggle voting"] = "Skru av eller på stemming"; -App::$strings["Categories (optional, comma-separated list)"] = "Kategorier (valgfri, kommaseparert liste)"; -App::$strings["Set publish date"] = "Angi publiseringsdato"; -App::$strings["Discover"] = "Oppdage"; -App::$strings["Imported public streams"] = "Importerte offentlige strømmer"; -App::$strings["Commented Order"] = "Kommentert"; -App::$strings["Sort by Comment Date"] = "Sorter etter kommentert dato"; -App::$strings["Posted Order"] = "Lagt inn"; -App::$strings["Sort by Post Date"] = "Sorter etter innleggsdato"; -App::$strings["Posts that mention or involve you"] = "Innlegg som nevner eller involverer deg"; -App::$strings["Activity Stream - by date"] = "Aktivitetsstrøm - etter dato"; -App::$strings["Starred"] = "Stjerne"; -App::$strings["Favourite Posts"] = "Favorittinnlegg"; -App::$strings["Spam"] = "Søppel"; -App::$strings["Posts flagged as SPAM"] = "Innlegg merket som SØPPEL"; -App::$strings["Status Messages and Posts"] = "Statusmeldinger og -innlegg"; -App::$strings["About"] = "Om"; -App::$strings["Profile Details"] = "Profildetaljer"; -App::$strings["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( - 0 => "Deltar", - 1 => "Deltar", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Deltar ikke", - 1 => "Deltar ikke", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Ikke bestemt", - 1 => "Ikke bestemt", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Enig", - 1 => "Enige", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Uenig", - 1 => "Uenige", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Avstår", - 1 => "Avstår", -); +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["Frequently"] = "Ofte"; -App::$strings["Hourly"] = "Hver time"; -App::$strings["Twice daily"] = "To ganger daglig"; -App::$strings["Daily"] = "Daglig"; -App::$strings["Weekly"] = "Ukentlig"; -App::$strings["Monthly"] = "Månedlig"; -App::$strings["Currently Male"] = "For tiden mann"; -App::$strings["Currently Female"] = "For tiden kvinne"; -App::$strings["Mostly Male"] = "For det meste mann"; -App::$strings["Mostly Female"] = "For det meste kvinne"; -App::$strings["Transgender"] = "Transkjønnet"; -App::$strings["Intersex"] = "interkjønnet"; -App::$strings["Transsexual"] = "Transseksuell"; -App::$strings["Hermaphrodite"] = "Hermafroditt"; -App::$strings["Neuter"] = "Intetkjønn"; -App::$strings["Non-specific"] = "Ubestemt"; -App::$strings["Undecided"] = "Ubestemt"; -App::$strings["Males"] = "Menn"; -App::$strings["Females"] = "Kvinner"; -App::$strings["Gay"] = "Homo"; -App::$strings["Lesbian"] = "Lesbisk"; -App::$strings["No Preference"] = "Ingen preferanse"; -App::$strings["Bisexual"] = "Biseksuell"; -App::$strings["Autosexual"] = "Autoseksuell"; -App::$strings["Abstinent"] = "Avholdende"; -App::$strings["Virgin"] = "Jomfru"; -App::$strings["Deviant"] = "Avviker"; -App::$strings["Fetish"] = "Fetisj"; -App::$strings["Oodles"] = "Masse"; -App::$strings["Nonsexual"] = "Ikke-seksuell"; -App::$strings["Single"] = "Enslig"; -App::$strings["Lonely"] = "Ensom"; -App::$strings["Available"] = "Tilgjengelig"; -App::$strings["Unavailable"] = "Ikke tilgjengelig"; -App::$strings["Has crush"] = "Er forelsket"; -App::$strings["Infatuated"] = "Betatt"; -App::$strings["Dating"] = "Sammen med"; -App::$strings["Unfaithful"] = "Utro"; -App::$strings["Sex Addict"] = "Sexavhengig"; -App::$strings["Friends/Benefits"] = "Venner med frynsegoder"; -App::$strings["Casual"] = "Tilfeldig"; -App::$strings["Engaged"] = "Forlovet"; -App::$strings["Married"] = "Gift"; -App::$strings["Imaginarily married"] = "Gift i fantasien"; -App::$strings["Partners"] = "Partnere"; -App::$strings["Cohabiting"] = "Samboer"; -App::$strings["Common law"] = "Samboer"; -App::$strings["Happy"] = "Lykkelig"; -App::$strings["Not looking"] = "Ikke på utkikk"; -App::$strings["Swinger"] = "Partnerbytte"; -App::$strings["Betrayed"] = "Bedratt"; -App::$strings["Separated"] = "Separert"; -App::$strings["Unstable"] = "Ustabilt"; -App::$strings["Divorced"] = "Skilt"; -App::$strings["Imaginarily divorced"] = "Skilt i fantasien"; -App::$strings["Widowed"] = "Enke"; -App::$strings["Uncertain"] = "Usikkert"; -App::$strings["It's complicated"] = "Det er komplisert"; -App::$strings["Don't care"] = "Bryr meg ikke"; -App::$strings["Ask me"] = "Spør meg"; -App::$strings["%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["(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"; @@ -1877,6 +1568,7 @@ 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"; @@ -1939,21 +1631,385 @@ 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["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."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d person liker dette.", + 1 => "%2\$d personer liker dette.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d person liker ikke dette.", + 1 => "%2\$d personer liker ikke dette.", +); +App::$strings["and"] = "og"; +App::$strings[", and %d other people"] = array( + 0 => ", og %d annen person", + 1 => ", og %d andre personer", +); +App::$strings["%s like this."] = "%s liker dette."; +App::$strings["%s don't like this."] = "%s liker ikke dette."; +App::$strings["Set your location"] = "Angi din plassering"; +App::$strings["Clear browser location"] = "Fjern nettleserplassering"; +App::$strings["Tag term:"] = "Merkelapp:"; +App::$strings["Where are you right now?"] = "Hvor er du akkurat nå?"; +App::$strings["Page link name"] = "Sidens lenkenavn"; +App::$strings["Post as"] = "Lag innlegg som"; +App::$strings["Toggle voting"] = "Skru av eller på stemming"; +App::$strings["Categories (optional, comma-separated list)"] = "Kategorier (valgfri, kommaseparert liste)"; +App::$strings["Set publish date"] = "Angi publiseringsdato"; +App::$strings["OK"] = "OK"; +App::$strings["Discover"] = "Oppdage"; +App::$strings["Imported public streams"] = "Importerte offentlige strømmer"; +App::$strings["Commented Order"] = "Kommentert"; +App::$strings["Sort by Comment Date"] = "Sorter etter kommentert dato"; +App::$strings["Posted Order"] = "Lagt inn"; +App::$strings["Sort by Post Date"] = "Sorter etter innleggsdato"; +App::$strings["Posts that mention or involve you"] = "Innlegg som nevner eller involverer deg"; +App::$strings["Activity Stream - by date"] = "Aktivitetsstrøm - etter dato"; +App::$strings["Starred"] = "Stjerne"; +App::$strings["Favourite Posts"] = "Favorittinnlegg"; +App::$strings["Spam"] = "Søppel"; +App::$strings["Posts flagged as SPAM"] = "Innlegg merket som SØPPEL"; +App::$strings["Status Messages and Posts"] = "Statusmeldinger og -innlegg"; +App::$strings["About"] = "Om"; +App::$strings["Profile Details"] = "Profildetaljer"; +App::$strings["Photo Albums"] = "Fotoalbum"; +App::$strings["Files and Storage"] = "Filer og lagring"; +App::$strings["Saved Bookmarks"] = "Lagrede bokmerker"; +App::$strings["Manage Webpages"] = "Håndtere websider"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Deltar", + 1 => "Deltar", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Deltar ikke", + 1 => "Deltar ikke", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Ikke bestemt", + 1 => "Ikke bestemt", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "Enig", + 1 => "Enige", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Uenig", + 1 => "Uenige", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Avstår", + 1 => "Avstår", +); +App::$strings["Frequently"] = "Ofte"; +App::$strings["Hourly"] = "Hver time"; +App::$strings["Twice daily"] = "To ganger daglig"; +App::$strings["Daily"] = "Daglig"; +App::$strings["Weekly"] = "Ukentlig"; +App::$strings["Monthly"] = "Månedlig"; +App::$strings["Currently Male"] = "For tiden mann"; +App::$strings["Currently Female"] = "For tiden kvinne"; +App::$strings["Mostly Male"] = "For det meste mann"; +App::$strings["Mostly Female"] = "For det meste kvinne"; +App::$strings["Transgender"] = "Transkjønnet"; +App::$strings["Intersex"] = "interkjønnet"; +App::$strings["Transsexual"] = "Transseksuell"; +App::$strings["Hermaphrodite"] = "Hermafroditt"; +App::$strings["Neuter"] = "Intetkjønn"; +App::$strings["Non-specific"] = "Ubestemt"; +App::$strings["Other"] = "Annen"; +App::$strings["Undecided"] = "Ubestemt"; +App::$strings["Males"] = "Menn"; +App::$strings["Females"] = "Kvinner"; +App::$strings["Gay"] = "Homo"; +App::$strings["Lesbian"] = "Lesbisk"; +App::$strings["No Preference"] = "Ingen preferanse"; +App::$strings["Bisexual"] = "Biseksuell"; +App::$strings["Autosexual"] = "Autoseksuell"; +App::$strings["Abstinent"] = "Avholdende"; +App::$strings["Virgin"] = "Jomfru"; +App::$strings["Deviant"] = "Avviker"; +App::$strings["Fetish"] = "Fetisj"; +App::$strings["Oodles"] = "Masse"; +App::$strings["Nonsexual"] = "Ikke-seksuell"; +App::$strings["Single"] = "Enslig"; +App::$strings["Lonely"] = "Ensom"; +App::$strings["Available"] = "Tilgjengelig"; +App::$strings["Unavailable"] = "Ikke tilgjengelig"; +App::$strings["Has crush"] = "Er forelsket"; +App::$strings["Infatuated"] = "Betatt"; +App::$strings["Dating"] = "Sammen med"; +App::$strings["Unfaithful"] = "Utro"; +App::$strings["Sex Addict"] = "Sexavhengig"; +App::$strings["Friends/Benefits"] = "Venner med frynsegoder"; +App::$strings["Casual"] = "Tilfeldig"; +App::$strings["Engaged"] = "Forlovet"; +App::$strings["Married"] = "Gift"; +App::$strings["Imaginarily married"] = "Gift i fantasien"; +App::$strings["Partners"] = "Partnere"; +App::$strings["Cohabiting"] = "Samboer"; +App::$strings["Common law"] = "Samboer"; +App::$strings["Happy"] = "Lykkelig"; +App::$strings["Not looking"] = "Ikke på utkikk"; +App::$strings["Swinger"] = "Partnerbytte"; +App::$strings["Betrayed"] = "Bedratt"; +App::$strings["Separated"] = "Separert"; +App::$strings["Unstable"] = "Ustabilt"; +App::$strings["Divorced"] = "Skilt"; +App::$strings["Imaginarily divorced"] = "Skilt i fantasien"; +App::$strings["Widowed"] = "Enke"; +App::$strings["Uncertain"] = "Usikkert"; +App::$strings["It's complicated"] = "Det er komplisert"; +App::$strings["Don't care"] = "Bryr meg ikke"; +App::$strings["Ask me"] = "Spør meg"; +App::$strings["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,6 +262,229 @@ 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/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Bloknaam" + +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Blokken" + +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Bloktitel" + +#: ../../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/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/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/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/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/Cal.php:69 +msgid "Permissions denied." +msgstr "Permissies niet toegestaan" + +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 +msgid "l, F j" +msgstr "l j F" + +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 +#: ../../include/text.php:1732 +msgid "Link to Source" +msgstr "Originele locatie" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "Gebeurtenis bewerken" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "Gebeurtenis aanmaken" + +#: ../../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/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/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "Exporteren" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "Importeren" + +#: ../../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/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "Vandaag" + +#: ../../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/Channel.php:41 +msgid "Posts and comments" +msgstr "Berichten en reacties" + +#: ../../Zotlabs/Module/Channel.php:42 +msgid "Only posts" +msgstr "Alleen berichten" + +#: ../../Zotlabs/Module/Channel.php:102 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Chatkanaal verwijderen" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Ik ben online" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" + +#: ../../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/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/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/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" @@ -414,6 +493,65 @@ msgstr "Afwezig" 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." @@ -422,350 +560,317 @@ msgstr "Kon geen toegang krijgen tot de connectie-gegevens." msgid "Could not locate selected profile." msgstr "Kon het gekozen profiel niet vinden." -#: ../../Zotlabs/Module/Connedit.php:248 +#: ../../Zotlabs/Module/Connedit.php:227 msgid "Connection updated." msgstr "Connectie bijgewerkt." -#: ../../Zotlabs/Module/Connedit.php:250 +#: ../../Zotlabs/Module/Connedit.php:229 msgid "Failed to update connection record." msgstr "Bijwerken van connectie-gegevens mislukt." -#: ../../Zotlabs/Module/Connedit.php:300 +#: ../../Zotlabs/Module/Connedit.php:276 msgid "is now connected to" msgstr "is nu verbonden met" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "No" msgstr "Nee" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 msgid "Yes" msgstr "Ja" -#: ../../Zotlabs/Module/Connedit.php:435 +#: ../../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:455 +#: ../../Zotlabs/Module/Connedit.php:425 msgid "Refresh failed - channel is currently unavailable." msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" -#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 msgid "Unable to set address book parameters." msgstr "Niet in staat om de parameters van connecties in te stellen." -#: ../../Zotlabs/Module/Connedit.php:533 +#: ../../Zotlabs/Module/Connedit.php:503 msgid "Connection has been removed." msgstr "Connectie is verwijderd" -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 msgid "View Profile" msgstr "Profiel weergeven" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Connedit.php:522 #, php-format msgid "View %s's profile" msgstr "Profiel van %s weergeven" -#: ../../Zotlabs/Module/Connedit.php:556 +#: ../../Zotlabs/Module/Connedit.php:526 msgid "Refresh Permissions" msgstr "Permissies vernieuwen" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Connedit.php:529 msgid "Fetch updated permissions" msgstr "Aangepaste permissies ophalen" -#: ../../Zotlabs/Module/Connedit.php:563 +#: ../../Zotlabs/Module/Connedit.php:533 msgid "Recent Activity" msgstr "Recente activiteit/berichten" -#: ../../Zotlabs/Module/Connedit.php:566 +#: ../../Zotlabs/Module/Connedit.php:536 msgid "View recent posts and comments" msgstr "Recente berichten en reacties weergeven" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 msgid "Unblock" msgstr "Deblokkeren" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 msgid "Block" msgstr "Blokkeren" -#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../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:574 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "This connection is blocked!" msgstr "Deze connectie is geblokkeerd!" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 msgid "Unignore" msgstr "Niet meer negeren" -#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Connedit.php:548 #: ../../Zotlabs/Module/Connections.php:277 #: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Negeren" -#: ../../Zotlabs/Module/Connedit.php:581 +#: ../../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:582 +#: ../../Zotlabs/Module/Connedit.php:552 msgid "This connection is ignored!" msgstr "Deze connectie wordt genegeerd!" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Unarchive" msgstr "Niet meer archiveren" -#: ../../Zotlabs/Module/Connedit.php:586 +#: ../../Zotlabs/Module/Connedit.php:556 msgid "Archive" msgstr "Archiveren" -#: ../../Zotlabs/Module/Connedit.php:589 +#: ../../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:590 +#: ../../Zotlabs/Module/Connedit.php:560 msgid "This connection is archived!" msgstr "Deze connectie is gearchiveerd!" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Unhide" msgstr "Niet meer verbergen" -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:564 msgid "Hide" msgstr "Verbergen" -#: ../../Zotlabs/Module/Connedit.php:597 +#: ../../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,121 +886,17 @@ 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/Id.php:13 -msgid "First Name" -msgstr "Voornaam" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Achternaam" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Bijnaam" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Volledige naam" - -#: ../../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" @@ -915,12 +916,12 @@ msgstr "Status: " msgid "Homepage: " msgstr "Homepage: " -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 msgid "Age:" msgstr "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,322 +1017,38 @@ 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/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: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/Events.php:25 -msgid "Calendar entries imported." -msgstr "Agenda-items geïmporteerd." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Geen agenda-items gevonden." - -#: ../../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/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/Events.php:113 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" - -#: ../../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/Events.php:448 -msgid "Edit event title" -msgstr "Titel bewerken" - -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Titel" - -#: ../../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/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (door komma's gescheiden lijst)" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Categorie" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Categorie" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Edit start date and time" -msgstr "Begindatum en -tijd bewerken" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Begindatum en -tijd" - -#: ../../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 +#: ../../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/Editpost.php:35 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 +msgid "Title (optional)" +msgstr "Titel (optioneel)" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Bericht bewerken" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Blok 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/Common.php:14 +msgid "No channel." +msgstr "Geen kanaal." -#: ../../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/Common.php:43 +msgid "Common connections" +msgstr "Veel voorkomende connecties" -#: ../../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/Common.php:48 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -1359,7 +1076,7 @@ msgstr "Gearchiveerd" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 +#: ../../include/conversation.php:1535 msgid "New" msgstr "Nieuw" @@ -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,69 +1262,200 @@ 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/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/Events.php:449 +msgid "Edit event title" +msgstr "Titel bewerken" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Titel" + +#: ../../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/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (door komma's gescheiden lijst)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "Categorie" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "Categorie" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "Begindatum en -tijd bewerken" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "Begindatum en -tijd" + +#: ../../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/Events.php:458 +msgid "Edit finish date and time" +msgstr "Einddatum en -tijd bewerken" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "Einddatum en -tijd" + +#: ../../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/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/Events.php:462 +msgid "Edit Description" +msgstr "Omschrijving bewerken" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Omschrijving" + +#: ../../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/Events.php:476 +msgid "Advanced Options" +msgstr "Geavanceerde opties" + +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" + +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "Gebeurtenis verwijderen" + +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "agenda" + +#: ../../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" @@ -1617,184 +1465,112 @@ msgstr "Deze hub is geen kanalengidshub (directoryserver)" msgid "This directory server requires an access token" msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" -#: ../../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/Filer.php:52 +msgid "Save to Folder:" +msgstr "Bewaar in map: " -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- kies map -" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" +#: ../../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/Chat.php:198 -msgid "Delete Room" -msgstr "Chatkanaal verwijderen" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Ik ben online" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" - -#: ../../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/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/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/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: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 "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/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -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/Dreport.php:44 +#: ../../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 -msgid "channel sync processed" -msgstr "kanaalsync verwerkt" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "in wachtrij" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "verstuurd" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "geaccepteerd om afgeleverd te worden" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "geüpdatet" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "update genegeerd" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "toegang geweigerd" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "ontvanger niet gevonden" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "Privébericht ingetrokken" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "dubbel privébericht ontvangen" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "privébericht afgeleverd" - -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:64 #, 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:78 +msgid "channel sync processed" +msgstr "kanaalsync verwerkt" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Opnieuw afleveren" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "in wachtrij" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "verstuurd" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "geaccepteerd om afgeleverd te worden" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "geüpdatet" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "update genegeerd" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "toegang geweigerd" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "ontvanger niet gevonden" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "Privébericht ingetrokken" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "dubbel privébericht ontvangen" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "privébericht afgeleverd" + +#: ../../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,57 +1624,31 @@ 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/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Locatie (URL) van app" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL van pictogram" - -#: ../../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/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/Help.php:26 msgid "Documentation Search" @@ -1910,8 +1660,8 @@ 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 +#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 +#: ../../include/nav.php:159 msgid "Help" msgstr "Hulp" @@ -1919,124 +1669,335 @@ msgstr "Hulp" msgid "$Projectname Documentation" msgstr "$Projectname-documentatie" +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "Toegang geweigerd" + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "Bestand niet gevonden." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "Bestandsrechten bewerken" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "Rechten instellen/bewerken" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "Toepassen op alle bestanden en submappen" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "Terugkeren naar bestandlijst " + +#: ../../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: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:163 +msgid "Share this file" +msgstr "Dit bestand delen" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "Toon URL van dit bestand" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "Jouw connecties over dit bestand berichten" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:163 +msgid "Apps" +msgstr "Apps" + #: ../../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/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Jouw abonnement staat maar %d kanalen toe." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Systeempagina's bewerken" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Niets gevonden om te importeren" -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Lay-out niet gevonden." +#: ../../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/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulenaam:" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Geïmporteerde bestand is leeg" -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Lay-out-hulp" +#: ../../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/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Deel webpagina's vanuit Firefox met " +#: ../../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/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Activeer de $Projectname-service in Firefox" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Geen kanaal. Importeren mislukt." -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "netwerk" +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import voltooid." -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../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/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Toegang geweigerd" +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Kanaal importeren" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "Bestand niet gevonden." +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "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/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Bestandsrechten bewerken" +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Bestand om te uploaden" -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Set/edit permissions" -msgstr "Rechten instellen/bewerken" +#: ../../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/Filestorage.php:156 -msgid "Include all files and sub folders" -msgstr "Toepassen op alle bestanden en submappen" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Jouw oude kanaaladres (xyz@example.com)" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Return to file list" -msgstr "Terugkeren naar bestandlijst " +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Het e-mailadres van je oude account" -#: ../../Zotlabs/Module/Filestorage.php:159 -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/Import.php:543 +msgid "Your old login password" +msgstr "Wachtwoord van jouw oude account" -#: ../../Zotlabs/Module/Filestorage.php:160 -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/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/Filestorage.php:162 -msgid "Share this file" -msgstr "Dit bestand delen" +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Stel deze hub als mijn primaire locatie in" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Show URL to this file" -msgstr "Toon URL van dit bestand" +#: ../../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/Filestorage.php:164 -msgid "Notify your contacts about this file" -msgstr "Jouw connecties over dit bestand berichten" +#: ../../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/Layouts.php:183 ../../include/text.php:2240 +#: ../../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/Item.php:427 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" + +#: ../../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/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/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 "You have reached your limit of %1$.0f top level posts." +msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." + +#: ../../Zotlabs/Module/Item.php:1255 +#, 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/Layouts.php:181 ../../include/text.php:2267 msgid "Layouts" msgstr "Lay-outs" -#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Layouts.php:183 msgid "Comanche page description language help" msgstr "Hulp met de paginabeschrijvingstaal Comanche" -#: ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Layouts.php:187 msgid "Layout Description" msgstr "Lay-out-omschrijving" -#: ../../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/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/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/Layouts.php:194 +#: ../../Zotlabs/Module/Layouts.php:192 msgid "Download PDL file" msgstr "Download PDL-bestand" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Voornaam" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Achternaam" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Bijnaam" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Volledige naam" + +#: ../../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/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/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:234 +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/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "Webpagina" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "blok" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "lay-out" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" + +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s onderdeel geïnstalleerd" + +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Installatie %s-element mislukt" + #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "Leuk/niet leuk" @@ -2072,65 +2033,1180 @@ msgstr "Kanaal niet beschikbaar." msgid "Previous action reversed." msgstr "Vorige actie omgedraaid" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 +#: ../../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/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "bericht" -#: ../../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 "%1$s vindt %3$s van %2$s leuk" -#: ../../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 "%1$s vindt %3$s van %2$s niet leuk" -#: ../../Zotlabs/Module/Like.php:423 +#: ../../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/Like.php:425 +#: ../../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/Like.php:427 +#: ../../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/Like.php:429 +#: ../../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/Like.php:431 +#: ../../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/Like.php:433 +#: ../../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/Like.php:536 +#: ../../Zotlabs/Module/Like.php:537 msgid "Action completed." msgstr "Actie voltooid" -#: ../../Zotlabs/Module/Like.php:537 +#: ../../Zotlabs/Module/Like.php:538 msgid "Thank you." msgstr "Bedankt" +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Importeren voltooid" + +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importeer items" + +#: ../../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/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Limiet voor aantal uitnodigingen overschreden." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Geen geldig e-mailadres." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Uitnodiging voor $Projectname" + +#: ../../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/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Aflevering bericht mislukt." + +#: ../../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/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Je hebt geen uitnodigingen meer beschikbaar" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Uitnodigingen verzenden" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Voer e-mailadressen in, één per regel:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Jouw bericht:" + +#: ../../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/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Je moet deze uitnodigingscode opgeven:" + +#: ../../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/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/Invite.php:142 +msgid "or visit" +msgstr "of bezoek" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klik op [+ Verbinden]" + +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Privacy-informatie op afstand niet beschikbaar." + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Zichtbaar voor:" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Locatie niet gevonden." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Opzoeken locatie mislukt" + +#: ../../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/Locs.php:95 +msgid "Syncing locations" +msgstr "Locaties synchronizeren" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Geen locaties gevonden." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Kanaallocaties beheren" + +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "Kanaaladres" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primair" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Verwijderen" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Nu synchroniseren" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." + +#: ../../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/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/Magic.php:71 +msgid "Hub not found." +msgstr "Hub niet gevonden." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." + +#: ../../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/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" + +#: ../../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/Mail.php:143 +msgid "Messages" +msgstr "Berichten" + +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Bericht ingetrokken." + +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Conversatie verwijderd" + +#: ../../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/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" + +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Privébericht versturen" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "Aan:" + +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Onderwerp:" + +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1220 +msgid "Attach file" +msgstr "Bestand toevoegen" + +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "Verzenden" + +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1251 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" + +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "Bericht verwijderen" + +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Afleveringsrapport" + +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Bericht intrekken" + +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." + +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Verwijder conversatie" + +#: ../../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/Mail.php:367 +msgid "Send Reply" +msgstr "Antwoord versturen" + +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Jouw privébericht aan %s (%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 "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Kanaalbeheer" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Huidig kanaal" + +#: ../../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/Manage.php:168 +msgid "Default Channel" +msgstr "Standaardkanaal" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Als standaard instellen" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nieuwe berichten" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nieuwe connectieverzoeken" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Uitbesteed kanaal" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." + +#: ../../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/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" + +#: ../../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/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/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" + +#: ../../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/Lostpass.php:92 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" + +#: ../../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/Lostpass.php:94 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" + +#: ../../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/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" + +#: ../../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/Lostpass.php:129 +msgid "Email Address" +msgstr "E-mailadres" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Opnieuw instellen" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Niet in staat om menu aan te passen" + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Niet in staat om menu aan te maken." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Menunaam" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menutitel" + +#: ../../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/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Bladwijzers toestaan" + +#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Opslaan en doorgaan" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menu's" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Bladwijzers toegestaan" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Menu verwijderen" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bewerk de inhoud van het menu" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dit menu bewerken" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menu kon niet verwijderd worden." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menu niet gevonden." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menu bewerken" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Items aan dit menu toevoegen of verwijder" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Naam van menu" + +#: ../../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/Menu.php:156 +msgid "Menu title" +msgstr "Titel van menu" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titel van menu zoals anderen dat zien." + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Bladwijzers toestaan" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Niet gevonden." + +#: ../../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/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Stemming" + +#: ../../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/Match.php:26 +msgid "Profile Match" +msgstr "Profielovereenkomst" + +#: ../../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/Match.php:67 +msgid "is interested in:" +msgstr "is geïnteresseerd in:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Geen overeenkomsten" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Collectie niet gevonden" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Niet zo'n kanaal" + +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "forum" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Privacygroep is leeg" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Privacygroep: " + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Ongeldige connectie." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Systeemnotificaties" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Niet in staat om onderdeel aan te maken." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Menu-onderdeel kan niet worden geüpdatet." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Menu-onderdeel kan niet worden toegevoegd." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permissies menu-item" + +#: ../../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/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Linknaam" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Linkdoel of submenu-doel" + +#: ../../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/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Gebruik magic-auth wanneer beschikbaar" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Volgorde in lijst" + +#: ../../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/Mitem.php:161 +msgid "Submit and finish" +msgstr "Opslaan en afsluiten" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Opslaan en doorgaan" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menu:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Linkdoel" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Menu bewerken" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Onderdeel bewerken" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Onderdeel verwijderen" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nieuw element" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Deze menu-container bewerken" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Menu-element toevoegen" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Dit menu-item verwijderen" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Dit menu-item bewerken" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Linktekst" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Naam" + +#: ../../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/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Korte bijnaam" + +#: ../../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 "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" + +#: ../../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/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Lees meer over kanaaltypes" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Kanaal aanmaken" + +#: ../../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/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/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ongeldige verzoek identificator (request identifier)" + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Annuleren" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" + +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." + +#: ../../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/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "Album niet gevonden." + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "Verwijder album" + +#: ../../Zotlabs/Module/Photos.php:153 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder." + +#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +msgid "Delete Photo" +msgstr "Verwijder foto" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: ../../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/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB aan foto-opslag gebruikt." + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "Foto's uploaden" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "Vul een albumnaam in" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "Plaats een bericht voor deze upload." + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "Bijschrift (optioneel):" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "Omschrijving (optioneel):" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "Albumnaam kon niet gedecodeerd worden" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "Connectiefoto's" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "Nieuwste eerst weergeven" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "Oudste eerst weergeven" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../include/widgets.php:1499 +msgid "View Photo" +msgstr "Foto weergeven" + +#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +msgid "Edit Album" +msgstr "Album bewerken" + +#: ../../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/Photos.php:872 +msgid "Photo not available" +msgstr "Foto niet aanwezig" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "Als profielfoto gebruiken" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "Als omslagfoto gebruiken" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "Privéfoto" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "Volledige grootte weergeven" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Verwijderen" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "Foto bewerken" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "Draai met de klok mee (naar rechts)" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "Draai tegen de klok in (naar links)" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "Vul een nieuwe albumnaam in" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "Bijschrift" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "Tag toevoegen" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "Markeer als voor volwassenen in albumweergave" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:740 +msgid "Please wait" +msgstr "Even wachten" + +#: ../../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/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Reactie" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "vinden dit leuk" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "vinden dit niet leuk" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "eens" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "oneens" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "onthoudingen" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "aanwezig" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "niet aanwezig" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "mogelijk aanwezig" + +#: ../../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/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/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/Photos.php:1235 +msgid "Photo Tools" +msgstr "Hulpmiddelen" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "Op deze foto:" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Kaart" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "Sluiten" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "Album weergeven" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "Recente foto's" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" + +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "G:i, l d F" + +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[vandaag]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Niet in staat om je hub te vinden" + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Verzenden bericht geslaagd." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID-protocolfout. Geen ID terugontvangen." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Inloggen mislukt." + +#: ../../Zotlabs/Module/Page.php:133 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Configuratiebewerker" + +#: ../../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/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/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 +#: ../../include/conversation.php:960 +msgid "Poke" +msgstr "Aanstoten" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Iemand aanstoten" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Iemand bijvoorbeeld aanstoten of poren" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Ontvanger" + +#: ../../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/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Maak dit bericht privé" + +#: ../../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/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 msgid "Profile not found." @@ -2200,11 +3276,6 @@ msgstr "Homepage" msgid "Interests" msgstr "Interesses" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Kanaaladres" - #: ../../Zotlabs/Module/Profiles.php:560 msgid "Profile updated." msgstr "Profiel bijgewerkt" @@ -2222,7 +3293,7 @@ msgid "View this profile" msgstr "Profiel weergeven" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 +#: ../../include/channel.php:959 msgid "Edit visibility" msgstr "Zichtbaarheid bewerken" @@ -2234,7 +3305,7 @@ msgstr "Hulpmiddelen" msgid "Change cover photo" msgstr "Omslagfoto wijzigen" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 msgid "Change profile photo" msgstr "Profielfoto veranderen" @@ -2254,8 +3325,8 @@ msgstr "Dit profiel verwijderen" msgid "Add profile things" msgstr "Dingen aan je profiel toevoegen" -#: ../../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:1526 msgid "Personal" msgstr "Persoonlijk" @@ -2395,1097 +3466,119 @@ msgstr "Contactinformatie en sociale netwerken" msgid "My other channels" msgstr "Mijn andere kanalen" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:994 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 msgid "Profile Image" msgstr "Profielfoto" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 +#: ../../include/channel.php:937 msgid "Edit Profiles" msgstr "Bewerk profielen" -#: ../../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/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Niets gevonden om te importeren" - -#: ../../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/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Geïmporteerde bestand is leeg" - -#: ../../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/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Geen kanaal. Importeren mislukt." - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import voltooid." - -#: ../../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/Import.php:547 -msgid "Import Channel" -msgstr "Kanaal importeren" - -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Profile_photo.php:179 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." +"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/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Bestand om te uploaden" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" -#: ../../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/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Jouw oude kanaaladres (xyz@example.com)" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Het e-mailadres van je oude account" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 +msgid "Profile" +msgstr "Profiel" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Wachtwoord van jouw oude account" +#: ../../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/Import.php:554 +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Zichtbaar voor" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 +msgid "Public Hubs" +msgstr "Openbare hubs" + +#: ../../Zotlabs/Module/Pubsites.php:25 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." +"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/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Stel deze hub als mijn primaire locatie in" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Hub-URL" -#: ../../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/Pubsites.php:31 +msgid "Access Type" +msgstr "Toegangs-
 type" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "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/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Registratie-
 beleid" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Stats" +msgstr "Stats" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:959 +msgid "Ratings" +msgstr "Beoordelingen" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "Beoordeel" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "Website:" + +#: ../../Zotlabs/Module/Rate.php:163 #, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" -#: ../../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/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "Beoordeling (deze informatie is openbaar)" -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" +#: ../../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/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Geen beoordelingen" -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Dubbel bericht tegengehouden." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Beoordeling: " -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Website: " -#: ../../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/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/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/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." - -#: ../../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/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album niet gevonden." - -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Verwijder album" - -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder." - -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Verwijder foto" - -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" - -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." - -#: ../../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/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB aan foto-opslag gebruikt." - -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Foto's uploaden" - -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Vul een albumnaam in" - -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Plaats een bericht voor deze upload." - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Bijschrift (optioneel):" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Omschrijving (optioneel):" - -#: ../../Zotlabs/Module/Photos.php:693 -msgid "Album name could not be decoded" -msgstr "Albumnaam kon niet gedecodeerd worden" - -#: ../../Zotlabs/Module/Photos.php:741 -msgid "Contact Photos" -msgstr "Connectiefoto's" - -#: ../../Zotlabs/Module/Photos.php:764 -msgid "Show Newest First" -msgstr "Nieuwste eerst weergeven" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Oldest First" -msgstr "Oudste eerst weergeven" - -#: ../../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/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 -msgid "Edit Album" -msgstr "Album bewerken" - -#: ../../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/Photos.php:870 -msgid "Photo not available" -msgstr "Foto niet aanwezig" - -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" -msgstr "Als profielfoto gebruiken" - -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" -msgstr "Als omslagfoto gebruiken" - -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" -msgstr "Privéfoto" - -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" -msgstr "Volledige grootte weergeven" - -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Verwijderen" - -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Edit photo" -msgstr "Foto bewerken" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Rotate CW (right)" -msgstr "Draai met de klok mee (naar rechts)" - -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Rotate CCW (left)" -msgstr "Draai tegen de klok in (naar links)" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Enter a new album name" -msgstr "Vul een nieuwe albumnaam in" - -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "or select an existing one (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" - -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Caption" -msgstr "Bijschrift" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Add a Tag" -msgstr "Tag toevoegen" - -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" - -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Flag as adult in album view" -msgstr "Markeer als voor volwassenen in albumweergave" - -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" - -#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Even wachten" - -#: ../../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/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/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "eens" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "oneens" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "onthoudingen" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "aanwezig" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "niet aanwezig" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "mogelijk aanwezig" - -#: ../../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/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/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/Photos.php:1233 -msgid "Photo Tools" -msgstr "Hulpmiddelen" - -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "In This Photo:" -msgstr "Op deze foto:" - -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Map" -msgstr "Kaart" - -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "vinden dit leuk" - -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "vinden dit niet leuk" - -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Sluiten" - -#: ../../Zotlabs/Module/Photos.php:1335 -msgid "View Album" -msgstr "Album weergeven" - -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 -msgid "Recent Photos" -msgstr "Recente foto's" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Privacy-informatie op afstand niet beschikbaar." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Zichtbaar voor:" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importeren voltooid" - -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importeer items" - -#: ../../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/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Limiet voor aantal uitnodigingen overschreden." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Geen geldig e-mailadres." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Uitnodiging voor $Projectname" - -#: ../../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/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Aflevering bericht mislukt." - -#: ../../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/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Je hebt geen uitnodigingen meer beschikbaar" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Uitnodigingen verzenden" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Voer e-mailadressen in, één per regel:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Jouw bericht:" - -#: ../../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/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Je moet deze uitnodigingscode opgeven:" - -#: ../../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/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/Invite.php:142 -msgid "or visit" -msgstr "of bezoek" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klik op [+ Verbinden]" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Locatie niet gevonden." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Opzoeken locatie mislukt" - -#: ../../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/Locs.php:95 -msgid "Syncing locations" -msgstr "Locaties synchronizeren" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Geen locaties gevonden." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Kanaallocaties beheren" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primair" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Verwijderen" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Nu synchroniseren" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." - -#: ../../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/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/Magic.php:71 -msgid "Hub not found." -msgstr "Hub niet gevonden." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." - -#: ../../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/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" - -#: ../../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/Mail.php:135 -msgid "Messages" -msgstr "Berichten" - -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Bericht ingetrokken." - -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversatie verwijderd" - -#: ../../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/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Privébericht versturen" - -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "Aan:" - -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Onderwerp:" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Bestand toevoegen" - -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Verzenden" - -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" - -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Bericht verwijderen" - -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Afleveringsrapport" - -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Bericht intrekken" - -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." - -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Verwijder conversatie" - -#: ../../Zotlabs/Module/Mail.php:355 -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" - -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Jouw privébericht aan %s (%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 "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 -msgid "Channel Manager" -msgstr "Kanaalbeheer" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Huidig kanaal" - -#: ../../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/Manage.php:168 -msgid "Default Channel" -msgstr "Standaardkanaal" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Als standaard instellen" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nieuwe berichten" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nieuwe connectieverzoeken" - -#: ../../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/Menu.php:60 -msgid "Unable to create menu." -msgstr "Niet in staat om menu aan te maken." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Menunaam" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menutitel" - -#: ../../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/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Bladwijzers toestaan" - -#: ../../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/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Opslaan en doorgaan" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menu's" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Bladwijzers toegestaan" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Menu verwijderen" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Bewerk de inhoud van het menu" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Dit menu bewerken" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menu kon niet verwijderd worden." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menu niet gevonden." - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Menu bewerken" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Items aan dit menu toevoegen of verwijder" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Naam van menu" - -#: ../../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/Menu.php:156 -msgid "Menu title" -msgstr "Titel van menu" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titel van menu zoals anderen dat zien." - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Bladwijzers toestaan" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Niet gevonden." - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." - -#: ../../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/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" - -#: ../../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/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/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" - -#: ../../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/Lostpass.php:92 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" - -#: ../../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/Lostpass.php:94 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" - -#: ../../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/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" - -#: ../../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/Lostpass.php:129 -msgid "Email Address" -msgstr "E-mailadres" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Opnieuw instellen" - -#: ../../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/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Stemming" - -#: ../../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/Network.php:94 -msgid "No such group" -msgstr "Collectie niet gevonden" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Niet zo'n kanaal" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "Privacygroep is leeg" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Privacygroep: " - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Ongeldige connectie." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Systeemnotificaties" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profielovereenkomst" - -#: ../../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/Match.php:67 -msgid "is interested in:" -msgstr "is geïnteresseerd in:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Geen overeenkomsten" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Berichten en reacties" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Alleen berichten" - -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Niet in staat om onderdeel aan te maken." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Menu-onderdeel kan niet worden geüpdatet." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Menu-onderdeel kan niet worden toegevoegd." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permissies menu-item" - -#: ../../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/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Linknaam" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Linkdoel of submenu-doel" - -#: ../../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/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Gebruik magic-auth wanneer beschikbaar" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Open link in nieuw venster" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Volgorde in lijst" - -#: ../../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/Mitem.php:161 -msgid "Submit and finish" -msgstr "Opslaan en afsluiten" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Opslaan en doorgaan" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menu:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Linkdoel" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Menu bewerken" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Onderdeel bewerken" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Onderdeel verwijderen" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nieuw element" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Deze menu-container bewerken" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Menu-element toevoegen" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Dit menu-item verwijderen" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Dit menu-item bewerken" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menu-item niet gevonden." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menu-item verwijderd." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menu-item kon niet worden verwijderd." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Menu-element bewerken" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Linktekst" +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Omschrijving: " #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3572,11 +3665,11 @@ msgstr "Versie repository (dev)" msgid "Site settings updated." msgstr "Hub-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 msgid "Default" msgstr "Standaard" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 msgid "mobile" msgstr "mobiel" @@ -3608,7 +3701,7 @@ msgstr "Mijn $Projectname-hub kent alleen gratis toegang" 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:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 msgid "Site" msgstr "Hub-instellingen" @@ -3896,12 +3989,12 @@ 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 +#: ../../Zotlabs/Module/Settings.php:722 msgid "Off" msgstr "Uit" #: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 +#: ../../Zotlabs/Module/Settings.php:722 msgid "On" msgstr "Aan" @@ -3958,7 +4051,7 @@ msgid "" "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 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 msgid "Security" msgstr "Beveiliging" @@ -4126,7 +4219,7 @@ msgid "Account '%s' unblocked" msgstr "Account '%s' gedeblokkeerd" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../include/widgets.php:1383 msgid "Accounts" msgstr "Accounts" @@ -4232,7 +4325,7 @@ msgstr "Scripts toegestaan voor kanaal '%s'" msgid "Channel '%s' code disallowed" msgstr "Scripts niet toegestaan voor kanaal '%s'" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 msgid "Channels" msgstr "Kanalen" @@ -4252,7 +4345,7 @@ msgstr "Scripts toestaan" msgid "Disallow Code" msgstr "Scripts niet toestaan" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 msgid "Channel" msgstr "Kanaal" @@ -4291,7 +4384,7 @@ msgid "Enable" msgstr "Inschakelen" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../include/widgets.php:1387 msgid "Plugins" msgstr "Plugins" @@ -4300,8 +4393,8 @@ msgid "Toggle" msgstr "Omschakelen" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Instellingen" @@ -4357,7 +4450,7 @@ msgstr "Plugin-repository downloaden" msgid "Install new repo" msgstr "Nieuwe repository installeren" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 msgid "Install" msgstr "Installeren" @@ -4373,8 +4466,8 @@ msgstr "Toegevoegde plugin-repositories" msgid "Install a New Plugin Repository" msgstr "Nieuwe plugin-repository toevoegen" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 msgid "Update" msgstr "Bijwerken" @@ -4391,7 +4484,7 @@ msgid "Screenshot" msgstr "Schermafdruk" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../include/widgets.php:1388 msgid "Themes" msgstr "Thema's" @@ -4407,8 +4500,8 @@ msgstr "[Niet ondersteund]" msgid "Log settings updated." msgstr "Logboek-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 msgid "Logs" msgstr "Logboeken" @@ -4474,7 +4567,7 @@ msgstr "Velddefinitie niet gevonden" msgid "Edit Profile Field" msgstr "Profielveld bewerken" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 msgid "Profile Fields" msgstr "Profielvelden" @@ -4502,384 +4595,57 @@ msgstr "Extra (handmatig toegevoegde) velden" msgid "Create Custom Field" msgstr "Extra velden aanmaken" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Naam" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App geïnstalleerd" -#: ../../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/Appman.php:46 +msgid "Malformed app." +msgstr "Misvormde app." -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Korte bijnaam" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Insluitcode" -#: ../../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 "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/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "App bewerken" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanaaltype en privacy" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "App maken" -#: ../../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/Appman.php:115 +msgid "Name of app" +msgstr "Naam van app" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Lees meer over kanaaltypes" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Locatie (URL) van app" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Kanaal aanmaken" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL van pictogram" -#: ../../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/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels (optioneel)" -#: ../../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/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versie-ID" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prijs van de app" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "G:i, l d F" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[vandaag]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ongeldige verzoek identificator (request identifier)" - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Annuleren" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Aanstoten" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Iemand aanstoten" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Iemand bijvoorbeeld aanstoten of poren" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Ontvanger" - -#: ../../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/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Maak dit bericht privé" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Niet in staat om je hub te vinden" - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Verzenden bericht geslaagd." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-protocolfout. Geen ID terugontvangen." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "Inloggen mislukt." - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Profiel" - -#: ../../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/Profperm.php:128 -msgid "Visible To" -msgstr "Zichtbaar voor" - -#: ../../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/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Configuratiebewerker" - -#: ../../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/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/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versie %s" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plugins en apps:" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plugins en apps" - -#: ../../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/Siteinfo.php:51 -msgid "Tag: " -msgstr "Tag: " - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Meest recente achtergrond-fetch:" - -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Gemiddelde systeembelasting is nu:" - -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" - -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bezoek hubzilla.org " - -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" - -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "$projectname-issues" - -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" - -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Hubbeheerders: " - -#: ../../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/Rmagic.php:44 -msgid "The error message was:" -msgstr "Het foutbericht was:" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" - -#: ../../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/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authenticeren" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Openbare hubs" - -#: ../../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 "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" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Toegangs-
 type" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Registratie-
 beleid" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Stats" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Beoordelingen" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Beoordeel" - -#: ../../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/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Bloknaam" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Blokken" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Bloktitel" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Website:" - -#: ../../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/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Beoordeling (deze informatie is openbaar)" - -#: ../../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/Ratings.php:73 -msgid "No ratings" -msgstr "Geen beoordelingen" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Beoordeling: " - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Website: " - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Omschrijving: " - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Apps" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Titel (optioneel)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Blok bewerken" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Geen kanaal." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Veel voorkomende connecties" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Locatie (URL) om de app aan te schaffen" #: ../../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 "Registreren op deze $Projectname-hub kan alleen op uitnodiging." -#: ../../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 "Registreren" -#: ../../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/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Volgende stap: aanmaken van jouw eerste kanaal" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Inloggen." -#: ../../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 "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:56 msgid "Remove This Account" msgstr "Verwijder dit account" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 msgid "WARNING: " msgstr "WAARSCHUWING: " -#: ../../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 "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." -#: ../../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 "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" -#: ../../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 "Vul je wachtwoord in ter verificatie:" -#: ../../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 "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" -#: ../../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 "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 +#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings.php:705 msgid "Remove Account" msgstr "Account verwijderen" -#: ../../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 "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeme.php:58 msgid "Remove This Channel" msgstr "Verwijder dit kanaal" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../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/Removeme.php:63 +#: ../../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/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 "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 msgid "Remove Channel" msgstr "Kanaal verwijderen" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Kanaal exporteren" - -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Rmagic.php:44 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." +"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/Uexport.php:58 -msgid "Export Content" -msgstr "Inhoud exporteren" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Het foutbericht was:" -#: ../../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/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporteer jouw berichten uit een bepaald jaar." +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" -#: ../../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/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" -#: ../../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/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/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/Rmagic.php:90 +msgid "Authenticate" +msgstr "Authenticeren" #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -5147,652 +4879,609 @@ msgstr "Zoekresultaten voor %s" msgid "No service class restrictions found." msgstr "Geen abonnementsbeperkingen gevonden." -#: ../../Zotlabs/Module/Settings.php:64 +#: ../../Zotlabs/Module/Settings.php:69 msgid "Name is required" msgstr "Naam is vereist" -#: ../../Zotlabs/Module/Settings.php:68 +#: ../../Zotlabs/Module/Settings.php:73 msgid "Key and Secret are required" msgstr "Key en secret zijn vereist" -#: ../../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/Settings.php:144 -msgid "Name and Password are required." -msgstr "Naam en wachtwoord zijn vereist" - -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "Token opgeslagen." - -#: ../../Zotlabs/Module/Settings.php:274 +#: ../../Zotlabs/Module/Settings.php:225 msgid "Not valid email." msgstr "Geen geldig e-mailadres." -#: ../../Zotlabs/Module/Settings.php:277 +#: ../../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:286 +#: ../../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:303 +#: ../../Zotlabs/Module/Settings.php:254 msgid "Password verification failed." msgstr "Wachtwoordverificatie mislukt" -#: ../../Zotlabs/Module/Settings.php:310 +#: ../../Zotlabs/Module/Settings.php:261 msgid "Passwords do not match. Password unchanged." msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." -#: ../../Zotlabs/Module/Settings.php:314 +#: ../../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:328 +#: ../../Zotlabs/Module/Settings.php:279 msgid "Password changed." msgstr "Wachtwoord veranderd." -#: ../../Zotlabs/Module/Settings.php:330 +#: ../../Zotlabs/Module/Settings.php:281 msgid "Password update failed. Please try again." msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." -#: ../../Zotlabs/Module/Settings.php:579 +#: ../../Zotlabs/Module/Settings.php:525 msgid "Settings updated." msgstr "Instellingen bijgewerkt." -#: ../../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 "Applicatie toevoegen" -#: ../../Zotlabs/Module/Settings.php:646 +#: ../../Zotlabs/Module/Settings.php:592 msgid "Name of application" msgstr "Naam van applicatie" -#: ../../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 "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 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/doorverwijzing" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../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:650 ../../Zotlabs/Module/Settings.php:676 +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 msgid "Icon url" msgstr "Pictogram-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 "Optioneel" -#: ../../Zotlabs/Module/Settings.php:661 +#: ../../Zotlabs/Module/Settings.php:607 msgid "Application not found." msgstr "Applicatie niet gevonden." -#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:650 msgid "Connected Apps" msgstr "Verbonden applicaties" -#: ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Settings.php:654 msgid "Client key starts with" msgstr "Client key begint met" -#: ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Settings.php:655 msgid "No name" msgstr "Geen naam" -#: ../../Zotlabs/Module/Settings.php:710 +#: ../../Zotlabs/Module/Settings.php:656 msgid "Remove authorization" msgstr "Autorisatie verwijderen" -#: ../../Zotlabs/Module/Settings.php:723 +#: ../../Zotlabs/Module/Settings.php:669 msgid "No feature settings configured" msgstr "Geen plugin-instellingen aanwezig" -#: ../../Zotlabs/Module/Settings.php:730 +#: ../../Zotlabs/Module/Settings.php:676 msgid "Feature/Addon Settings" msgstr "Plugin-instellingen" -#: ../../Zotlabs/Module/Settings.php:753 +#: ../../Zotlabs/Module/Settings.php:699 msgid "Account Settings" msgstr "Account-instellingen" -#: ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Settings.php:700 msgid "Current Password" msgstr "Huidig wachtwoord" -#: ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Settings.php:701 msgid "Enter New Password" msgstr "Nieuw wachtwoord invoeren" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../Zotlabs/Module/Settings.php:702 msgid "Confirm New Password" msgstr "Nieuw wachtwoord bevestigen" -#: ../../Zotlabs/Module/Settings.php:756 +#: ../../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:758 -#: ../../Zotlabs/Module/Settings.php:1136 +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 msgid "Email Address:" msgstr "E-mailadres:" -#: ../../Zotlabs/Module/Settings.php:760 +#: ../../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: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/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/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Gasttoegang" - -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "Inlognaam" - -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "Wachtwoord:" - -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "Geldig t/m (yyyy-mm-dd)" - -#: ../../Zotlabs/Module/Settings.php:830 +#: ../../Zotlabs/Module/Settings.php:729 msgid "Additional Features" msgstr "Extra functies" -#: ../../Zotlabs/Module/Settings.php:854 +#: ../../Zotlabs/Module/Settings.php:753 msgid "Connector Settings" msgstr "Instellingen externe koppelingen" -#: ../../Zotlabs/Module/Settings.php:893 +#: ../../Zotlabs/Module/Settings.php:792 msgid "No special theme for mobile devices" msgstr "Geen speciaal thema voor mobiele apparaten" -#: ../../Zotlabs/Module/Settings.php:896 +#: ../../Zotlabs/Module/Settings.php:795 #, php-format msgid "%s - (Experimental)" msgstr "%s - (experimenteel)" -#: ../../Zotlabs/Module/Settings.php:938 +#: ../../Zotlabs/Module/Settings.php:837 msgid "Display Settings" msgstr "Weergave-instellingen" -#: ../../Zotlabs/Module/Settings.php:939 +#: ../../Zotlabs/Module/Settings.php:838 msgid "Theme Settings" msgstr "Thema-instellingen" -#: ../../Zotlabs/Module/Settings.php:940 +#: ../../Zotlabs/Module/Settings.php:839 msgid "Custom Theme Settings" msgstr "Handmatige thema-instellingen" -#: ../../Zotlabs/Module/Settings.php:941 +#: ../../Zotlabs/Module/Settings.php:840 msgid "Content Settings" msgstr "Inhoudsinstellingen" -#: ../../Zotlabs/Module/Settings.php:947 +#: ../../Zotlabs/Module/Settings.php:846 msgid "Display Theme:" msgstr "Gebruik thema:" -#: ../../Zotlabs/Module/Settings.php:948 +#: ../../Zotlabs/Module/Settings.php:847 msgid "Mobile Theme:" msgstr "Mobiel thema:" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/Settings.php:848 msgid "Preload images before rendering the page" msgstr "Afbeeldingen laden voordat de pagina wordt weergegeven" -#: ../../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 "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven" -#: ../../Zotlabs/Module/Settings.php:950 +#: ../../Zotlabs/Module/Settings.php:849 msgid "Enable user zoom on mobile devices" msgstr "Inzoomen op smartphones en tablets toestaan" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Update browser every xx seconds" msgstr "Ververs de webbrowser om de zoveel seconde" -#: ../../Zotlabs/Module/Settings.php:951 +#: ../../Zotlabs/Module/Settings.php:850 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimaal 10 seconde, geen maximum" -#: ../../Zotlabs/Module/Settings.php:952 +#: ../../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:952 +#: ../../Zotlabs/Module/Settings.php:851 msgid "Maximum of 100 items" msgstr "Maximaal 100 conversaties" -#: ../../Zotlabs/Module/Settings.php:953 +#: ../../Zotlabs/Module/Settings.php:852 msgid "Show emoticons (smilies) as images" msgstr "Toon emoticons (smilies) als afbeeldingen" -#: ../../Zotlabs/Module/Settings.php:954 +#: ../../Zotlabs/Module/Settings.php:853 msgid "Link post titles to source" msgstr "Berichtkoppen naar originele locatie linken" -#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:854 msgid "System Page Layout Editor - (advanced)" msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" -#: ../../Zotlabs/Module/Settings.php:958 +#: ../../Zotlabs/Module/Settings.php:857 msgid "Use blog/list mode on channel page" msgstr "Gebruik blog/lijst-modus op kanaalpagina" -#: ../../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 "(reacties worden afzonderlijk weergeven)" -#: ../../Zotlabs/Module/Settings.php:959 +#: ../../Zotlabs/Module/Settings.php:858 msgid "Use blog/list mode on grid page" msgstr "Gebruik blog/lijst-modus op gridpagina" -#: ../../Zotlabs/Module/Settings.php:960 +#: ../../Zotlabs/Module/Settings.php:859 msgid "Channel page max height of content (in pixels)" msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" -#: ../../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 "klik om inhoud uit te klappen die deze hoogte overschrijdt" -#: ../../Zotlabs/Module/Settings.php:961 +#: ../../Zotlabs/Module/Settings.php:860 msgid "Grid page max height of content (in pixels)" msgstr "Maximale hoogte berichtinhoud op gridpagina (in pixels)" -#: ../../Zotlabs/Module/Settings.php:990 +#: ../../Zotlabs/Module/Settings.php:894 msgid "Nobody except yourself" msgstr "Niemand, behalve jezelf" -#: ../../Zotlabs/Module/Settings.php:991 +#: ../../Zotlabs/Module/Settings.php:895 msgid "Only those you specifically allow" msgstr "Alleen connecties met uitdrukkelijke toestemming" -#: ../../Zotlabs/Module/Settings.php:992 +#: ../../Zotlabs/Module/Settings.php:896 msgid "Approved connections" msgstr "Geaccepteerde connecties" -#: ../../Zotlabs/Module/Settings.php:993 +#: ../../Zotlabs/Module/Settings.php:897 msgid "Any connections" msgstr "Alle connecties" -#: ../../Zotlabs/Module/Settings.php:994 +#: ../../Zotlabs/Module/Settings.php:898 msgid "Anybody on this website" msgstr "Iedereen op deze hub" -#: ../../Zotlabs/Module/Settings.php:995 +#: ../../Zotlabs/Module/Settings.php:899 msgid "Anybody in this network" msgstr "Iedereen in dit netwerk" -#: ../../Zotlabs/Module/Settings.php:996 +#: ../../Zotlabs/Module/Settings.php:900 msgid "Anybody authenticated" msgstr "Geauthenticeerd" -#: ../../Zotlabs/Module/Settings.php:997 +#: ../../Zotlabs/Module/Settings.php:901 msgid "Anybody on the internet" msgstr "Iedereen op het internet" -#: ../../Zotlabs/Module/Settings.php:1071 +#: ../../Zotlabs/Module/Settings.php:976 msgid "Publish your default profile in the network directory" msgstr "Publiceer je standaardprofiel in de kanalengids" -#: ../../Zotlabs/Module/Settings.php:1076 +#: ../../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/Settings.php:1085 +#: ../../Zotlabs/Module/Settings.php:990 msgid "Your channel address is" msgstr "Jouw kanaaladres is" -#: ../../Zotlabs/Module/Settings.php:1127 +#: ../../Zotlabs/Module/Settings.php:1032 msgid "Channel Settings" msgstr "Kanaal-instellingen" -#: ../../Zotlabs/Module/Settings.php:1134 +#: ../../Zotlabs/Module/Settings.php:1039 msgid "Basic Settings" msgstr "Basis-instellingen" -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 msgid "Full Name:" msgstr "Volledige naam:" -#: ../../Zotlabs/Module/Settings.php:1137 +#: ../../Zotlabs/Module/Settings.php:1042 msgid "Your Timezone:" msgstr "Jouw tijdzone:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../Zotlabs/Module/Settings.php:1043 msgid "Default Post Location:" msgstr "Standaardlocatie bericht:" -#: ../../Zotlabs/Module/Settings.php:1138 +#: ../../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/Settings.php:1139 +#: ../../Zotlabs/Module/Settings.php:1044 msgid "Use Browser Location:" msgstr "Locatie van webbrowser gebruiken:" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Settings.php:1046 msgid "Adult Content" msgstr "Inhoud voor volwassenen" -#: ../../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 "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/Settings.php:1143 +#: ../../Zotlabs/Module/Settings.php:1048 msgid "Security and Privacy Settings" msgstr "Veiligheids- en privacy-instellingen" -#: ../../Zotlabs/Module/Settings.php:1146 +#: ../../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/Settings.php:1148 +#: ../../Zotlabs/Module/Settings.php:1053 msgid "Hide my online presence" msgstr "Verberg mijn aanwezigheid" -#: ../../Zotlabs/Module/Settings.php:1148 +#: ../../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/Settings.php:1150 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "Simple Privacy Settings:" msgstr "Eenvoudige privacy-instellingen:" -#: ../../Zotlabs/Module/Settings.php:1151 +#: ../../Zotlabs/Module/Settings.php:1056 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/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 "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" -#: ../../Zotlabs/Module/Settings.php:1153 +#: ../../Zotlabs/Module/Settings.php:1058 msgid "Private - default private, never open or public" msgstr "Privé (standaard privé en nooit openbaar)" -#: ../../Zotlabs/Module/Settings.php:1154 +#: ../../Zotlabs/Module/Settings.php:1059 msgid "Blocked - default blocked to/from everybody" msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Settings.php:1061 msgid "Allow others to tag your posts" msgstr "Anderen toestaan om je berichten te taggen" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../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/Settings.php:1158 +#: ../../Zotlabs/Module/Settings.php:1063 msgid "Advanced Privacy Settings" msgstr "Geavanceerde privacy-instellingen" -#: ../../Zotlabs/Module/Settings.php:1160 +#: ../../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/Settings.php:1160 +#: ../../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/Settings.php:1160 +#: ../../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/Settings.php:1160 +#: ../../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/Settings.php:1160 +#: ../../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/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "Maximum Friend Requests/Day:" msgstr "Maximum aantal connectieverzoeken per dag:" -#: ../../Zotlabs/Module/Settings.php:1161 +#: ../../Zotlabs/Module/Settings.php:1066 msgid "May reduce spam activity" msgstr "Kan eventuele spam verminderen" -#: ../../Zotlabs/Module/Settings.php:1162 +#: ../../Zotlabs/Module/Settings.php:1067 msgid "Default Post and Publish Permissions" msgstr "Standaard permissies voor nieuwe berichten en publicaties" -#: ../../Zotlabs/Module/Settings.php:1164 +#: ../../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/Settings.php:1167 +#: ../../Zotlabs/Module/Settings.php:1072 msgid "Channel permissions category:" msgstr "Kanaaltype en -permissies:" -#: ../../Zotlabs/Module/Settings.php:1173 +#: ../../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/Settings.php:1173 +#: ../../Zotlabs/Module/Settings.php:1078 msgid "Useful to reduce spamming" msgstr "Kan eventuele spam verminderen" -#: ../../Zotlabs/Module/Settings.php:1176 +#: ../../Zotlabs/Module/Settings.php:1081 msgid "Notification Settings" msgstr "Notificatie-instellingen" -#: ../../Zotlabs/Module/Settings.php:1177 +#: ../../Zotlabs/Module/Settings.php:1082 msgid "By default post a status message when:" msgstr "Plaats automatisch een bericht wanneer:" -#: ../../Zotlabs/Module/Settings.php:1178 +#: ../../Zotlabs/Module/Settings.php:1083 msgid "accepting a friend request" msgstr "Een connectieverzoek wordt geaccepteerd" -#: ../../Zotlabs/Module/Settings.php:1179 +#: ../../Zotlabs/Module/Settings.php:1084 msgid "joining a forum/community" msgstr "Je lid wordt van een forum/groep" -#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Settings.php:1085 msgid "making an interesting profile change" msgstr "Er sprake is van een interessante profielwijziging" -#: ../../Zotlabs/Module/Settings.php:1181 +#: ../../Zotlabs/Module/Settings.php:1086 msgid "Send a notification email when:" msgstr "Verzend een notificatie per e-mail wanneer:" -#: ../../Zotlabs/Module/Settings.php:1182 +#: ../../Zotlabs/Module/Settings.php:1087 msgid "You receive a connection request" msgstr "Je een connectieverzoek ontvangt" -#: ../../Zotlabs/Module/Settings.php:1183 +#: ../../Zotlabs/Module/Settings.php:1088 msgid "Your connections are confirmed" msgstr "Jouw connecties zijn bevestigd" -#: ../../Zotlabs/Module/Settings.php:1184 +#: ../../Zotlabs/Module/Settings.php:1089 msgid "Someone writes on your profile wall" msgstr "Iemand iets op jouw kanaal heeft geschreven" -#: ../../Zotlabs/Module/Settings.php:1185 +#: ../../Zotlabs/Module/Settings.php:1090 msgid "Someone writes a followup comment" msgstr "Iemand een reactie schrijft" -#: ../../Zotlabs/Module/Settings.php:1186 +#: ../../Zotlabs/Module/Settings.php:1091 msgid "You receive a private message" msgstr "Je een privé-bericht ontvangt" -#: ../../Zotlabs/Module/Settings.php:1187 +#: ../../Zotlabs/Module/Settings.php:1092 msgid "You receive a friend suggestion" msgstr "Je een kanaalvoorstel ontvangt" -#: ../../Zotlabs/Module/Settings.php:1188 +#: ../../Zotlabs/Module/Settings.php:1093 msgid "You are tagged in a post" msgstr "Je expliciet in een bericht bent genoemd" -#: ../../Zotlabs/Module/Settings.php:1189 +#: ../../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/Settings.php:1192 +#: ../../Zotlabs/Module/Settings.php:1097 msgid "Show visual notifications including:" msgstr "Toon de volgende zichtbare notificaties:" -#: ../../Zotlabs/Module/Settings.php:1194 +#: ../../Zotlabs/Module/Settings.php:1099 msgid "Unseen grid activity" msgstr "Niet bekeken grid-activiteit" -#: ../../Zotlabs/Module/Settings.php:1195 +#: ../../Zotlabs/Module/Settings.php:1100 msgid "Unseen channel activity" msgstr "Niet bekeken kanaal-activiteit" -#: ../../Zotlabs/Module/Settings.php:1196 +#: ../../Zotlabs/Module/Settings.php:1101 msgid "Unseen private messages" msgstr "Niet bekeken privéberichten" -#: ../../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 "Aanbevolen" -#: ../../Zotlabs/Module/Settings.php:1197 +#: ../../Zotlabs/Module/Settings.php:1102 msgid "Upcoming events" msgstr "Aankomende gebeurtenissen" -#: ../../Zotlabs/Module/Settings.php:1198 +#: ../../Zotlabs/Module/Settings.php:1103 msgid "Events today" msgstr "Gebeurtenissen van vandaag" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Upcoming birthdays" msgstr "Aankomende verjaardagen" -#: ../../Zotlabs/Module/Settings.php:1199 +#: ../../Zotlabs/Module/Settings.php:1104 msgid "Not available in all themes" msgstr "Niet in alle thema's beschikbaar" -#: ../../Zotlabs/Module/Settings.php:1200 +#: ../../Zotlabs/Module/Settings.php:1105 msgid "System (personal) notifications" msgstr "(Persoonlijke) systeemnotificaties" -#: ../../Zotlabs/Module/Settings.php:1201 +#: ../../Zotlabs/Module/Settings.php:1106 msgid "System info messages" msgstr "Systeemmededelingen" -#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Settings.php:1107 msgid "System critical alerts" msgstr "Kritische systeemwaarschuwingen" -#: ../../Zotlabs/Module/Settings.php:1203 +#: ../../Zotlabs/Module/Settings.php:1108 msgid "New connections" msgstr "Nieuwe connecties" -#: ../../Zotlabs/Module/Settings.php:1204 +#: ../../Zotlabs/Module/Settings.php:1109 msgid "System Registrations" msgstr "Nieuwe accountregistraties op deze hub" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Settings.php:1110 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:1207 +#: ../../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/Settings.php:1207 +#: ../../Zotlabs/Module/Settings.php:1112 msgid "Must be greater than 0" msgstr "Moet hoger dan 0 zijn" -#: ../../Zotlabs/Module/Settings.php:1209 +#: ../../Zotlabs/Module/Settings.php:1114 msgid "Advanced Account/Page Type Settings" msgstr "Instellingen geavanceerd account/paginatype" -#: ../../Zotlabs/Module/Settings.php:1210 +#: ../../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/Settings.php:1213 +#: ../../Zotlabs/Module/Settings.php:1118 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:1214 +#: ../../Zotlabs/Module/Settings.php:1119 msgid "Miscellaneous Settings" msgstr "Diverse instellingen" -#: ../../Zotlabs/Module/Settings.php:1215 +#: ../../Zotlabs/Module/Settings.php:1120 msgid "Default photo upload folder" msgstr "Standaard fotoalbum voor uploads" -#: ../../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 - dit jaar, %m - deze maand" -#: ../../Zotlabs/Module/Settings.php:1216 +#: ../../Zotlabs/Module/Settings.php:1121 msgid "Default file upload folder" msgstr "Standaard bestandsmap voor uploads" -#: ../../Zotlabs/Module/Settings.php:1218 +#: ../../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/Settings.php:1220 +#: ../../Zotlabs/Module/Settings.php:1125 msgid "Remove this channel." msgstr "Verwijder dit kanaal." -#: ../../Zotlabs/Module/Settings.php:1221 +#: ../../Zotlabs/Module/Settings.php:1126 msgid "Firefox Share $Projectname provider" msgstr "$Projectname-service voor Firefox Share" -#: ../../Zotlabs/Module/Settings.php:1222 +#: ../../Zotlabs/Module/Settings.php:1127 msgid "Start calendar week on monday" msgstr "Begin in de agenda de week op maandag" @@ -5825,7 +5514,7 @@ msgid "" msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." #: ../../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 "Please see the file \"install/INSTALL.txt\"." @@ -6025,200 +5714,199 @@ msgid "mb_string PHP module" msgstr "mb_string PHP module" #: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "mcrypt PHP module" + +#: ../../Zotlabs/Module/Setup.php:497 msgid "xml PHP module" msgstr "xml PHP module" -#: ../../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 module" -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../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/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 "Error: proc_open is required but is either not installed or has been disabled in php.ini" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../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/Setup.php:518 +#: ../../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/Setup.php:522 +#: ../../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/Setup.php:526 +#: ../../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/Setup.php:530 +#: ../../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/Setup.php:534 +#: ../../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/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/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 "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/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 "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/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 "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/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 "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:563 msgid ".htconfig.php is writable" msgstr ".htconfig.php is writable" -#: ../../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 uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." -#: ../../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 "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/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 "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." -#: ../../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 "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/Setup.php:578 +#: ../../Zotlabs/Module/Setup.php:583 #, php-format msgid "%s is writable" msgstr "%s is writable" -#: ../../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 "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" +"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/Setup.php:598 +#: ../../Zotlabs/Module/Setup.php:603 msgid "store is writable" msgstr "store is writable" -#: ../../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 certificate cannot be validated. Fix certificate or disable https access to this hub." -#: ../../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 "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/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 "This restriction is incorporated because public posts from you may for example contain references to images on your own 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 "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/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 "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../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/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/Setup.php:641 +#: ../../Zotlabs/Module/Setup.php:643 msgid "SSL certificate validation" msgstr "SSL certificate validation" -#: ../../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 rewrite in .htaccess is not working. Check your server configuration.Test: " -#: ../../Zotlabs/Module/Setup.php:650 +#: ../../Zotlabs/Module/Setup.php:652 msgid "Url rewrite is working" msgstr "Url rewrite is working" -#: ../../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 "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/Setup.php:683 +#: ../../Zotlabs/Module/Setup.php:685 msgid "Errors encountered creating database tables." msgstr "Errors encountered creating database tables." -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Setup.php:719 msgid "

What next

" msgstr "

What next

" -#: ../../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 "Verwijder alle bestanden" msgid "Remove this file" msgstr "Verwijder dit bestand" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Ding bijgewerkt" - -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Opslaan van ding mislukt" - -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Ding toegevoegd" - -#: ../../Zotlabs/Module/Thing.php:196 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +msgid "Version %s" +msgstr "Versie %s" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Ding weergeven" +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plugins en apps:" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "Item niet gevonden" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plugins en apps" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Ding bewerken" +#: ../../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/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Kies een profiel" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Tag: " -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Plaats een bericht" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Meest recente achtergrond-fetch:" -#: ../../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/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Gemiddelde systeembelasting is nu:" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Naam van ding" +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bezoek hubzilla.org " -#: ../../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/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "$projectname-issues" + +#: ../../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/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Hubbeheerders: " #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." @@ -6313,8 +6003,8 @@ msgstr "Bron aangemaakt." 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 "Kanaalbronnen" @@ -6390,12 +6080,12 @@ msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probe msgid "Ignore/Hide" msgstr "Negeren/Verbergen" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 msgid "post" msgstr "bericht" -#: ../../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 "reactie" @@ -6416,110 +6106,131 @@ msgstr "Verwijder item-tag" msgid "Select a tag to remove: " msgstr "Kies een tag om te verwijderen" -#: ../../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/Thing.php:114 +msgid "Thing updated" +msgstr "Ding bijgewerkt" -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Acties" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Paginalink" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Ding toegevoegd" -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Paginatitel" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "Niet gevonden" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Ding weergeven" -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:108 ../../include/conversation.php:1710 -#: ../../include/conversation.php:1713 ../../include/features.php:55 -msgid "Wiki" -msgstr "Wiki" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Item niet gevonden" -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "Zandbak" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Ding bewerken" -#: ../../Zotlabs/Module/Wiki.php:95 +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Kies een profiel" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Plaats een bericht" + +#: ../../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/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" + +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" + +#: ../../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/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" + +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanaal exporteren" + +#: ../../Zotlabs/Module/Uexport.php:57 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*.\"" +"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/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Revisies vergelijken" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Inhoud exporteren" -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Ongedaan maken" +#: ../../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/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Vul de naam in van jouw nieuwe wiki:" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporteer jouw berichten uit een bepaald jaar." -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Vul de naam in van de nieuwe pagina:" +#: ../../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/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Vul de nieuwe naam in:" +#: ../../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/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Afbeelding uit een fotoalbum invoegen" +#: ../../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/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "Afbeelding uit jouw albums invoegen" +#: ../../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/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 "Kies afbeeldingen om in te voegen" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Kies een album" - -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Kies een ander album..." - -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "Fout met ophalen albumlijst" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "Fout met ophalen fotolink" - -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Fout met ophalen album" - -#: ../../Zotlabs/Module/Viewconnections.php:65 +#: ../../Zotlabs/Module/Viewconnections.php:62 msgid "No connections." msgstr "Geen connecties." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "Bezoek het profiel van %s [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:104 msgid "View Connections" msgstr "Connecties weergeven" @@ -6527,23 +6238,22 @@ msgstr "Connecties weergeven" msgid "Source of Item" msgstr "Bron van item" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Geef toestemming voor applicatiekoppeling" +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Webpagina's" -#: ../../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/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Acties" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen gaan." +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Paginalink" -#: ../../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/Webpages.php:197 +msgid "Page Title" +msgstr "Paginatitel" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6553,6 +6263,92 @@ msgstr "Xchan opzoeken" msgid "Lookup xchan beginning with (or webbie): " msgstr "Zoek een xchan (of webbie) die begint met:" +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "Hubbeheerder" + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Bug Report" +msgstr "Bugrapport" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "View Bookmarks" +msgstr "Bladwijzers bekijken" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "My Chatrooms" +msgstr "Mijn chatkanalen" + +#: ../../Zotlabs/Lib/Apps.php:209 +msgid "Firefox Share" +msgstr "Firefox Share" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Remote Diagnostics" +msgstr "Diagnose op afstand" + +#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Kanalen voorstellen" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1703 +msgid "Login" +msgstr "Inloggen" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "Grid" + +#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "Jouw kanaal" + +#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 +#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 +msgid "Events" +msgstr "Agenda" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 +msgid "Directory" +msgstr "Kanalengids" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 +msgid "Mail" +msgstr "Privéberichten" + +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chatten" + +#: ../../Zotlabs/Lib/Apps.php:229 +msgid "Probe" +msgstr "Onderzoeken" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Suggest" +msgstr "Voorstellen" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Random Channel" +msgstr "Willekeurig kanaal" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Invite" +msgstr "Uitnodigen " + +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 +msgid "Features" +msgstr "Extra functies" + +#: ../../Zotlabs/Lib/Apps.php:235 +msgid "Post" +msgstr "Bericht" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Purchase" +msgstr "Aanschaffen" + #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" msgstr "Naam chatkanaal ontbreekt" @@ -6573,19 +6369,19 @@ msgstr "Chatkanaal niet gevonden" msgid "Room is full" msgstr "Chatkanaal is vol" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 msgid "$Projectname Notification" msgstr "$Projectname-notificatie" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 msgid "Thank You," msgstr "Bedankt," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 #, php-format msgid "%s Administrator" msgstr "Beheerder %s" @@ -6778,97 +6574,11 @@ msgstr "maakte een nieuw bericht aan" msgid "commented on %s's post" msgstr "gaf een reactie op een bericht van %s" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Hubbeheerder" - -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Bugrapport" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Bladwijzers bekijken" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Mijn chatkanalen" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Firefox Share" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnose op afstand" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Kanalen voorstellen" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Inloggen" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Grid" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Jouw kanaal" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Agenda" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Kanalengids" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Privéberichten" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chatten" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Onderzoeken" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Voorstellen" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Willekeurig kanaal" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Uitnodigen " - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Extra functies" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Bericht" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Aanschaffen" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 msgid "Private Message" msgstr "Niet voor iedereen zichtbaar" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 msgid "Select" msgstr "Kies" @@ -6916,11 +6626,11 @@ msgstr "Ster toevoegen of verwijderen" msgid "starred" msgstr "met ster" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 msgid "Message signature validated" msgstr "Berichtkenmerk gevalideerd" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 msgid "Message signature incorrect" msgstr "Berichtkenmerk onjuist" @@ -6976,17 +6686,17 @@ msgstr "Kanaal-naar-kanaal" msgid "via Wall-To-Wall:" msgstr "via kanaal-naar-kanaal" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 #, php-format msgid "from %s" msgstr "van %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 #, php-format msgid "last edited: %s" msgstr "laatst bewerkt: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 #, php-format msgid "Expires: %s" msgstr "Verloopt: %s" @@ -7004,27 +6714,26 @@ msgid "Mark all seen" msgstr "Markeer alles als bekeken" #: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s alle" +msgid "[+] show all" +msgstr "[+] alle" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 msgid "Bold" msgstr "Vet" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 msgid "Italic" msgstr "Cursief" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 msgid "Underline" msgstr "Onderstrepen" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 msgid "Quote" msgstr "Citeren" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 msgid "Code" msgstr "Broncode" @@ -7040,74 +6749,11 @@ msgstr "Link invoegen" msgid "Video" msgstr "Video" -#: ../../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/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Alleen ik" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Openbaar" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Iedereen in het $Projectname-netwerk" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" -msgstr "Iedereen op %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Al mijn geaccepteerde connecties" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Alleen connecties die uitdrukkelijk door jou zijn toegestaan" - -#: ../../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/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/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/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/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/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/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" - #: ../../include/Import/import_diaspora.php:16 msgid "No username found in import file." msgstr "Geen gebruikersnaam in het importbestand gevonden." -#: ../../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 "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." @@ -7116,291 +6762,6 @@ msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislu msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "een nieuwe foto" - -#: ../../include/photos.php:303 -#, 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 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Uitloggen" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Beëindig deze sessie" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Jouw kanaal" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Jouw profielpagina" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" - -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Profiel bewerken" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Jouw foto's" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Jouw bestanden" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" - -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Bladwijzers" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Jouw webpagina's" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "Jouw wiki" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Inloggen" - -#: ../../include/nav.php:129 -#, 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" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Maak een account aan" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Apps" - -#: ../../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 " - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Kanalengids" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Jouw grid" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Markeer alle gridnotificaties als bekeken" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Jouw kanaal" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Notificaties" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notificaties" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" - -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Postvak IN" - -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Postvak UIT" - -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nieuw bericht" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Agenda" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" - -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Beheer" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" - -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Aan het laden..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@kanaal, #tag, inhoud, ?hulp" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Wachten aub..." - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "volledige grootte tonen" - -#: ../../include/network.php:1930 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Beheerder" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "Geen onderwerp" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "GNU social" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nieuwe pagina" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titel" - #: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 #: ../../include/widgets.php:46 ../../include/widgets.php:429 #: ../../include/contact_widgets.php:91 @@ -7439,159 +6800,952 @@ 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/channel.php:67 -msgid "Empty name" -msgstr "Ontbrekende naam" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Start:" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Naam te lang" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Einde:" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Geen account-identificator" +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Bijnaam is verplicht" +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Niet aangegeven" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Deze naam is gereserveerd. Kies een andere." +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Actie vereist" -#: ../../include/channel.php:212 +#: ../../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 "" -"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." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Niet in staat om aangemaakte identiteit te vinden" +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Standaardprofiel" +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Onbekend)" -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "Opgevraagd kanaal is niet beschikbaar." +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Nieuw profiel aanmaken" +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Geslacht:" +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Status:" - -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Homepagina:" - -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Nu online" - -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Vind dit kanaal leuk" - -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "F j Y" - -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "F j" - -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Geboortedatum:" - -#: ../../include/channel.php:1232 +#: ../../include/items.php:1144 #, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Seksuele voorkeur:" +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Tags:" +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Voor alle geaccepteerde connecties zichtbaar." -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Politieke overtuigingen:" +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religie:" +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "Privacygroep is leeg" -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Hobby's/interesses:" +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Privacygroep: %s" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Houdt van:" +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Connectie niet gevonden." -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "Houdt niet van:" +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "profielfoto" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Mijn andere kanalen" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[geen onderwerp]" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Muzikale interesses:" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Televisie:" +#: ../../include/text.php:428 +msgid "prev" +msgstr "vorige" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Films/dansen/cultuur/vermaak:" +#: ../../include/text.php:430 +msgid "first" +msgstr "eerste" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Liefde/romantiek:" +#: ../../include/text.php:459 +msgid "last" +msgstr "laatste" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Werk/beroep:" +#: ../../include/text.php:462 +msgid "next" +msgstr "volgende" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "School/opleiding:" +#: ../../include/text.php:472 +msgid "older" +msgstr "ouder" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Vind dit ding leuk" +#: ../../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/text.php:1039 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "gepingd" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "por" + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "gepord" + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "slaan" + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "sloeg" + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "gefingerd" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "afpoeieren" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "afgepoeierd" + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "gelukkig" + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "bedroefd" + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "mellow" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "moe" + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "parmantig" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "boos" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "verbijsterd" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "verward" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "geïnteresseerd" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "verbitterd" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "vrolijk" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "levendig" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "geërgerd" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "bezorgd" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "humeurig" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "verontrust" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "gefrustreerd " + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "gedeprimeerd" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "gemotiveerd" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "ontspannen" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "verrast" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "maandag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "dinsdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "woensdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "donderdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "vrijdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "zaterdag" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "zondag" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "januari" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "februari" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "maart" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "mei" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "augustus" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "december" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "Onbekende bijlage" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "onbekend" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "categorie verwijderen" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "uit map verwijderen" + +#: ../../include/text.php:1753 ../../include/text.php:1824 +msgid "default" +msgstr "standaard" + +#: ../../include/text.php:1761 +msgid "Page layout" +msgstr "Pagina-lay-out" + +#: ../../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/text.php:1803 +msgid "Page content type" +msgstr "Opmaaktype pagina" + +#: ../../include/text.php:1836 +msgid "Select an alternate language" +msgstr "Kies een andere taal" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "activiteit" + +#: ../../include/text.php:2262 +msgid "Design Tools" +msgstr "Ontwerp-hulpmiddelen" + +#: ../../include/text.php:2268 +msgid "Pages" +msgstr "Pagina's" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Systeem" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nieuwe app" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Voorgestelde kanalen" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Meer..." + +#: ../../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/widgets.php:181 +msgid "Add New Connection" +msgstr "Nieuwe connectie toevoegen" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Vul kanaaladres in" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Voorbeelden: bob@example.com, http://example.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Aantekeningen" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Verwijder zoekterm" + +#: ../../include/widgets.php:281 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" + +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "toevoegen" + +#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 +#: ../../include/features.php:98 +msgid "Saved Folders" +msgstr "Bewaarde mappen" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Alles" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archieven" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Vernieuwen" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Account" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Kanaal" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Extra functies" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Plugin-instellingen" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Weergave" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Locaties beheren" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Kanaal exporteren" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "Instellingen premiumkanaal" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Privéberichten" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Gecombineerd postvak" + +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Postvak IN" + +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Postvak UIT" + +#: ../../include/widgets.php:668 ../../include/nav.php:198 +msgid "New Message" +msgstr "Nieuw bericht" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "Conversaties" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "Ontvangen berichten" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "Verzonden berichten" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "Geen berichten" + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "Verwijder conversatie" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "Agenda-menu" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "Dag tonen" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "Week tonen" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "Maand tonen" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "Agenda-hulpmiddelen" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "Exporteren" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "Importeren" + +#: ../../include/widgets.php:842 ../../include/conversation.php:1662 +#: ../../include/conversation.php:1665 +msgid "Chatrooms" +msgstr "Chatkanalen" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "Overzicht" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "Chatleden" + +#: ../../include/widgets.php:876 +msgid "Bookmarked Chatrooms" +msgstr "Bladwijzers van chatkanalen" + +#: ../../include/widgets.php:899 +msgid "Suggested Chatrooms" +msgstr "Voorgestelde chatkanalen" + +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +msgid "photo/image" +msgstr "foto/afbeelding" + +#: ../../include/widgets.php:1099 +msgid "Click to show more" +msgstr "Klik voor meer" + +#: ../../include/widgets.php:1250 +msgid "Rating Tools" +msgstr "Beoordelingen" + +#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +msgid "Rate Me" +msgstr "Beoordeel mij" + +#: ../../include/widgets.php:1259 +msgid "View Ratings" +msgstr "Bekijk beoordelingen" + +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Forums" + +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Taken" + +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Documentatie" + +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Project- en hub-informatie" + +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "Voor leden" + +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "Voor beheerders" + +#: ../../include/widgets.php:1359 +msgid "For Developers" +msgstr "Voor ontwikkelaars" + +#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +msgid "Member registrations waiting for confirmation" +msgstr "Accounts die op goedkeuring wachten" + +#: ../../include/widgets.php:1389 +msgid "Inspect queue" +msgstr "Inspecteer berichtenwachtrij" + +#: ../../include/widgets.php:1391 +msgid "DB updates" +msgstr "Database-updates" + +#: ../../include/widgets.php:1416 ../../include/nav.php:216 +msgid "Admin" +msgstr "Beheer" + +#: ../../include/widgets.php:1417 +msgid "Plugin Features" +msgstr "Plugin-opties" + +#: ../../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:81 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." + +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." + +#: ../../include/follow.php:154 ../../include/follow.php:190 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." + +#: ../../include/follow.php:178 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." + +#: ../../include/follow.php:216 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Bladwijzers van %1$s" + +#: ../../include/api.php:1336 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" + +#: ../../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/bbcode.php:162 ../../include/bbcode.php:894 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installeer %s-element: " + +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." + +#: ../../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/bbcode.php:331 ../../include/bbcode.php:339 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" + +#: ../../include/bbcode.php:339 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:585 +msgid "Different viewers will see this text differently" +msgstr "Deze tekst wordt per persoon anders weergeven." + +#: ../../include/bbcode.php:832 +msgid "$1 wrote:" +msgstr "$1 schreef:" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opties kanalengids" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Veilig zoeken" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Alleen openbare forums" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Alleen deze hub" + +#: ../../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/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 +msgid "Logout" +msgstr "Uitloggen" + +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Beëindig deze sessie" + +#: ../../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/nav.php:86 +msgid "Your profile page" +msgstr "Jouw profielpagina" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" + +#: ../../include/nav.php:90 ../../include/channel.php:941 +msgid "Edit Profile" +msgstr "Profiel bewerken" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Jouw foto's" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Jouw bestanden" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" + +#: ../../include/nav.php:102 ../../include/conversation.php:1675 +msgid "Bookmarks" +msgstr "Bladwijzers" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Jouw webpagina's" + +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Inloggen" + +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" + +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" + +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "Maak een account aan" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Apps" + +#: ../../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/nav.php:167 +msgid "Channel Directory" +msgstr "Kanalengids" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "Jouw grid" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "Markeer alle gridnotificaties als bekeken" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "Jouw kanaal" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "Notificaties" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "Notificaties" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "Privéberichten" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "Agenda" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" + +#: ../../include/nav.php:247 ../../include/conversation.php:851 +msgid "Loading..." +msgstr "Aan het laden..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@kanaal, #tag, inhoud, ?hulp" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Wachten aub..." #: ../../include/connections.php:95 msgid "New window" @@ -7606,6 +7760,52 @@ msgstr "Open de geselecteerde locatie in een ander venster of tab" msgid "User '%s' deleted" msgstr "Account '%s' verwijderd" +#: ../../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/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Kanalen vinden" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Verbinden/volgen" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeeld: Robert Morgenstein, vissen" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Willekeurig profiel" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" + +#: ../../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/contact_widgets.php:127 +msgid "show more" +msgstr "meer connecties weergeven" + #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7616,269 +7816,258 @@ msgstr "%1$s is nu met %2$s verbonden" msgid "%1$s poked %2$s" msgstr "%1$s heeft %2$s aangestoten" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "aangestoten" - -#: ../../include/conversation.php:694 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Categorieën:" -#: ../../include/conversation.php:714 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Bewaard onder:" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "In context bekijken" -#: ../../include/conversation.php:850 +#: ../../include/conversation.php:847 msgid "remove" msgstr "verwijderen" -#: ../../include/conversation.php:855 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Verwijder de geselecteerde items" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Bron weergeven" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Conversatie volgen" -#: ../../include/conversation.php:953 +#: ../../include/conversation.php:950 msgid "Unfollow Thread" msgstr "Conversatie niet meer volgen" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:955 msgid "Activity/Posts" msgstr "Activiteit/berichten connectie" -#: ../../include/conversation.php:960 +#: ../../include/conversation.php:957 msgid "Edit Connection" msgstr "Connectie bewerken" -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:958 msgid "Message" msgstr "Bericht" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "%s vindt dit leuk." -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "%s vindt dit niet leuk." -#: ../../include/conversation.php:1082 +#: ../../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/conversation.php:1084 +#: ../../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/conversation.php:1090 +#: ../../include/conversation.php:1087 msgid "and" msgstr "en" -#: ../../include/conversation.php:1093 +#: ../../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/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "%s vinden dit leuk." -#: ../../include/conversation.php:1094 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "%s vinden dit niet leuk." -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "Locatie instellen" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Locatie van webbrowser wissen" -#: ../../include/conversation.php:1182 +#: ../../include/conversation.php:1177 msgid "Tag term:" msgstr "Tag:" -#: ../../include/conversation.php:1183 +#: ../../include/conversation.php:1178 msgid "Where are you right now?" msgstr "Waar bevind je je op dit moment?" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:1210 msgid "Page link name" msgstr "Linknaam pagina" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:1213 msgid "Post as" msgstr "Bericht plaatsen als" -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1223 msgid "Toggle voting" msgstr "Peiling in- of uitschakelen" -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../include/conversation.php:1269 +#: ../../include/conversation.php:1254 msgid "Set publish date" msgstr "Publicatiedatum instellen" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1258 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "Ontdekken" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Openbare streams importeren" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Nieuwe reacties bovenaan" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Nieuwe berichten bovenaan" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Nieuwe berichten bovenaan" -#: ../../include/conversation.php:1544 +#: ../../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/conversation.php:1553 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Activiteitenstroom - volgens datum" -#: ../../include/conversation.php:1559 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Met ster" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Favoriete berichten" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Berichten gemarkeerd als SPAM" -#: ../../include/conversation.php:1629 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Berichten in dit kanaal" -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1623 msgid "About" msgstr "Over" -#: ../../include/conversation.php:1641 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Profiel" -#: ../../include/conversation.php:1657 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 +msgid "Photo Albums" +msgstr "Fotoalbums" + +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Bestanden en opslagruimte" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Chatkanalen" - -#: ../../include/conversation.php:1693 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Opgeslagen bladwijzers" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Webpagina's beheren" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "aanwezig" msgstr[1] "aanwezig" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "niet aanwezig" msgstr[1] "niet aanwezig" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "nog niet beslist" msgstr[1] "nog niet beslist" -#: ../../include/conversation.php:1777 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "eens" msgstr[1] "eens" -#: ../../include/conversation.php:1780 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "oneens" msgstr[1] "oneens" -#: ../../include/conversation.php:1783 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "onthouding" msgstr[1] "onthoudingen" -#: ../../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/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." - #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Regelmatig" @@ -7943,6 +8132,12 @@ msgstr "Genderneutraal" msgid "Non-specific" msgstr "Niet gespecificeerd" +#: ../../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/selectors.php:49 msgid "Undecided" msgstr "Nog niet beslist" @@ -8119,366 +8314,361 @@ msgstr "Maakt mij niks uit" msgid "Ask me" msgstr "Vraag het me" -#: ../../include/bookmarks.php:35 +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" + +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "Alleen ik" + +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Openbaar" + +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "Iedereen in het $Projectname-netwerk" + +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "%1$s's bookmarks" -msgstr "Bladwijzers van %1$s" +msgid "Any account on %s" +msgstr "Iedereen op %s" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "gast:" +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "Al mijn geaccepteerde connecties" -#: ../../include/security.php:427 +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "Alleen connecties die uitdrukkelijk door jou zijn toegestaan" + +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)" + +#: ../../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/PermissionDescription.php:161 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. " +"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/text.php:404 -msgid "prev" -msgstr "vorige" +#: ../../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/text.php:406 -msgid "first" -msgstr "eerste" +#: ../../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/text.php:435 -msgid "last" -msgstr "laatste" +#: ../../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/text.php:438 -msgid "next" -msgstr "volgende" +#: ../../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/text.php:448 -msgid "older" -msgstr "ouder" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" -#: ../../include/text.php:450 -msgid "newer" -msgstr "nieuwer" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Jouw e-maildomein is op deze hub niet toegestaan" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Geen connecties" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Jouw e-mailadres is al op deze hub geregistreerd." -#: ../../include/text.php:868 +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." + +#: ../../include/account.php:249 #, php-format -msgid "View all %s connections" -msgstr "Toon alle %s connecties" +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" + +#: ../../include/account.php:315 +#, php-format +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" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Registratiegegevens voor %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Account goedgekeurd" + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" + +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Account is geverifieerd. Je kan inloggen." + +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." + +#: ../../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:497 +msgid "No source file." +msgstr "Geen bronbestand." + +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "Kan het te vervangen bestand niet vinden" + +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "Kan het bestand wat aangepast moet worden niet vinden" + +#: ../../include/attach.php:672 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" + +#: ../../include/attach.php:686 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." + +#: ../../include/attach.php:842 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." + +#: ../../include/attach.php:855 +msgid "Stored file could not be verified. Upload failed." +msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." + +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Pad niet beschikbaar." + +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Padnaam leeg" + +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "dubbele bestandsnaam of pad" + +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Pad niet gevonden" + +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "directory aanmaken (mkdir) mislukt." + +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "opslag in database mislukt." + +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "Ontbrekend bestandspad" + +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "aanstoten" +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "Ontbrekende naam" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "ping" +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "Naam te lang" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "gepingd" +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "Geen account-identificator" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "por" +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "Bijnaam is verplicht" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "gepord" +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Deze naam is gereserveerd. Kies een andere." -#: ../../include/text.php:1021 -msgid "slap" -msgstr "slaan" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "sloeg" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "gefingerd" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "afpoeieren" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: ../../include/text.php:1035 -msgid "happy" -msgstr "gelukkig" - -#: ../../include/text.php:1036 -msgid "sad" -msgstr "bedroefd" - -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "mellow" - -#: ../../include/text.php:1038 -msgid "tired" -msgstr "moe" - -#: ../../include/text.php:1039 -msgid "perky" -msgstr "parmantig" - -#: ../../include/text.php:1040 -msgid "angry" -msgstr "boos" - -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "verbijsterd" - -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "verward" - -#: ../../include/text.php:1043 -msgid "interested" -msgstr "geïnteresseerd" - -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "verbitterd" - -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "vrolijk" - -#: ../../include/text.php:1046 -msgid "alive" -msgstr "levendig" - -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "geërgerd" - -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "bezorgd" - -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "humeurig" - -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "verontrust" - -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "gefrustreerd " - -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "gedeprimeerd" - -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "gemotiveerd" - -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "ontspannen" - -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "verrast" - -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "maandag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "dinsdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "woensdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "donderdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "vrijdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "zaterdag" - -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "zondag" - -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "januari" - -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "februari" - -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "maart" - -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1241 -msgid "May" -msgstr "mei" - -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "augustus" - -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "december" - -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Onbekende bijlage" - -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "onbekend" - -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "categorie verwijderen" - -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "uit map verwijderen" - -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "standaard" - -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Pagina-lay-out" - -#: ../../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/text.php:1784 -msgid "Page content type" -msgstr "Opmaaktype pagina" - -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Kies een andere taal" - -#: ../../include/text.php:1934 -msgid "activity" -msgstr "activiteit" - -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Ontwerp-hulpmiddelen" - -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Pagina's" - -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Uitgelogd." - -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" - -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" - -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profielen en dingen, buiten berichten en reacties" - -#: ../../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/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor groepforums" - -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" - -#: ../../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/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kan mijn pagina's bewerken" - -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" - -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" - -#: ../../include/permissions.php:46 +#: ../../include/channel.php:211 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." +"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/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "Niet in staat om aangemaakte identiteit te vinden" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "Standaardprofiel" + +#: ../../include/channel.php:791 +msgid "Requested channel is not available." +msgstr "Opgevraagd kanaal is niet beschikbaar." + +#: ../../include/channel.php:938 +msgid "Create New Profile" +msgstr "Nieuw profiel aanmaken" + +#: ../../include/channel.php:958 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" + +#: ../../include/channel.php:1031 ../../include/channel.php:1142 +msgid "Gender:" +msgstr "Geslacht:" + +#: ../../include/channel.php:1032 ../../include/channel.php:1186 +msgid "Status:" +msgstr "Status:" + +#: ../../include/channel.php:1033 ../../include/channel.php:1197 +msgid "Homepage:" +msgstr "Homepagina:" + +#: ../../include/channel.php:1034 +msgid "Online Now" +msgstr "Nu online" + +#: ../../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/channel.php:1179 +msgid "Birthday:" +msgstr "Geboortedatum:" + +#: ../../include/channel.php:1192 +#, php-format +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" @@ -8525,257 +8715,378 @@ msgid "Provide managed web pages on your channel" msgstr "Sta beheerde webpagina's op jouw kanaal toe" #: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "Voeg een wiki aan jouw kanaal toe" - -#: ../../include/features.php:56 msgid "Hide Rating" msgstr "Beoordelingen verbergen" -#: ../../include/features.php:56 +#: ../../include/features.php:55 msgid "" "Hide the rating buttons on your channel and profile pages. Note: People can " "still rate you somewhere else." msgstr "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. " -#: ../../include/features.php:57 +#: ../../include/features.php:56 msgid "Private Notes" msgstr "Privé-aantekeningen" -#: ../../include/features.php:57 +#: ../../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:58 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "Kanaal kiezen in navigatiemenu" -#: ../../include/features.php:58 +#: ../../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:59 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "Fotolocatie" -#: ../../include/features.php:59 +#: ../../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:60 +#: ../../include/features.php:59 msgid "Access Controlled Chatrooms" msgstr "Chatkanalen met toegangscontrole " -#: ../../include/features.php:60 +#: ../../include/features.php:59 msgid "Provide chatrooms and chat services with access control." msgstr "Chatkanalen en chatdiensten met toegangscontrole aanbieden." -#: ../../include/features.php:61 +#: ../../include/features.php:60 msgid "Smart Birthdays" msgstr "Slimme verjaardagen" -#: ../../include/features.php:61 +#: ../../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:62 +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "Expertmodus" -#: ../../include/features.php:62 +#: ../../include/features.php:61 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Schakel de expertmodus in voor geavanceerde instellingen" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "Premium Channel" msgstr "Premiumkanaal" -#: ../../include/features.php:63 +#: ../../include/features.php:62 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" -#: ../../include/features.php:68 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "Functies voor het opstellen van berichten" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Large Photos" msgstr "Grote foto's" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt." -#: ../../include/features.php:72 +#: ../../include/features.php:71 msgid "Automatically import channel content from other channels or feeds" msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "Even More Encryption" msgstr "Extra encryptie" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Enable Voting Tools" msgstr "Peilingen inschakelen" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Provide a class of post which others can vote on" msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Berichten uitstellen" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Allow posts to be published at a later date" msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Dubbele berichten/reacties tegenhouden" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Netwerk- en streamfilter" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Zoek op datum" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Mogelijkheid om berichten op datum te filteren " -#: ../../include/features.php:84 ../../include/group.php:311 +#: ../../include/features.php:83 ../../include/group.php:311 msgid "Privacy Groups" msgstr "Privacygroepen" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Beheer en selectie van privacygroepen inschakelen" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Sla zoekopdrachten op voor hergebruik" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Persoonlijke netwerktab" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Nieuwe netwerktab" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Enable tab to display all new Network activity" msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Affinity Tool" msgstr "Verwantschapsfilter" -#: ../../include/features.php:88 +#: ../../include/features.php:87 msgid "Filter stream activity by depth of relationships" msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Connection Filtering" msgstr "Berichtenfilters" -#: ../../include/features.php:89 +#: ../../include/features.php:88 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" -#: ../../include/features.php:90 +#: ../../include/features.php:89 msgid "Show channel suggestions" msgstr "Voor jou mogelijk interessante kanalen voorstellen" -#: ../../include/features.php:95 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "Bericht- en reactiehulpmiddelen" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Community Tagging" msgstr "Taggen door anderen" -#: ../../include/features.php:96 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "Categorieën berichten" -#: ../../include/features.php:97 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "Voeg categorieën toe aan je berichten" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Emoji Reactions" msgstr "Emoji-reacties" -#: ../../include/features.php:98 +#: ../../include/features.php:97 msgid "Add emoji reaction ability to posts" msgstr "Emoji-reacties in berichten toestaan" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Bewaarde mappen" - -#: ../../include/features.php:99 +#: ../../include/features.php:98 msgid "Ability to file posts under folders" msgstr "Mogelijkheid om berichten in mappen op te slaan" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "Vind berichten niet leuk" -#: ../../include/features.php:100 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" -#: ../../include/features.php:101 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "Geef berichten een ster" -#: ../../include/features.php:101 +#: ../../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/features.php:102 +#: ../../include/features.php:101 msgid "Tag Cloud" msgstr "Tagwolk" -#: ../../include/features.php:102 +#: ../../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/oembed.php:324 +msgid "Embedded content" +msgstr "Ingesloten (embedded) inhoud" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "Insluiten (embedding) uitgeschakeld" + +#: ../../include/acl_selectors.php:271 +msgid "Who can see this?" +msgstr "Wie kan dit zien?" + +#: ../../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/acl_selectors.php:274 +msgid "Show" +msgstr "Tonen" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "Niet tonen" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "Andere netwerken en diensten" + +#: ../../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/auth.php:105 +msgid "Logged out." +msgstr "Uitgelogd." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" + +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Verjaardag of geboortedatum" + +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Leeftijd:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-DD of MM-DD" + +#: ../../include/datetime.php:272 ../../boot.php:2470 +msgid "never" +msgstr "nooit" + +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" + +#: ../../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/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "jaar" +msgstr[1] "jaren" + +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "maand" +msgstr[1] "maanden" + +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "week" +msgstr[1] "weken" + +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dagen" + +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "uur" +msgstr[1] "uren" + +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuut" +msgstr[1] "minuten" + +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "seconde" +msgstr[1] "seconden" + +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" + +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -8803,583 +9114,21 @@ msgstr "Privacygroep toevoegen" msgid "Channels not in any privacy group" msgstr "Kanalen die zich in geen enkele privacygroep bevinden" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "toevoegen" - -#: ../../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:814 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." - -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Niet aangegeven" - -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Actie vereist" - -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Voltooid" - -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "In behandeling" - -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Geannuleerd" - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Jouw e-maildomein is op deze hub niet toegestaan" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Jouw e-mailadres is al op deze hub geregistreerd." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registratiegegevens voor %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Account goedgekeurd" - -#: ../../include/account.php:454 -#, php-format -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/follow.php:171 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Item niet gevonden" - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "Geen bronbestand." - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "Kan het te vervangen bestand niet vinden" - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "Kan het bestand wat aangepast moet worden niet vinden" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" - -#: ../../include/attach.php:688 -#, 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 -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 -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 -msgid "Path not available." -msgstr "Pad niet beschikbaar." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Padnaam leeg" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of pad" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Pad niet gevonden" - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "directory aanmaken (mkdir) mislukt." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "opslag in database mislukt." - -#: ../../include/attach.php:1135 -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/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installeer %s-element: " - -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." - -#: ../../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/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Deze tekst wordt per persoon anders weergeven." - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 schreef:" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Onbekend)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Voor alle geaccepteerde connecties zichtbaar." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Privacygroep is leeg" - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Privacygroep: %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Connectie niet gevonden." - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "profielfoto" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Ingesloten (embedded) inhoud" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Insluiten (embedding) uitgeschakeld" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Systeem" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nieuwe app" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Voorgestelde kanalen" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Meer..." - -#: ../../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/widgets.php:181 -msgid "Add New Connection" -msgstr "Nieuwe connectie toevoegen" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Vul kanaaladres in" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Voorbeelden: bob@example.com, http://example.com/barbara" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Aantekeningen" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Verwijder zoekterm" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alles" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archieven" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Vernieuwen" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Account" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanaal" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Extra functies" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Plugin-instellingen" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Weergave" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Locaties beheren" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Kanaal exporteren" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Instellingen premiumkanaal" - -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Privéberichten" - -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Gecombineerd postvak" - -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversaties" - -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Ontvangen berichten" - -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Verzonden berichten" - -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Geen berichten" - -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Verwijder conversatie" - -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Agenda-hulpmiddelen" - -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exporteren" - -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importeren" - -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Overzicht" - -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Chatleden" - -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Wiki's" - -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Wikipagina's" - -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Bladwijzers van chatkanalen" - -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Voorgestelde chatkanalen" - -#: ../../include/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/afbeelding" - -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Klik voor meer" - -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Beoordelingen" - -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Beoordeel mij" - -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Bekijk beoordelingen" - -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Forums" - -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Taken" - -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Documentatie" - -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Project- en hub-informatie" - -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Voor leden" - -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Voor beheerders" - -#: ../../include/widgets.php:1453 -msgid "For Developers" -msgstr "Voor ontwikkelaars" - -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Accounts die op goedkeuring wachten" - -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Inspecteer berichtenwachtrij" - -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Database-updates" - -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Plugin-opties" - -#: ../../include/activities.php:41 -msgid " and " -msgstr " en " - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "openbaar profiel" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Bezoek het %2$s van %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/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Bijlagen:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificatie $Projectname-gebeurtenis:" - #: ../../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,223 +9358,278 @@ 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/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Verbinden/volgen" +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "een nieuwe foto" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeeld: Robert Morgenstein, vissen" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Willekeurig profiel" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" - -#: ../../include/contact_widgets.php:122 +#: ../../include/photos.php:299 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeenschappelijke connectie" -msgstr[1] "%d gemeenschappelijke connecties" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s plaatste %2$s op %3$s" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "meer connecties weergeven" +#: ../../include/photos.php:506 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opties kanalengids" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Veilig zoeken" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Alleen openbare forums" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Alleen deze hub" - -#: ../../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/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "Wie kan dit zien?" - -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Handmatige selectie" - -#: ../../include/acl_selectors.php:271 -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/acl_selectors.php:272 -msgid "Show" -msgstr "Tonen" - -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "Niet tonen" - -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Andere netwerken en diensten" - -#: ../../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/datetime.php:135 -msgid "Birthday" -msgstr "Verjaardag of geboortedatum" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Leeftijd:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-DD of MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: ../../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/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "jaar" -msgstr[1] "jaren" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "maand" -msgstr[1] "maanden" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "week" -msgstr[1] "weken" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dagen" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "uur" -msgstr[1] "uren" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuut" -msgstr[1] "minuten" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "seconde" -msgstr[1] "seconden" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" - -#: ../../include/datetime.php:563 -#, 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 +#: ../../include/zot.php:699 msgid "Invalid data packet" msgstr "Datapakket ongeldig" -#: ../../include/zot.php:713 +#: ../../include/zot.php:715 msgid "Unable to verify channel signature" msgstr "Kanaalkenmerk kon niet worden geverifieerd. " -#: ../../include/zot.php:2326 +#: ../../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:3703 +#: ../../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/permissions.php:28 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kan mijn foto's en andere bestanden bekijken" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" + +#: ../../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/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profielen en dingen, buiten berichten en reacties" + +#: ../../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/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Geavanceerd - nuttig voor groepforums" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kan met mij chatten (wanneer beschikbaar)" + +#: ../../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/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kan mijn pagina's bewerken" + +#: ../../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/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kan mijn kanaal beheren" + +#: ../../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/permissions.php:877 +msgid "Social Networking" +msgstr "Sociaal netwerk" + +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Sociaal - Vrijwel alles openbaar" + +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Sociaal - Beperkt zichtbaar" + +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Sociaal - Verborgen kanaal" + +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Groepsforum" + +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Forum - Vrijwel alles openbaar" + +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - Beperkt zichtbaar" + +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - Verborgen kanaal" + +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Feed herpubliceren" + +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Feed - Vrijwel alles openbaar" + +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Feed - Beperkt zichtbaar" + +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Speciaal doel" + +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Speciaal - Beroemdheid/alleen volgen" + +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Speciaal - Groepsopslag" + +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Expertmodus/handmatig aanpassen" + +#: ../../include/activities.php:41 +msgid " and " +msgstr " en " + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "openbaar profiel" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Bezoek het %2$s van %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/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)" msgstr "Focus (Hubzilla-standaard)" @@ -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,6 +382,229 @@ 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["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."; +App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; +App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; +App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; +App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; +App::$strings["%d message sent."] = array( + 0 => "%d bericht verzonden.", + 1 => "%d berichten verzonden.", +); +App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; +App::$strings["Send invitations"] = "Uitnodigingen verzenden"; +App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; +App::$strings["Your message:"] = "Jouw bericht:"; +App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org"; +App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; +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"; +App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "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."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; +App::$strings["Hub not found."] = "Hub niet gevonden."; +App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; +App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; +App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; +App::$strings["Messages"] = "Berichten"; +App::$strings["Message recalled."] = "Bericht ingetrokken."; +App::$strings["Conversation removed."] = "Conversatie verwijderd"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; +App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; +App::$strings["Send Private Message"] = "Privébericht versturen"; +App::$strings["To:"] = "Aan:"; +App::$strings["Subject:"] = "Onderwerp:"; +App::$strings["Attach file"] = "Bestand toevoegen"; +App::$strings["Send"] = "Verzenden"; +App::$strings["Set expiration date"] = "Verloopdatum instellen"; +App::$strings["Delete message"] = "Bericht verwijderen"; +App::$strings["Delivery report"] = "Afleveringsrapport"; +App::$strings["Recall message"] = "Bericht intrekken"; +App::$strings["Message has been recalled."] = "Bericht is ingetrokken."; +App::$strings["Delete Conversation"] = "Verwijder conversatie"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; +App::$strings["Send Reply"] = "Antwoord versturen"; +App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; +App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken"; +App::$strings["Channel Manager"] = "Kanaalbeheer"; +App::$strings["Current Channel"] = "Huidig kanaal"; +App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; +App::$strings["Default Channel"] = "Standaardkanaal"; +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["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)"; +App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; +App::$strings["Password Reset"] = "Wachtwoord vergeten?"; +App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; +App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; +App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; +App::$strings["click here to login"] = "klik dan hier om in te loggen"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; +App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; +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"; +App::$strings["Search Results For:"] = "Zoekresultaten voor:"; +App::$strings["Privacy group is empty"] = "Privacygroep is leeg"; +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["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."; +App::$strings["Menu Item Permissions"] = "Permissies menu-item"; +App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)"; +App::$strings["Link Name"] = "Linknaam"; +App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; +App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; +App::$strings["Open link in new window"] = "Open link in nieuw venster"; +App::$strings["Order in list"] = "Volgorde in lijst"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; +App::$strings["Submit and finish"] = "Opslaan en afsluiten"; +App::$strings["Submit and continue"] = "Opslaan en doorgaan"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Linkdoel"; +App::$strings["Edit menu"] = "Menu bewerken"; +App::$strings["Edit element"] = "Onderdeel bewerken"; +App::$strings["Drop element"] = "Onderdeel verwijderen"; +App::$strings["New element"] = "Nieuw element"; +App::$strings["Edit this menu container"] = "Deze menu-container bewerken"; +App::$strings["Add menu element"] = "Menu-element toevoegen"; +App::$strings["Delete this menu item"] = "Dit menu-item verwijderen"; +App::$strings["Edit this menu item"] = "Dit menu-item bewerken"; +App::$strings["Menu item not found."] = "Menu-item niet gevonden."; +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."; @@ -611,164 +673,122 @@ 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["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."; -App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; -App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; -App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; -App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; -App::$strings["%d message sent."] = array( - 0 => "%d bericht verzonden.", - 1 => "%d berichten verzonden.", -); -App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; -App::$strings["Send invitations"] = "Uitnodigingen verzenden"; -App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; -App::$strings["Your message:"] = "Jouw bericht:"; -App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org"; -App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; -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["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["Primary"] = "Primair"; -App::$strings["Drop"] = "Verwijderen"; -App::$strings["Sync Now"] = "Nu synchroniseren"; -App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "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."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; -App::$strings["Hub not found."] = "Hub niet gevonden."; -App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; -App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; -App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; -App::$strings["Messages"] = "Berichten"; -App::$strings["Message recalled."] = "Bericht ingetrokken."; -App::$strings["Conversation removed."] = "Conversatie verwijderd"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; -App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; -App::$strings["Send Private Message"] = "Privébericht versturen"; -App::$strings["To:"] = "Aan:"; -App::$strings["Subject:"] = "Onderwerp:"; -App::$strings["Attach file"] = "Bestand toevoegen"; -App::$strings["Send"] = "Verzenden"; -App::$strings["Set expiration date"] = "Verloopdatum instellen"; -App::$strings["Delete message"] = "Bericht verwijderen"; -App::$strings["Delivery report"] = "Afleveringsrapport"; -App::$strings["Recall message"] = "Bericht intrekken"; -App::$strings["Message has been recalled."] = "Bericht is ingetrokken."; -App::$strings["Delete Conversation"] = "Verwijder conversatie"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; -App::$strings["Send Reply"] = "Antwoord versturen"; -App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; -App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken"; -App::$strings["Channel Manager"] = "Kanaalbeheer"; -App::$strings["Current Channel"] = "Huidig kanaal"; -App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; -App::$strings["Default Channel"] = "Standaardkanaal"; -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)"; -App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; -App::$strings["Password Reset"] = "Wachtwoord vergeten?"; -App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; -App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; -App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; -App::$strings["click here to login"] = "klik dan hier om in te loggen"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; -App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; -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["__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["No such group"] = "Collectie niet gevonden"; -App::$strings["No such channel"] = "Niet zo'n kanaal"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Zoekresultaten voor:"; -App::$strings["Privacy group is empty"] = "Privacygroep is leeg"; -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."; -App::$strings["Menu Item Permissions"] = "Permissies menu-item"; -App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -App::$strings["Link Name"] = "Linknaam"; -App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; -App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; -App::$strings["Open link in new window"] = "Open link in nieuw venster"; -App::$strings["Order in list"] = "Volgorde in lijst"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; -App::$strings["Submit and finish"] = "Opslaan en afsluiten"; -App::$strings["Submit and continue"] = "Opslaan en doorgaan"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Linkdoel"; -App::$strings["Edit menu"] = "Menu bewerken"; -App::$strings["Edit element"] = "Onderdeel bewerken"; -App::$strings["Drop element"] = "Onderdeel verwijderen"; -App::$strings["New element"] = "Nieuw element"; -App::$strings["Edit this menu container"] = "Deze menu-container bewerken"; -App::$strings["Add menu element"] = "Menu-element toevoegen"; -App::$strings["Delete this menu item"] = "Dit menu-item verwijderen"; -App::$strings["Edit this menu item"] = "Dit menu-item bewerken"; -App::$strings["Menu item not found."] = "Menu-item niet gevonden."; -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["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"; @@ -2017,7 +2071,6 @@ 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"; @@ -2025,149 +2078,63 @@ 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["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["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["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["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); - } - +